.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: 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: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

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

.page-sports__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-top: 40px;
}

.page-sports__main-title {
    font-size: 2.8em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-sports__cta-buttons--center {
    margin-top: 40px;
    justify-content: center;
}

.page-sports__btn-primary,
.page-sports__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
    max-width: 100%;
}

.page-sports__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
    color: #F2FFF6; /* Text Main */
    border: none;
    box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-sports__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-sports__btn-secondary {
    background: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border */
}

.page-sports__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1);
    color: #F2FFF6;
    transform: translateY(-2px);
}

.page-sports__btn-text-link {
    color: #57E38D; /* Glow */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-sports__btn-text-link:hover {
    color: #F2FFF6; /* Text Main */
}

.page-sports__section-title {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-sports__text-block {
    font-size: 1.05em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__about-section,
.page-sports__categories-section,
.page-sports__how-to-section,
.page-sports__responsible-gaming-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-sports__dark-section {
    background-color: #11271B; /* Card BG */
    padding: 80px 0;
}

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

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

.page-sports__feature-item:hover,
.page-sports__category-card:hover,
.page-sports__step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__feature-item img,
.page-sports__category-card img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure no extra space below image */
}

.page-sports__feature-title,
.page-sports__category-title,
.page-sports__step-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-sports__feature-description,
.page-sports__category-description,
.page-sports__step-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding */
    background-color: #08160F;
}

.page-sports__video-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-sports__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-sports__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.page-sports__video-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.page-sports__video-description {
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-top: 30px;
    font-size: 1.05em;
    max-width: 800px;
}

.page-sports__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    line-height: 1;
}

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

.page-sports__security-item {
    background-color: rgba(17, 39, 27, 0.7); /* Slightly transparent Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    border: 1px solid #2E7A4E; /* Border */
}

.page-sports__security-title {
    font-size: 1.3em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-sports__security-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__responsible-gaming-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__responsible-gaming-list li {
    background-color: #11271B; /* Card BG */
    color: #A7D9B8; /* Text Secondary */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 4px solid #57E38D; /* Glow */
    border-radius: 5px;
    font-size: 1em;
}

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

.page-sports__faq-item {
    background-color: #0A4B2C; /* Deep Green */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Text Main */
}

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

.page-sports__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit */
}

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

.page-sports__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #57E38D; /* Glow */
}

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

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

.page-sports__faq-answer p {
    margin: 0;
    color: #A7D9B8; /* Text Secondary */
}

.page-sports__cta-banner {
    padding: 100px 20px;
    text-align: center;
    background-color: #11271B; /* Card BG */
}

.page-sports__cta-banner-content {
    max-width: 800px;
}

.page-sports__cta-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
}

.page-sports__cta-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports__main-title {
        font-size: 2.5em;
    }
    .page-sports__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-sports {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-sports__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-sports__main-title {
        font-size: 2em;
    }
    .page-sports__hero-description {
        font-size: 1em;
    }
    .page-sports__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;
        padding-left: 15px !important;
        padding-right: 15px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-sports__cta-buttons,
    .page-sports__button-group,
    .page-sports__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-sports__section-title {
        font-size: 1.8em;
    }
    .page-sports__text-block {
        font-size: 0.95em;
    }
    .page-sports__features-grid,
    .page-sports__categories-grid,
    .page-sports__steps-grid,
    .page-sports__security-features {
        grid-template-columns: 1fr;
    }
    .page-sports__feature-item,
    .page-sports__category-card,
    .page-sports__step-item,
    .page-sports__security-item {
        padding: 20px;
    }
    .page-sports__feature-item img,
    .page-sports__category-card img {
        max-height: 200px;
    }
    .page-sports img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports__section,
    .page-sports__card,
    .page-sports__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-sports__video-section {
        padding-top: 10px !important;
    }
    .page-sports video,
    .page-sports__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports__video-section,
    .page-sports__video-container,
    .page-sports__video-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-wrapper {
        padding-bottom: 56.25% !important; /* Ensure aspect ratio is maintained */
    }
    .page-sports__cta-title {
        font-size: 2em;
    }
    .page-sports__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-sports__main-title {
        font-size: 1.8em;
    }
    .page-sports__section-title {
        font-size: 1.6em;
    }
    .page-sports__cta-title {
        font-size: 1.8em;
    }
    .page-sports__faq-item summary {
        font-size: 1em;
    }
    .page-sports__faq-answer {
        font-size: 0.9em;
    }
}