/* style/sports.css */
.page-sports {
    background-color: #08160F; /* Main background color */
    color: #F2FFF6; /* Main text color on dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-sports__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-sports__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #08160F;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Adjust based on typical screen size for hero */
    margin-bottom: 30px; /* Space between image and text */
}

.page-sports__hero-image {
    width: 1200px;
    height: 675px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.page-sports__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    box-sizing: border-box;
    color: #F2FFF6;
}

.page-sports__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold color for title */
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-sports__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #A7D9B8; /* Secondary text color */
}

.page-sports__hero-cta-group {
    display: flex;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons don't overflow */
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word;
    min-width: 200px; /* Ensure buttons are not too small */
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-sports__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
    transform: translateY(-2px);
}

.page-sports__btn-secondary {
    background-color: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
    min-width: 200px;
}

.page-sports__btn-secondary:hover {
    background-color: #2AD16F;
    color: #F2FFF6;
    transform: translateY(-2px);
}

.page-sports__section {
    padding: 60px 0;
    text-align: center;
}

.page-sports__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 40px;
    color: #F2C14E; /* Gold for section titles */
    text-shadow: 0 0 5px rgba(242, 193, 78, 0.3);
}

.page-sports__text-block {
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #F2FFF6; /* Main text color */
    font-size: 1.1rem;
    line-height: 1.8;
    min-height: 200px; /* Ensure text blocks are not too small */
}

.page-sports__image-full-width {
    width: 800px;
    height: 600px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 40px auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-sports__grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-sports__grid-2-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-sports__card {
    background-color: #11271B; /* Card background color */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #2E7A4E; /* Border color */
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards in grid have equal height */
    box-sizing: border-box;
}

.page-sports__card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2C14E; /* Gold for card titles */
    line-height: 1.3;
}
.page-sports__card-title a {
    color: #F2C14E;
    text-decoration: none;
}
.page-sports__card-title a:hover {
    text-decoration: underline;
}

.page-sports__card-text {
    color: #A7D9B8; /* Secondary text color */
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1; /* Make text block grow to push content down */
}

.page-sports__card-image {
    width: 800px;
    height: 600px;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-sports__cta-wrapper {
    margin-top: 50px;
    text-align: center;
}

.page-sports__btn-inline {
    margin-top: 20px;
}

.page-sports__promotions-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.page-sports__guide-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-sports__guide-item {
    background-color: #11271B;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #2E7A4E;
}

.page-sports__guide-step-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #F2FFF6; /* Main text color */
}

.page-sports__guide-text {
    color: #A7D9B8; /* Secondary text color */
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-sports__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-sports__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6;
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green for FAQ question background */
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-question {
    border-bottom-color: #2E7A4E;
}

.page-sports__faq-question:hover {
    background-color: #13994A; /* Slightly lighter on hover */
}

.page-sports__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F2C14E; /* Gold for toggle icon */
    margin-left: 15px;
}

.page-sports__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #A7D9B8;
    line-height: 1.7;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-sports {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-sports__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-sports__hero-section {
        padding-bottom: 40px;
        padding-top: 10px !important; /* body handles --header-offset, this is for visual space */
    }

    .page-sports__hero-title {
        font-size: 2rem;
    }

    .page-sports__hero-description {
        font-size: 1rem;
    }

    .page-sports__hero-cta-group {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }

    .page-sports__btn-primary,
    .page-sports__btn-secondary,
    .page-sports a[class*="button"],
    .page-sports a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        min-width: unset !important; /* Allow buttons to shrink */
    }

    .page-sports__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-sports__text-block {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-sports__grid-3-cols,
    .page-sports__grid-2-cols,
    .page-sports__promotions-list {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px;
    }

    .page-sports__card {
        padding: 20px;
    }

    .page-sports__card-title {
        font-size: 1.4rem;
    }

    .page-sports__card-text {
        font-size: 0.95rem;
    }

    .page-sports__image-full-width,
    .page-sports__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
        min-width: unset !important;
        min-height: unset !important;
    }

    /* FAQ specific for mobile */
    .page-sports__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-sports__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }
}