:root {
    --page-sports-primary-color: #26A9E0;
    --page-sports-secondary-color: #FFFFFF;
    --page-sports-background-color: #FFFFFF;
    --page-sports-dark-background: #100224; /* From WOW88 style guide */
    --page-sports-text-color: #FFFFFF; /* For dark backgrounds */
    --page-sports-text-dark: #000000; /* For light backgrounds */
    --page-sports-cta-login: #EA7C07;
    --page-sports-cta-gradient: linear-gradient(to right, #ff9500, #ff5e3a); /* From WOW88 style guide */
    --page-sports-button-blue: #83a1f2; /* From WOW88 style guide */
    --page-sports-button-blue-hover: #688cec; /* From WOW88 style guide */
}

.page-sports {
    background-color: var(--page-sports-dark-background); /* Deep purple-black */
    color: var(--page-sports-text-color);
    padding-top: 10px; /* Small top padding for inner pages */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-sports__hero-section {
    position: relative;
    padding: 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Image above, text below */
    gap: 20px;
    box-sizing: border-box;
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-sports__hero-content {
    padding: 20px 0;
}

.page-sports__main-title {
    font-size: clamp(2rem, 4vw, 3rem); /* H1 font size clamp */
    font-weight: 700;
    line-height: 1.2;
    color: var(--page-sports-secondary-color); /* White for dark background */
    margin-bottom: 15px;
    text-transform: uppercase;
    background: var(--page-sports-cta-gradient); /* Gold-orange gradient for title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-sports__intro-description,
.page-sports__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--page-sports-cta-gradient); /* Orange-red gradient */
    color: var(--page-sports-secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px; /* Ensure CTA buttons are not too small */
    min-height: 44px; /* Ensure CTA buttons are not too small */
}

.page-sports__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__features-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.page-sports__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--page-sports-secondary-color);
    background: var(--page-sports-cta-gradient); /* Gold-orange gradient for section titles */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.page-sports__feature-item {
    background-color: #1a0a30; /* Slightly lighter dark background for cards */
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    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-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--page-sports-primary-color);
    margin-bottom: 15px;
}

.page-sports__feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
}

.page-sports__cta-button--secondary {
    background: var(--page-sports-button-blue); /* Blue button */
    transition: background-color 0.3s ease;
}

.page-sports__cta-button--secondary:hover {
    background: var(--page-sports-button-blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-sports__game-gallery {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

.page-sports__gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 4 columns for desktop */
    gap: 20px;
}

.page-sports__game-tile {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Remove underline for links */
    color: inherit; /* Inherit color for link text */
    min-width: 200px;
    min-height: 200px;
}

.page-sports__game-tile:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-sports__game-tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-sports__game-tile--promo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--page-sports-primary-color);
    position: relative;
}

.page-sports__game-tile--promo img {
    opacity: 0.7; /* Slightly dim the background image for text */
    min-width: 200px;
    min-height: 200px;
}

.page-sports__game-promo-text {
    position: absolute;
    color: var(--page-sports-secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

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

.page-sports__faq-item {
    background-color: #1a0a30; /* Slightly lighter dark background for FAQ items */
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-sports__faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--page-sports-primary-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a0a30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports__faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.page-sports__faq-question.is-active::after {
    transform: rotate(45deg);
}

.page-sports__faq-answer {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
    padding: 0 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-sports__faq-answer.is-active {
    max-height: 200px; /* Adjust based on content, or use JS to calculate */
    padding: 0 20px 20px;
}
.page-sports__faq-answer a {
    color: var(--page-sports-primary-color);
    text-decoration: none;
}
.page-sports__faq-answer a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 849px) {
    .page-sports__hero-section {
        padding: 10px;
    }
    .page-sports__hero-content {
        padding: 10px 0;
    }
    .page-sports__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-sports__intro-description,
    .page-sports__intro-text {
        font-size: 1rem;
    }
    .page-sports__cta-button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }
    .page-sports__features-section,
    .page-sports__game-gallery,
    .page-sports__faq-section {
        padding: 20px 10px;
    }
    .page-sports__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-sports__features-grid {
        grid-template-columns: 1fr;
    }
    .page-sports__gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 2 columns for smaller mobile */
    }
    .page-sports__game-tile img {
        max-width: 100%;
        height: auto;
    }
    .page-sports__game-tile,
    .page-sports__game-tile img {
        min-width: 200px; /* Ensure minimum size for content images */
        min-height: 200px; /* Ensure minimum size for content images */
    }
}

@media (max-width: 549px) {
    .page-sports__gallery-grid {
        grid-template-columns: 1fr; /* 1 column for very small screens */
    }
    .page-sports__game-tile,
    .page-sports__game-tile img {
        min-width: 200px; /* Ensure minimum size for content images */
        min-height: 200px; /* Ensure minimum size for content images */
    }
}

/* Ensure content area images CSS do not result in display size smaller than 200px */
.page-sports img {
    /* These properties are for responsive scaling, not fixed small sizes */
    max-width: 100%;
    height: auto;
}
/* Explicitly prevent smaller sizes if any other rule might override */
.page-sports__hero-image,
.page-sports__game-tile img {
    min-width: 200px;
    min-height: 200px;
}