.page-sports {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

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

.page-sports__section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-sports__section-title {
    font-size: 2.5em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-sports__section-title--light {
    color: #ffffff;
}

.page-sports__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-sports__text-block--light {
    color: #f0f0f0;
}

/* Buttons */
.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-sports__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-sports__btn-secondary {
    background: #ffffff; /* Card BG */
    color: #2F6BFF; /* Main Color */
    border: 2px solid #2F6BFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__btn-secondary:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.page-sports__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 10px; /* Small top spacing as body padding-top is handled by shared.css */
    background-color: #F4F7FB;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-sports__hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px;
    text-align: center;
    color: #1F2D3D;
}

.page-sports__hero-title {
    font-size: clamp(2em, 3.5vw, 2.8em); /* Responsive font size */
    font-weight: 700;
    color: #1F2D3D;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-sports__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #1F2D3D;
}

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

/* Intro Section */
.page-sports__intro-section .page-sports__text-block {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Sports Diversity Section */
.page-sports__dark-section {
    background-color: #2F6BFF; /* Main Color */
    color: #ffffff;
}

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

.page-sports__sports-item {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #1F2D3D;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-sports__sports-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-sports__sports-subtitle {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2F6BFF; /* Main Color */
}

.page-sports__sports-text {
    font-size: 1em;
    line-height: 1.6;
    flex-grow: 1;
    text-align: justify;
}

/* Live Betting Section */
.page-sports__live-betting-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-sports__live-betting-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-sports__live-betting-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page-sports__live-betting-text-wrapper .page-sports__btn-primary {
    align-self: flex-start;
    margin-top: 20px;
}

/* Features Section */
.page-sports__light-bg {
    background-color: #F4F7FB; /* Background */
}

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

.page-sports__feature-card {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: #1F2D3D;
    border: 1px solid #D6E2FF; /* Border */
}

.page-sports__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-sports__feature-text {
    font-size: 1em;
    line-height: 1.6;
}

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

.page-sports__promo-card {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #1F2D3D;
    border: 1px solid #D6E2FF; /* Border */
}

.page-sports__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-sports__promo-text {
    font-size: 1em;
    line-height: 1.6;
}

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

.page-sports__cta-buttons--center .page-sports__btn-primary {
    margin: 0 auto;
}

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

.page-sports__step-item {
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #1F2D3D;
    border: 1px solid #D6E2FF; /* Border */
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.page-sports__step-number {
    background-color: #2F6BFF; /* Main Color */
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-sports__step-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2F6BFF; /* Main Color */
}

.page-sports__step-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* FAQ Section */
.page-sports__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-sports__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    cursor: pointer;
    outline: none;
}

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

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-sports__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    color: #2F6BFF;
    margin-left: 15px;
}

.page-sports__faq-item[open] .page-sports__faq-toggle {
    content: "−";
}

.page-sports__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    color: #1F2D3D; /* Text Main */
    border-top: 1px solid #D6E2FF;
}

/* Conclusion Section */
.page-sports__conclusion-content {
    text-align: center;
    padding: 50px 20px;
}

.page-sports__conclusion-content .page-sports__btn-primary {
    margin-top: 30px;
}

/* Global image and button responsive rules for mobile (max-width: 768px) */
@media (max-width: 768px) {
    .page-sports {
        font-size: 16px;
        line-height: 1.6;
    }

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

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

    .page-sports__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
    }

    .page-sports__hero-image-wrapper {
        margin-bottom: 20px;
    }

    .page-sports__hero-image {
        object-fit: contain !important; /* Mobile hero image should contain, not cover */
        height: auto !important;
        max-height: none !important;
        aspect-ratio: unset !important;
    }

    .page-sports__hero-title {
        font-size: clamp(1.8em, 7vw, 2.2em);
        margin-bottom: 15px;
    }

    .page-sports__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-sports__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        padding: 0 15px;
        box-sizing: border-box;
    }

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

    .page-sports__sports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-sports__sports-image {
        height: 180px;
    }

    .page-sports__live-betting-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-sports__live-betting-image {
        max-width: 100%;
    }

    .page-sports__live-betting-text-wrapper .page-sports__btn-primary {
        align-self: stretch;
        width: 100%;
    }

    .page-sports__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-sports__promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-sports__promo-image {
        height: 180px;
    }

    .page-sports__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-sports__faq-item summary {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-sports__faq-answer {
        padding: 10px 20px 15px;
    }

    .page-sports__conclusion-content {
        padding: 30px 15px;
    }

    /* Universal image responsive styles for all .page-sports img */
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure all content containers are responsive */
    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__hero-cta-buttons,
    .page-sports__live-betting-text-wrapper,
    .page-sports__cta-buttons--center {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-sports__hero-cta-buttons,
    .page-sports__cta-buttons--center {
        flex-wrap: wrap !important;
        flex-direction: column !important;
        gap: 10px;
    }
}

/* Tablet styles (max-width: 1024px) - Adjustments for larger screens than mobile but smaller than desktop */
@media (max-width: 1024px) {
    .page-sports__container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .page-sports__section-title {
        font-size: 2.2em;
    }

    .page-sports__hero-title {
        font-size: clamp(2.2em, 4.5vw, 2.6em);
    }

    .page-sports__live-betting-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-sports__live-betting-image {
        max-width: 80%;
    }

    .page-sports__live-betting-text-wrapper .page-sports__btn-primary {
        align-self: center;
    }

    .page-sports__features-grid,
    .page-sports__promo-cards,
    .page-sports__steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}