.page-sports {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

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

.page-sports__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
    background-color: #08160F; /* Ensure dark background */
}

.page-sports__hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    filter: brightness(0.6);
}

.page-sports__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 90%;
    z-index: 10;
    color: #F2FFF6;
    padding: 20px;
    box-sizing: border-box;
}

.page-sports__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.page-sports__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-sports__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-sports__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Button color */
    border: 2px solid #2AD16F;
}

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

.page-sports__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #F2C14E; /* Gold */
    line-height: 1.2;
}

.page-sports__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__dark-section {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6; /* Text Main */
}

.page-sports__about-section .page-sports__section-description {
    color: #A7D9B8;
}

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

.page-sports__feature-item {
    text-align: center;
    padding: 25px;
    background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter Card BG */
    border-radius: 12px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-sports__feature-item:hover {
    transform: translateY(-5px);
}

.page-sports__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-sports__feature-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__games-section {
    background-color: #08160F; /* Background */
}

.page-sports__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-sports__game-tile {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__game-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-sports__game-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin: 15px 10px 5px 10px;
}

.page-sports__game-text {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 15px 15px 15px;
}

.page-sports__live-betting-section {
    background-color: #11271B; /* Card BG */
    text-align: center;
}

.page-sports__live-betting-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 12px;
    margin: 40px auto;
    display: block;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__live-betting-cta {
    margin-top: 30px;
}

.page-sports__promotions-section {
    background-color: #08160F; /* Background */
}

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

.page-sports__promo-card {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-sports__promo-card:hover {
    transform: translateY(-5px);
}

.page-sports__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-sports__promo-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin: 15px 15px 10px 15px;
}

.page-sports__promo-text {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 15px 20px 15px;
}

.page-sports__promotions-cta {
    margin-top: 50px;
}

.page-sports__mobile-app-section {
    background-color: #0A4B2C; /* Deep Green */
    color: #F2FFF6;
}

.page-sports__mobile-app-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page-sports__mobile-app-text-block {
    flex: 1;
    min-width: 300px;
}

.page-sports__mobile-app-image {
    flex-shrink: 0;
    width: 400px;
    height: 600px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__app-features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.page-sports__app-feature-item {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-sports__app-feature-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #57E38D; /* Glow */
}

.page-sports__app-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-sports__security-section {
    background-color: #08160F; /* Background */
}

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

.page-sports__security-item {
    text-align: center;
    padding: 30px;
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-sports__security-item:hover {
    transform: translateY(-5px);
}

.page-sports__security-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__security-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-sports__security-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__getting-started-section {
    background-color: #11271B; /* Card BG */
}

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

.page-sports__step-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter Card BG */
    border-radius: 12px;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    background: linear-gradient(45deg, #2AD16F, #13994A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-sports__step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-sports__step-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__getting-started-cta {
    margin-top: 50px;
}

.page-sports__faq-section {
    background-color: #08160F; /* Background */
}

.page-sports__faq-list {
    margin-top: 40px;
}

.page-sports__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-sports__faq-item[open] {
    background-color: rgba(17, 39, 27, 0.7);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    list-style: none;
    position: relative;
}

.page-sports__faq-question::-webkit-details-marker {
    display: none;
}

.page-sports__faq-question::marker {
    display: none;
}

.page-sports__faq-qtext {
    flex-grow: 1;
}

.page-sports__faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #F2C14E; /* Gold */
    margin-left: 15px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
    transform: rotate(45deg);
}

.page-sports__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-sports__faq-item[open] .page-sports__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding-top: 10px;
}

.page-sports__contact-cta-section {
    background-color: #0A4B2C; /* Deep Green */
    text-align: center;
}

/* General image and container responsive styles */
.page-sports img {
    max-width: 100%;
    height: auto;
    display: block;
}

.page-sports__container,
.page-sports__hero-section,
.page-sports__about-section,
.page-sports__games-section,
.page-sports__live-betting-section,
.page-sports__promotions-section,
.page-sports__mobile-app-section,
.page-sports__security-section,
.page-sports__getting-started-section,
.page-sports__faq-section,
.page-sports__contact-cta-section {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
    .page-sports__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

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

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

    .page-sports__mobile-app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-sports__mobile-app-text-block {
        order: 2;
    }

    .page-sports__mobile-app-image {
        order: 1;
        width: 80%;
        height: auto;
        max-width: 400px;
    }

    .page-sports__app-features-list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-sports__container {
        padding: 30px 15px;
    }

    .page-sports__hero-section {
        padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    }

    .page-sports__hero-image {
        height: 400px; /* Smaller height for mobile hero */
        object-fit: contain !important; /* Hero mobile image: contain, not cover */
        aspect-ratio: unset !important;
        max-height: none !important;
        filter: brightness(0.5);
    }

    .page-sports__hero-content {
        position: static;
        transform: none;
        padding: 20px 15px;
        width: 100%;
        text-align: center;
    }

    .page-sports__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

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

    .page-sports__hero-cta-buttons {
        flex-direction: column;
        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: 12px 20px;
        font-size: 1rem;
    }

    .page-sports__hero-cta-buttons,
    .page-sports__app-cta-buttons,
    .page-sports__promotions-cta,
    .page-sports__getting-started-cta,
    .page-sports__contact-cta-section .page-sports__cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-sports__section-title {
        font-size: 1.8rem;
    }

    .page-sports__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-sports__features-grid,
    .page-sports__game-grid,
    .page-sports__promo-grid,
    .page-sports__security-features,
    .page-sports__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-sports__game-image {
        height: 200px; /* Smaller game images on mobile */
    }

    .page-sports__mobile-app-image {
        width: 100%;
        height: auto;
        max-width: 300px;
        margin: 0 auto 30px auto;
    }

    .page-sports__app-features-list {
        padding-left: 0;
    }

    .page-sports__app-feature-item {
        text-align: left;
        padding-left: 25px;
    }

    .page-sports__faq-question {
        font-size: 1.1rem;
        padding: 15px;
    }

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

    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__feature-item,
    .page-sports__game-tile,
    .page-sports__promo-card,
    .page-sports__security-item,
    .page-sports__step-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}