/* General styles for the cockfighting page */
.page-cockfighting {
    background-color: #F4F7FB; /* Background color from custom配色 */
    color: #1F2D3D; /* Text Main color */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-cockfighting__container {
    max-width: 1280px; /* Between 1200-1390px */
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.page-cockfighting__hero-section {
    position: relative;
    overflow: hidden;
    background-color: #0a0909; /* Deep red/blackish background */
    padding-bottom: 40px; /* Space below content */
}

.page-cockfighting__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-cockfighting__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    opacity: 0.7; /* Slightly dim image to let text stand out */
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-cockfighting__hero-content {
    text-align: center;
    padding: 30px 20px;
    max-width: 900px;
    margin: 0 auto;
    color: #FFFFFF; /* White text on dark background */
}

.page-cockfighting__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #d6d604; /* Yellow-green/lemon yellow accent */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* No fixed font-size, rely on responsive scaling */
}

.page-cockfighting__tagline {
    font-size: 1.15em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-cockfighting__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on small screens */
}

.page-cockfighting__button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    min-width: 200px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-cockfighting__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    border: none;
}

.page-cockfighting__button--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-cockfighting__button--secondary {
    background-color: transparent;
    color: #d6d604; /* Yellow-green accent for secondary button text */
    border: 2px solid #d6d604; /* Yellow-green border */
}

.page-cockfighting__button--secondary:hover {
    background-color: #d6d604; /* Yellow-green background on hover */
    color: #0a0909; /* Dark text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(214, 214, 4, 0.4);
}

/* Section Titles */
.page-cockfighting__section-title {
    font-size: 2.2em;
    font-weight: bold;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #1F2D3D; /* Text Main color */
}

/* Introduction Section */
.page-cockfighting__introduction-section {
    padding: 40px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-cockfighting__text-block {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #1F2D3D;
}

.page-cockfighting__text-block a {
    color: #2F6BFF; /* Main color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__text-block a:hover {
    text-decoration: underline;
    color: #6FA3FF; /* Auxiliary color on hover */
}


/* Features Section */
.page-cockfighting__features-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

.page-cockfighting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-cockfighting__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-cockfighting__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-cockfighting__feature-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-cockfighting__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-cockfighting__feature-description {
    font-size: 1em;
    color: #1F2D3D; /* Text Main color */
}

/* Guide Section */
.page-cockfighting__guide-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

.page-cockfighting__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-cockfighting__guide-item {
    background-color: #F4F7FB; /* Background color for list items */
    border-left: 5px solid #2F6BFF; /* Main color accent */
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-cockfighting__guide-step-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2F6BFF; /* Main color */
}

.page-cockfighting__guide-step-description {
    font-size: 1em;
    color: #1F2D3D; /* Text Main color */
}

.page-cockfighting__guide-step-description a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__guide-step-description a:hover {
    text-decoration: underline;
    color: #6FA3FF;
}

.page-cockfighting__cta-center {
    text-align: center;
    margin-top: 40px;
}


/* FAQ Section */
.page-cockfighting__faq-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background color */
}

.page-cockfighting__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 8px;
    padding: 25px 30px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-cockfighting__faq-question {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-cockfighting__faq-answer {
    font-size: 1em;
    color: #1F2D3D; /* Text Main color */
}

.page-cockfighting__faq-answer a {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-cockfighting__faq-answer a:hover {
    text-decoration: underline;
    color: #6FA3FF;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-cockfighting__container {
        padding: 15px;
    }

    .page-cockfighting__section-title {
        font-size: 2em;
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .page-cockfighting__main-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-cockfighting__main-title {
        font-size: 2em;
    }

    .page-cockfighting__tagline {
        font-size: 1em;
    }

    .page-cockfighting__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-cockfighting__button {
        width: 80%;
        max-width: 300px;
    }

    .page-cockfighting__section-title {
        font-size: 1.8em;
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .page-cockfighting__features-grid {
        grid-template-columns: 1fr;
    }

    .page-cockfighting__feature-image {
        height: auto; /* Allow auto height for responsive images */
    }

    /* Mobile content image constraint */
    .page-cockfighting img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-cockfighting__main-title {
        font-size: 1.7em;
    }

    .page-cockfighting__button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-cockfighting__section-title {
        font-size: 1.6em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-cockfighting__guide-item {
        padding: 20px 25px;
    }

    .page-cockfighting__faq-item {
        padding: 20px 25px;
    }
}