/* style/sports.css */

.page-sports {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-sports__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background-color: #f8f8f8;
}

.page-sports__hero-image-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-sports__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 700px; /* Limit height for hero image */
}

.page-sports__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text readability */
    border-radius: 10px;
}

.page-sports__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-sports__hero-btn {
    display: inline-block;
    background-color: #8B0000; /* Deep red for CTA button */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-sports__hero-btn:hover {
    background-color: #b30000; /* Slightly lighter red on hover */
    transform: translateY(-3px);
}

/* General Section Styling */
.page-sports__features-section,
.page-sports__sports-covered-section,
.page-sports__promo-section,
.page-sports__how-to-start-section,
.page-sports__responsible-gaming-section,
.page-sports__testimonials-section,
.page-sports__faq-section,
.page-sports__cta-bottom-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-sports__features-section,
.page-sports__how-to-start-section,
.page-sports__testimonials-section {
    background-color: #fcfcfc;
}

.page-sports__sports-covered-section,
.page-sports__promo-section,
.page-sports__faq-section {
    background-color: #ffffff;
}

.page-sports__live-betting-section,
.page-sports__responsible-gaming-section {
    background-color: #f0f0f0;
}

.page-sports__features-title,
.page-sports__sports-covered-title,
.page-sports__live-betting-title,
.page-sports__promo-title,
.page-sports__how-to-start-title,
.page-sports__responsible-gaming-title,
.page-sports__testimonials-title,
.page-sports__faq-title,
.page-sports__cta-bottom-title {
    font-size: 2.5em;
    color: #8B0000; /* Deep red for main section titles */
    margin-bottom: 40px;
}

.page-sports__sports-covered-intro,
.page-sports__promo-intro,
.page-sports__cta-bottom-description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 50px;
}

/* Features Grid */
.page-sports__features-grid,
.page-sports__sports-grid,
.page-sports__promo-grid,
.page-sports__steps-grid,
.page-sports__testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports__feature-card,
.page-sports__sport-card,
.page-sports__promo-card,
.page-sports__step-card,
.page-sports__testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

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

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

.page-sports__feature-heading,
.page-sports__sport-heading,
.page-sports__promo-heading,
.page-sports__step-heading {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card headings */
    margin-bottom: 15px;
}

.page-sports__feature-text,
.page-sports__sport-text,
.page-sports__promo-text,
.page-sports__step-text {
    font-size: 1em;
    color: #666666;
    flex-grow: 1;
}

.page-sports__promo-btn,
.page-sports__step-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold for secondary buttons */
    color: #333333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.page-sports__promo-btn:hover,
.page-sports__step-btn:hover {
    background-color: #e6c200;
}

.page-sports__cta-btn {
    display: inline-block;
    background-color: #8B0000; /* Deep red for primary CTAs */
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-sports__cta-btn:hover {
    background-color: #b30000;
    transform: translateY(-3px);
}

/* Live Betting Section */
.page-sports__live-betting-section {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    padding: 100px 20px;
}

.page-sports__live-betting-content {
    flex: 1;
}

.page-sports__live-betting-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-sports__live-betting-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

.page-sports__live-betting-title {
    font-size: 2.8em;
    color: #8B0000;
    margin-bottom: 25px;
}

.page-sports__live-betting-text {
    font-size: 1.1em;
    color: #444444;
    margin-bottom: 30px;
}

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

.page-sports__live-betting-list li {
    font-size: 1.1em;
    color: #333333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.page-sports__list-icon {
    color: #FFD700;
    font-size: 1.3em;
    margin-right: 10px;
}

/* How-to-Start Section */
.page-sports__step-card {
    background-color: #f0f0f0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

.page-sports__step-number {
    font-size: 3em;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-sports__responsible-gaming-section {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
    padding: 100px 20px;
}

.page-sports__responsible-gaming-content {
    flex: 1;
}

.page-sports__responsible-gaming-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-sports__responsible-gaming-image {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

.page-sports__responsible-gaming-title {
    font-size: 2.8em;
    color: #8B0000;
    margin-bottom: 25px;
}

.page-sports__responsible-gaming-text {
    font-size: 1.1em;
    color: #444444;
    margin-bottom: 30px;
}

.page-sports__responsible-gaming-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-sports__responsible-gaming-link:hover {
    color: #e6c200;
    border-color: #e6c200;
}

/* Testimonials Section */
.page-sports__testimonial-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-left: 5px solid #FFD700; /* Gold accent */
    text-align: left;
    min-height: 220px;
}

.page-sports__testimonial-text {
    font-style: italic;
    color: #555555;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-sports__testimonial-author {
    font-weight: bold;
    color: #8B0000;
    font-size: 0.95em;
}

/* FAQ Section */
.page-sports__faq-accordion {
    margin-top: 40px;
    text-align: left;
}

.page-sports__faq-item {
    background-color: #f0f0f0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-sports__faq-question {
    font-size: 1.3em;
    color: #333333;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #fcfcfc;
    transition: background-color 0.3s ease;
}

.page-sports__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-sports__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(0deg);
}

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

.page-sports__faq-question.active + .page-sports__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding: 0 25px 20px;
}

/* Call to Action Bottom Section */
.page-sports__cta-bottom-section {
    background-color: #8B0000; /* Deep red background */
    color: #ffffff;
    padding: 100px 20px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.page-sports__cta-bottom-title {
    color: #FFD700; /* Gold title */
    font-size: 3em;
    margin-bottom: 20px;
}

.page-sports__cta-bottom-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports__cta-bottom-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Deep red text */
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-sports__cta-bottom-btn:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-sports__hero-title {
        font-size: 2.5em;
    }
    .page-sports__hero-description {
        font-size: 1.1em;
    }
    .page-sports__features-grid,
    .page-sports__sports-grid,
    .page-sports__promo-grid,
    .page-sports__steps-grid,
    .page-sports__testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-sports__live-betting-section,
    .page-sports__responsible-gaming-section {
        flex-direction: column;
        text-align: center;
    }
    .page-sports__live-betting-content,
    .page-sports__responsible-gaming-content {
        order: 2;
    }
    .page-sports__live-betting-image-wrapper,
    .page-sports__responsible-gaming-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }
    .page-sports__live-betting-list {
        text-align: center;
        padding: 0;
    }
    .page-sports__list-icon {
        margin-right: 5px;
    }
    .page-sports__cta-bottom-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-sports__hero-content {
        max-width: 90%;
        padding: 15px;
    }
    .page-sports__hero-title {
        font-size: 2em;
    }
    .page-sports__hero-description {
        font-size: 1em;
    }
    .page-sports__hero-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-sports__features-section,
    .page-sports__sports-covered-section,
    .page-sports__promo-section,
    .page-sports__how-to-start-section,
    .page-sports__responsible-gaming-section,
    .page-sports__testimonials-section,
    .page-sports__faq-section,
    .page-sports__cta-bottom-section {
        padding: 60px 15px;
    }
    .page-sports__features-title,
    .page-sports__sports-covered-title,
    .page-sports__live-betting-title,
    .page-sports__promo-title,
    .page-sports__how-to-start-title,
    .page-sports__responsible-gaming-title,
    .page-sports__testimonials-title,
    .page-sports__faq-title,
    .page-sports__cta-bottom-title {
        font-size: 2em;
    }
    .page-sports__sports-covered-intro,
    .page-sports__promo-intro,
    .page-sports__cta-bottom-description {
        font-size: 1em;
    }
    .page-sports__feature-card,
    .page-sports__sport-card,
    .page-sports__promo-card,
    .page-sports__step-card,
    .page-sports__testimonial-card {
        min-height: auto;
    }
    .page-sports__live-betting-image,
    .page-sports__responsible-gaming-image,
    .page-sports__feature-icon,
    .page-sports__sport-image,
    .page-sports__promo-image {
        max-width: 100%;
        height: auto; /* Ensure images don't overflow */
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px;
    }
    .page-sports__live-betting-text,
    .page-sports__responsible-gaming-text {
        font-size: 1em;
    }
    .page-sports__faq-question,
    .page-sports__faq-answer {
        padding: 15px 20px;
    }
    .page-sports__cta-bottom-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-sports__hero-title {
        font-size: 1.8em;
    }
    .page-sports__hero-description {
        font-size: 0.9em;
    }
    .page-sports__features-grid,
    .page-sports__sports-grid,
    .page-sports__promo-grid,
    .page-sports__steps-grid,
    .page-sports__testimonials-grid {
        grid-template-columns: 1fr;
    }
    .page-sports__features-title,
    .page-sports__sports-covered-title,
    .page-sports__live-betting-title,
    .page-sports__promo-title,
    .page-sports__how-to-start-title,
    .page-sports__responsible-gaming-title,
    .page-sports__testimonials-title,
    .page-sports__faq-title,
    .page-sports__cta-bottom-title {
        font-size: 1.8em;
    }
    .page-sports__step-number {
        font-size: 2.5em;
    }
}