.page-sports-betting { color: #333333; font-family: Arial, sans-serif; line-height: 1.6; }

/* Hero Section */
.page-sports-betting__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #8B0000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
}

.page-sports-betting__hero-image-container {
    width: 100%;
    max-height: 780px;
    overflow: hidden;
}

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

.page-sports-betting__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 900px;
    margin-top: -150px; /* Overlap slightly with the image for visual effect */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background for readability */
    border-radius: 10px;
    color: #ffffff;
}

.page-sports-betting__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-sports-betting__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.page-sports-betting__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-sports-betting__btn--primary {
    background-color: #FFD700;
    color: #8B0000;
    border: 2px solid #FFD700;
}

.page-sports-betting__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-sports-betting__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-sports-betting__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000;
    transform: translateY(-2px);
}

.page-sports-betting__btn--small {
    padding: 8px 15px;
    font-size: 0.9em;
}

/* General Section Styling */
.page-sports-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-sports-betting__section-title {
    font-size: 2.2em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-sports-betting__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #555555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports-betting__intro-section, .page-sports-betting__features-section, .page-sports-betting__sports-covered-section, .page-sports-betting__how-to-bet-section, .page-sports-betting__bonuses-section, .page-sports-betting__mobile-app-section, .page-sports-betting__faq-section, .page-sports-betting__cta-final-section {
    padding: 60px 0;
}

.page-sports-betting__features-section, .page-sports-betting__bonuses-section {
    background-color: #f9f9f9;
}

/* Features Grid */
.page-sports-betting__features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.page-sports-betting__feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-sports-betting__feature-card:hover {
    transform: translateY(-5px);
}

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

.page-sports-betting__feature-title {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-sports-betting__feature-text {
    color: #666666;
}

/* Sports Grid */
.page-sports-betting__sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    justify-content: center;
}

.page-sports-betting__sport-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-sports-betting__sport-card:hover {
    transform: translateY(-5px);
}

.page-sports-betting__sport-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
}

.page-sports-betting__sport-title {
    font-size: 1.3em;
    color: #8B0000;
    margin: 15px 0 5px;
}

.page-sports-betting__sport-text {
    font-size: 0.95em;
    color: #666666;
    padding: 0 15px 20px;
}

/* How to Bet Section */
.page-sports-betting__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-sports-betting__step-card {
    background-color: #FFD700;
    color: #8B0000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-sports-betting__step-number {
    font-size: 3em;
    font-weight: bold;
    color: #8B0000;
    margin-bottom: 10px;
}

.page-sports-betting__step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-sports-betting__step-text {
    font-size: 1em;
    color: #333333;
}

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

/* Bonuses Section */
.page-sports-betting__bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-sports-betting__bonus-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.page-sports-betting__bonus-image {
    width: 100%;
    height: 200px; /* Consistent image height */
    object-fit: cover;
    margin-bottom: 15px;
}

.page-sports-betting__bonus-title {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-sports-betting__bonus-text {
    color: #666666;
    margin-bottom: 20px;
    padding: 0 15px;
}

/* Mobile App Section */
.page-sports-betting__mobile-app-section {
    background-color: #8B0000;
    color: #ffffff;
}

.page-sports-betting__mobile-app-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.page-sports-betting__mobile-app-text {
    flex: 1;
}

.page-sports-betting__mobile-app-text .page-sports-betting__section-title {
    color: #FFD700;
    text-align: left;
}

.page-sports-betting__mobile-app-text .page-sports-betting__section-description {
    color: #ffffff;
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.page-sports-betting__app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.page-sports-betting__mobile-app-image-wrapper {
    flex: 0 0 300px;
    text-align: center;
}

.page-sports-betting__mobile-app-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-sports-betting__faq-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-sports-betting__faq-question {
    font-size: 1.2em;
    color: #8B0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-sports-betting__faq-answer {
    color: #555555;
}

/* Final CTA Section */
.page-sports-betting__cta-final-section {
    text-align: center;
    background-color: #FFD700;
    padding: 80px 0;
    color: #8B0000;
}

.page-sports-betting__cta-final-section .page-sports-betting__section-title {
    color: #8B0000;
}

.page-sports-betting__cta-final-section .page-sports-betting__section-description {
    color: #333333;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-sports-betting__hero-content {
        margin-top: -100px;
    }

    .page-sports-betting__features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-sports-betting__mobile-app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-sports-betting__mobile-app-text .page-sports-betting__section-title,
    .page-sports-betting__mobile-app-text .page-sports-betting__section-description {
        text-align: center;
    }

    .page-sports-betting__app-buttons {
        justify-content: center;
    }

    .page-sports-betting__mobile-app-image-wrapper {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-sports-betting__hero-section {
        padding-top: 10px; /* Small top padding to respect body padding-top */
        padding-bottom: 20px;
    }

    .page-sports-betting__hero-content {
        margin-top: -80px;
        padding: 15px;
        max-width: 95%;
    }

    .page-sports-betting__main-title {
        font-size: 1.8em;
    }

    .page-sports-betting__hero-description {
        font-size: 1em;
    }

    .page-sports-betting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-sports-betting__btn {
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        padding: 10px 20px;
    }

    .page-sports-betting__section-title {
        font-size: 1.8em;
    }

    .page-sports-betting__features-grid,
    .page-sports-betting__sports-grid,
    .page-sports-betting__steps-grid,
    .page-sports-betting__bonuses-grid {
        grid-template-columns: 1fr;
    }

    .page-sports-betting__mobile-app-content {
        flex-direction: column;
    }

    .page-sports-betting__mobile-app-image-wrapper {
        flex: none;
        width: 80%;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .page-sports-betting__app-buttons {
        flex-direction: column;
    }

    .page-sports-betting__feature-icon,
    .page-sports-betting__sport-image,
    .page-sports-betting__bonus-image,
    .page-sports-betting__mobile-app-image {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px;
        min-height: 200px;
    }

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