/* style/games-fabet-sports-betting-details.css */

:root {
    --fabet-primary-color: #0A2342;
    --fabet-accent-color: #FFD700;
    --fabet-text-light: #F8F8F8;
    --fabet-text-dark: #1A1A1A;
    --fabet-background-light: #E0E0E0;
    --fabet-background-dark: #07192F;
    --fabet-button-hover: #E6C200;
}

/* Base styles for the page content */
.page-games-fabet-sports-betting-details {
    font-family: 'Arial', sans-serif;
    color: var(--fabet-text-dark);
    line-height: 1.6;
    background-color: var(--fabet-background-light);
}

.page-games-fabet-sports-betting-details__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-games-fabet-sports-betting-details__section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) {
    background-color: var(--fabet-background-dark);
    color: var(--fabet-text-light);
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) h2,
.page-games-fabet-sports-betting-details__section:nth-of-type(even) h3 {
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__section-title {
    font-size: 2.8em;
    color: var(--fabet-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) .page-games-fabet-sports-betting-details__section-title {
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__section-subtitle {
    font-size: 1.3em;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) .page-games-fabet-sports-betting-details__section-subtitle {
    color: var(--fabet-text-light);
}

.page-games-fabet-sports-betting-details__main-cta,
.page-games-fabet-sports-betting-details__hero-cta,
.page-games-fabet-sports-betting-details__promo-cta,
.page-games-fabet-sports-betting-details__link-button {
    display: inline-block;
    background-color: var(--fabet-accent-color);
    color: var(--fabet-primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.page-games-fabet-sports-betting-details__main-cta:hover,
.page-games-fabet-sports-betting-details__hero-cta:hover,
.page-games-fabet-sports-betting-details__promo-cta:hover,
.page-games-fabet-sports-betting-details__link-button:hover {
    background-color: var(--fabet-button-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.page-games-fabet-sports-betting-details__hero {
    background: linear-gradient(135deg, var(--fabet-primary-color) 0%, #1a3a5a 100%);
    color: var(--fabet-text-light);
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    min-height: 500px;
}

.page-games-fabet-sports-betting-details__hero-content {
    max-width: 600px;
    text-align: left;
}

.page-games-fabet-sports-betting-details__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-games-fabet-sports-betting-details__hero-image-wrapper {
    flex-shrink: 0;
    max-width: 500px;
}

.page-games-fabet-sports-betting-details__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Content Grid */
.page-games-fabet-sports-betting-details__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.page-games-fabet-sports-betting-details__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-games-fabet-sports-betting-details__text-content {
    flex: 1;
    min-width: 300px;
}

.page-games-fabet-sports-betting-details__text-content h3 {
    font-size: 1.8em;
    color: var(--fabet-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) .page-games-fabet-sports-betting-details__text-content h3 {
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__text-content p {
    margin-bottom: 15px;
}

.page-games-fabet-sports-betting-details__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-games-fabet-sports-betting-details__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sports Types Section */
.page-games-fabet-sports-betting-details__grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-fabet-sports-betting-details__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) .page-games-fabet-sports-betting-details__card {
    background-color: var(--fabet-background-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--fabet-text-light);
}

.page-games-fabet-sports-betting-details__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-games-fabet-sports-betting-details__card-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-fabet-sports-betting-details__card-title {
    font-size: 1.5em;
    color: var(--fabet-primary-color);
    margin-bottom: 15px;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) .page-games-fabet-sports-betting-details__card-title {
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Features Section */
.page-games-fabet-sports-betting-details__features .page-games-fabet-sports-betting-details__grid-2-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.page-games-fabet-sports-betting-details__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) .page-games-fabet-sports-betting-details__feature-item {
    background-color: var(--fabet-primary-color);
    color: var(--fabet-text-light);
}

.page-games-fabet-sports-betting-details__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-games-fabet-sports-betting-details__feature-title {
    font-size: 1.6em;
    color: var(--fabet-primary-color);
    margin-bottom: 10px;
}

.page-games-fabet-sports-betting-details__section:nth-of-type(even) .page-games-fabet-sports-betting-details__feature-title {
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__image-wrapper--full-width {
    margin-top: 40px;
}

/* Promotions Section */
.page-games-fabet-sports-betting-details__promotions {
    background-color: var(--fabet-background-dark);
    color: var(--fabet-text-light);
}

.page-games-fabet-sports-betting-details__promotions .page-games-fabet-sports-betting-details__section-title {
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__promotions .page-games-fabet-sports-betting-details__section-subtitle {
    color: var(--fabet-text-light);
}

.page-games-fabet-sports-betting-details__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-games-fabet-sports-betting-details__promo-item {
    background-color: var(--fabet-primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-games-fabet-sports-betting-details__promo-item:hover {
    transform: translateY(-10px);
}

.page-games-fabet-sports-betting-details__promo-image {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-games-fabet-sports-betting-details__promo-item h3 {
    font-size: 1.6em;
    color: var(--fabet-accent-color);
    margin-bottom: 15px;
}

.page-games-fabet-sports-betting-details__promo-item p {
    color: var(--fabet-text-light);
    margin-bottom: 25px;
}

/* Tips Section */
.page-games-fabet-sports-betting-details__tips .page-games-fabet-sports-betting-details__tip-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-games-fabet-sports-betting-details__tips .page-games-fabet-sports-betting-details__tip-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-left: 5px solid var(--fabet-accent-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: var(--fabet-text-dark);
}

.page-games-fabet-sports-betting-details__tips .page-games-fabet-sports-betting-details__tip-list li strong {
    color: var(--fabet-primary-color);
}

/* FAQ Section */
.page-games-fabet-sports-betting-details__faq {
    background-color: var(--fabet-background-dark);
    color: var(--fabet-text-light);
}

.page-games-fabet-sports-betting-details__faq .page-games-fabet-sports-betting-details__section-title {
    color: var(--fabet-accent-color);
}

.page-games-fabet-sports-betting-details__faq-item {
    background-color: var(--fabet-primary-color);
    margin-bottom: 20px;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-games-fabet-sports-betting-details__faq-question {
    font-size: 1.5em;
    color: var(--fabet-accent-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-games-fabet-sports-betting-details__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-games-fabet-sports-betting-details__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-games-fabet-sports-betting-details__faq-answer {
    font-size: 1.1em;
    color: var(--fabet-text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    padding-top: 0;
}

.page-games-fabet-sports-betting-details__faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-games-fabet-sports-betting-details__faq-item .page-games-fabet-sports-betting-details__link-button {
    margin-top: 15px;
    background-color: var(--fabet-accent-color);
    color: var(--fabet-primary-color);
}

.page-games-fabet-sports-betting-details__faq-item .page-games-fabet-sports-betting-details__link-button:hover {
    background-color: var(--fabet-button-hover);
}

/* Conclusion Section */
.page-games-fabet-sports-betting-details__conclusion {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-games-fabet-sports-betting-details__conclusion p {
    font-size: 1.2em;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-games-fabet-sports-betting-details__conclusion a {
    color: var(--fabet-primary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-games-fabet-sports-betting-details__conclusion a:hover {
    color: var(--fabet-accent-color);
}

/* Copyright */
.page-games-fabet-sports-betting-details__copyright {
    text-align: center;
    padding: 20px;
    background-color: var(--fabet-primary-color);
    color: var(--fabet-text-light);
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-games-fabet-sports-betting-details__hero {
        flex-direction: column;
        text-align: center;
    }

    .page-games-fabet-sports-betting-details__hero-content {
        text-align: center;
    }

    .page-games-fabet-sports-betting-details__hero-title {
        font-size: 2.8em;
    }

    .page-games-fabet-sports-betting-details__hero-description {
        font-size: 1.2em;
    }

    .page-games-fabet-sports-betting-details__content-grid {
        flex-direction: column;
    }

    .page-games-fabet-sports-betting-details__content-grid--reverse {
        flex-direction: column;
    }

    .page-games-fabet-sports-betting-details__features .page-games-fabet-sports-betting-details__grid-2-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-games-fabet-sports-betting-details__section-title {
        font-size: 2.2em;
    }

    .page-games-fabet-sports-betting-details__hero-title {
        font-size: 2.2em;
    }

    .page-games-fabet-sports-betting-details__hero-description {
        font-size: 1.1em;
    }

    .page-games-fabet-sports-betting-details__grid-3-col,
    .page-games-fabet-sports-betting-details__promo-grid {
        grid-template-columns: 1fr;
    }

    .page-games-fabet-sports-betting-details__card,
    .page-games-fabet-sports-betting-details__promo-item,
    .page-games-fabet-sports-betting-details__feature-item,
    .page-games-fabet-sports-betting-details__faq-item {
        padding: 20px;
    }

    .page-games-fabet-sports-betting-details__main-cta,
    .page-games-fabet-sports-betting-details__hero-cta,
    .page-games-fabet-sports-betting-details__promo-cta,
    .page-games-fabet-sports-betting-details__link-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-games-fabet-sports-betting-details__hero {
        padding: 60px 15px;
    }

    .page-games-fabet-sports-betting-details__section {
        padding: 40px 0;
    }
}