/* style/sports.css */
.page-sports {
    color: #333333; /* Dark text for light body background */
}

.page-sports__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-sports__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.page-sports__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
}

.page-sports__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

.page-sports__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-sports__btn--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-sports__btn--register:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.page-sports__btn--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-sports__btn--login:hover {
    background-color: #e6a73c;
    transform: translateY(-2px);
}

.page-sports__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.page-sports__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle overlay */
    filter: brightness(0.6); /* Darken image without changing color hue */
}

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

.page-sports__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
    font-weight: 700;
}

.page-sports__section-intro {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #555555;
}

.page-sports__features-section, .page-sports__how-to-section, .page-sports__markets-section, .page-sports__live-betting-section, .page-sports__promotions-section, .page-sports__security-section, .page-sports__app-section, .page-sports__faq-section, .page-sports__cta-final-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-sports__features-section {
    background-color: #f8f8f8;
}

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

.page-sports__feature-card, .page-sports__step-card, .page-sports__market-card, .page-sports__promo-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-sports__feature-card:hover, .page-sports__step-card:hover, .page-sports__market-card:hover, .page-sports__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-sports__feature-title, .page-sports__step-title, .page-sports__market-title, .page-sports__promo-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-sports__feature-description, .page-sports__step-description, .page-sports__market-description, .page-sports__promo-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
}

.page-sports__step-card .page-sports__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FCBC45;
    color: #000000;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(252, 188, 69, 0.4);
}

.page-sports__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-sports__market-card .page-sports__market-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.page-sports__live-betting-section {
    background-color: #000000;
    color: #FFFFFF;
}

.page-sports__live-betting-section .page-sports__section-title, .page-sports__live-betting-section .page-sports__section-intro {
    color: #FFFFFF;
}

.page-sports__live-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.page-sports__live-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-sports__live-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-sports__live-subtitle {
    font-size: 2em;
    color: #FCBC45;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-sports__live-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-sports__live-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-sports__live-text li p {
    color: #f0f0f0;
}

.page-sports__live-text li::before {
    content: '✓';
    color: #FCBC45;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-sports__btn--live-betting {
    background-color: #FCBC45;
    color: #000000;
}

.page-sports__btn--live-betting:hover {
    background-color: #e6a73c;
}

.page-sports__promotions-section {
    background-color: #f8f8f8;
}

.page-sports__promo-card .page-sports__btn--promo {
    background-color: #FCBC45;
    color: #000000;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 0.95em;
}

.page-sports__promo-card .page-sports__btn--promo:hover {
    background-color: #e6a73c;
}

.page-sports__security-section {
    background-color: #FFFFFF;
}

.page-sports__security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.page-sports__security-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.page-sports__security-details {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-sports__security-subtitle {
    font-size: 2em;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-sports__security-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-sports__security-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-sports__security-details li p {
    color: #555555;
}

.page-sports__security-details li::before {
    content: '✓';
    color: #000000;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-sports__btn--learn-more {
    background-color: #000000;
    color: #FFFFFF;
}

.page-sports__btn--learn-more:hover {
    background-color: #333333;
}

.page-sports__app-section {
    background-color: #f8f8f8;
}

.page-sports__app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.page-sports__app-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.page-sports__app-details {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.page-sports__app-subtitle {
    font-size: 2em;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.page-sports__app-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1em;
    line-height: 1.6;
}

.page-sports__app-details li p {
    color: #555555;
}

.page-sports__app-details li::before {
    content: '✓';
    color: #FCBC45;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1.6;
}

.page-sports__btn--download {
    background-color: #FCBC45;
    color: #000000;
}

.page-sports__btn--download:hover {
    background-color: #e6a73c;
}

.page-sports__faq-section {
    background-color: #FFFFFF;
}

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

.page-sports__faq-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-sports__faq-answer {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
}

.page-sports__cta-final-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 80px 20px;
}

.page-sports__cta-final-section .page-sports__section-title {
    color: #FCBC45;
}

.page-sports__cta-final-section .page-sports__section-intro {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-sports__btn--final-cta {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-sports__btn--final-cta:hover {
    background-color: #e6a73c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports__hero-title {
        font-size: 3em;
    }
    .page-sports__section-title {
        font-size: 2em;
    }
    .page-sports__live-content, .page-sports__security-content, .page-sports__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-sports__live-image, .page-sports__security-image, .page-sports__app-image {
        max-width: 100%;
    }
    .page-sports__live-text, .page-sports__security-details, .page-sports__app-details {
        text-align: center;
    }
    .page-sports__live-text li, .page-sports__security-details li, .page-sports__app-details li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-title {
        font-size: 2.5em;
    }
    .page-sports__hero-description {
        font-size: 1em;
    }
    .page-sports__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-sports__section-title {
        font-size: 1.8em;
    }
    .page-sports__section-intro {
        font-size: 0.95em;
    }
    .page-sports__features-grid, .page-sports__steps-grid, .page-sports__markets-grid, .page-sports__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-sports__live-subtitle, .page-sports__security-subtitle, .page-sports__app-subtitle {
        font-size: 1.8em;
    }
    .page-sports__live-text li, .page-sports__security-details li, .page-sports__app-details li {
        font-size: 1em;
    }
    .page-sports__faq-question {
        font-size: 1.1em;
    }
    /* Mobile specific image sizing for content area */
    .page-sports img {
        max-width: 100%;
        height: auto;
    }
    .page-sports__market-card .page-sports__market-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-title {
        font-size: 2em;
    }
    .page-sports__hero-description {
        font-size: 0.9em;
    }
    .page-sports__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-sports__section-title {
        font-size: 1.5em;
    }
    .page-sports__step-card .page-sports__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
    .page-sports__live-subtitle, .page-sports__security-subtitle, .page-sports__app-subtitle {
        font-size: 1.5em;
    }
    .page-sports__faq-question {
        font-size: 1em;
    }
}