body {
    background: #08160F; /* Nền chính của body */
    color: #F2FFF6; /* Màu chữ chính cho body */
}

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

.page-sports__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px 60px 20px; /* Adjusted padding to avoid large top spacing */
    box-sizing: border-box;
    overflow: hidden;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 30px; /* Space between image and content */
}

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

.page-sports__hero-content {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.page-sports__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for responsive H1 */
}

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

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

.page-sports__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 20px;
}

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

.page-sports__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

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

.page-sports__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(87, 227, 141, 0.4);
}

.page-sports__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Lighter shade of primary for border */
    border: 2px solid #2AD16F;
}

.page-sports__btn-secondary:hover {
    background: #2AD16F;
    color: #08160F; /* Background */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.2);
}

.page-sports__btn-link {
    background: transparent;
    color: #57E38D; /* Glow */
    border: none;
    padding: 10px 0;
    font-size: 1rem;
    text-align: center;
}

.page-sports__btn-link:hover {
    text-decoration: underline;
    color: #F2C14E; /* Gold */
}

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

.page-sports__sport-card,
.page-sports__promo-card,
.page-sports__feature-card {
    background: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports__sport-card:hover,
.page-sports__promo-card:hover,
.page-sports__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-sports__sport-name,
.page-sports__promo-title,
.page-sports__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
}

.page-sports__sport-desc,
.page-sports__promo-desc,
.page-sports__feature-desc {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__odds-section .page-sports__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-sports__odds-section .page-sports__text-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-sports__odds-section .page-sports__image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.page-sports__odds-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #2E7A4E;
}

.page-sports__odds-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-sports__odds-item {
    background: #11271B; /* Card BG */
    border-left: 4px solid #57E38D; /* Glow */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #F2FFF6; /* Text Main */
    font-size: 1rem;
}

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

.page-sports__step-card {
    background: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #2E7A4E; /* Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-sports__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid #57E38D; /* Glow */
}

.page-sports__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
}

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

.page-sports__video-section {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 40px 20px;
    background: #0A4B2C; /* Deep Green */
    border-radius: 10px;
    text-align: center;
    box-sizing: border-box;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-sports__video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 30px;
    border-radius: 10px;
    border: 2px solid #2E7A4E;
    width: 100%; /* Ensure desktop width is 100% */
    max-width: 100%; /* Ensure desktop width is 100% */
    box-sizing: border-box;
}

.page-sports__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; /* Make the anchor tag fill the container */
    cursor: pointer;
}

.page-sports__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

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

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

.page-sports__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
    user-select: none; /* Prevent text selection on click */
}

.page-sports__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-sports__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #57E38D; /* Glow */
    margin-left: 15px;
}

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

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

.page-sports__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.5;
}

.page-sports__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-sports__conclusion-section .page-sports__section-title {
    color: #57E38D; /* Glow */
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-sports__hero-section {
        padding-bottom: 40px;
    }
    .page-sports__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-sports__hero-description {
        font-size: 1rem;
    }
    .page-sports__section {
        padding: 60px 20px;
    }
    .page-sports__section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    .page-sports__sports-grid,
    .page-sports__promotions-grid,
    .page-sports__features-grid,
    .page-sports__betting-guide .page-sports__guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-sports__odds-section .page-sports__content-wrapper {
        flex-direction: column;
    }
    .page-sports__odds-section .page-sports__text-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-sports {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-sports__hero-section {
        padding: 0 15px 30px 15px;
    }
    .page-sports__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-sports__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-sports__hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .page-sports__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    .page-sports__btn-primary,
    .page-sports__btn-secondary,
    .page-sports__btn-link {
        padding: 12px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-sports__section {
        padding: 40px 15px;
    }
    .page-sports__section-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 15px;
    }
    .page-sports__section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

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

    .page-sports__hero-image-wrapper,
    .page-sports__video-container,
    .page-sports__video-wrapper,
    .page-sports__section,
    .page-sports__card,
    .page-sports__container,
    .page-sports__odds-section .page-sports__content-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-sports__video-section {
        padding-top: 10px !important;
        margin: 40px auto 0 auto;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-sports__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-sports__faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 0.9rem;
    }
    .page-sports__odds-section .page-sports__text-content,
    .page-sports__odds-section .page-sports__image-content {
        min-width: unset;
        width: 100%;
    }
}