/* style/resources-fabet-sports-betting-guide.css */

:root {
    --fabet-primary-color: #0A2342;
    --fabet-secondary-color: #FFD700;
    --fabet-text-light: #FFFFFF;
    --fabet-text-dark: #333333;
    --fabet-background-light: #F8F8F8;
    --fabet-background-dark: #071A31;
    --fabet-accent-color: #FFD700;
}

.page-resources-fabet-sports-betting-guide {
    font-family: 'Arial', sans-serif;
    color: var(--fabet-text-dark);
    line-height: 1.6;
}

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

.page-resources-fabet-sports-betting-guide__section {
    padding: 60px 0;
    background-color: var(--fabet-background-light);
}

.page-resources-fabet-sports-betting-guide__section:nth-of-type(even) {
    background-color: #EDEDED; /* Slightly different light background */
}

.page-resources-fabet-sports-betting-guide__hero-section {
    background: linear-gradient(135deg, var(--fabet-primary-color), #2A4870);
    color: var(--fabet-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources-fabet-sports-betting-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:sports_stadium,abstract_lines,dynamic]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-resources-fabet-sports-betting-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--fabet-secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.page-resources-fabet-sports-betting-guide__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    color: var(--fabet-text-light);
}

.page-resources-fabet-sports-betting-guide__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-resources-fabet-sports-betting-guide__button--primary {
    background-color: var(--fabet-secondary-color);
    color: var(--fabet-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-fabet-sports-betting-guide__button--primary:hover {
    background-color: #E6C200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources-fabet-sports-betting-guide__button--secondary {
    background-color: var(--fabet-primary-color);
    color: var(--fabet-secondary-color);
    border: 2px solid var(--fabet-secondary-color);
    margin-left: 20px;
}

.page-resources-fabet-sports-betting-guide__button--secondary:hover {
    background-color: var(--fabet-secondary-color);
    color: var(--fabet-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-fabet-sports-betting-guide__button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-resources-fabet-sports-betting-guide__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources-fabet-sports-betting-guide__section-title {
    font-size: 2.5em;
    color: var(--fabet-primary-color);
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.page-resources-fabet-sports-betting-guide__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--fabet-secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-resources-fabet-sports-betting-guide__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--fabet-text-dark);
}

.page-resources-fabet-sports-betting-guide__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-resources-fabet-sports-betting-guide__text-content {
    flex: 1;
}

.page-resources-fabet-sports-betting-guide__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-resources-fabet-sports-betting-guide__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-fabet-sports-betting-guide__image--small {
    max-width: 70%;
    margin: 20px auto;
    display: block;
}

.page-resources-fabet-sports-betting-guide__image--large {
    max-width: 90%;
    margin: 30px auto;
    display: block;
}

.page-resources-fabet-sports-betting-guide__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-resources-fabet-sports-betting-guide__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--fabet-text-dark);
}

.page-resources-fabet-sports-betting-guide__list li::before {
    content: '✔';
    color: var(--fabet-secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.page-resources-fabet-sports-betting-guide__sport-card {
    background-color: var(--fabet-text-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-fabet-sports-betting-guide__sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-fabet-sports-betting-guide__sport-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.page-resources-fabet-sports-betting-guide__sport-title {
    font-size: 1.5em;
    color: var(--fabet-primary-color);
    margin-bottom: 10px;
}

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

.page-resources-fabet-sports-betting-guide__step-card {
    background-color: var(--fabet-text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-resources-fabet-sports-betting-guide__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--fabet-primary-color);
    color: var(--fabet-text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 3px solid var(--fabet-secondary-color);
}

.page-resources-fabet-sports-betting-guide__step-title {
    font-size: 1.4em;
    color: var(--fabet-primary-color);
    margin-bottom: 15px;
}

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

.page-resources-fabet-sports-betting-guide__odds-card {
    background-color: var(--fabet-primary-color);
    color: var(--fabet-text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-fabet-sports-betting-guide__odds-title {
    font-size: 1.5em;
    color: var(--fabet-secondary-color);
    margin-bottom: 15px;
}

.page-resources-fabet-sports-betting-guide__text-center {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
}

.page-resources-fabet-sports-betting-guide__link {
    color: var(--fabet-primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-resources-fabet-sports-betting-guide__link:hover {
    color: var(--fabet-secondary-color);
}

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

.page-resources-fabet-sports-betting-guide__tip-card {
    background-color: var(--fabet-text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.page-resources-fabet-sports-betting-guide__tip-card .page-resources-fabet-sports-betting-guide__button {
    margin-top: auto; /* Push button to bottom */
    align-self: flex-start; /* Align button to left */
}

.page-resources-fabet-sports-betting-guide__tip-title {
    font-size: 1.4em;
    color: var(--fabet-primary-color);
    margin-bottom: 15px;
}

.page-resources-fabet-sports-betting-guide__image-wrapper--full-width {
    grid-column: 1 / -1; /* Spans all columns */
    margin-top: 30px;
}

.page-resources-fabet-sports-betting-guide__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-resources-fabet-sports-betting-guide__container--flex-reverse {
    flex-direction: row-reverse;
}

.page-resources-fabet-sports-betting-guide__promo-content,
.page-resources-fabet-sports-betting-guide__mobile-content {
    flex: 1;
}

.page-resources-fabet-sports-betting-guide__promo-image-wrapper,
.page-resources-fabet-sports-betting-guide__mobile-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-resources-fabet-sports-betting-guide__faq-item {
    background-color: var(--fabet-text-light);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-fabet-sports-betting-guide__faq-question {
    font-size: 1.3em;
    color: var(--fabet-primary-color);
    margin-bottom: 10px;
}

.page-resources-fabet-sports-betting-guide__faq-answer {
    color: var(--fabet-text-dark);
}

.page-resources-fabet-sports-betting-guide__cta-section {
    background: var(--fabet-primary-color);
    color: var(--fabet-text-light);
    padding: 80px 0;
    text-align: center;
}

.page-resources-fabet-sports-betting-guide__cta-title {
    font-size: 2.8em;
    color: var(--fabet-secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-fabet-sports-betting-guide__cta-description {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--fabet-text-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-fabet-sports-betting-guide__hero-title {
        font-size: 2.8em;
    }

    .page-resources-fabet-sports-betting-guide__hero-subtitle {
        font-size: 1.3em;
    }

    .page-resources-fabet-sports-betting-guide__section-title {
        font-size: 2em;
    }

    .page-resources-fabet-sports-betting-guide__content-grid,
    .page-resources-fabet-sports-betting-guide__container--flex,
    .page-resources-fabet-sports-betting-guide__container--flex-reverse {
        flex-direction: column;
    }

    .page-resources-fabet-sports-betting-guide__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-resources-fabet-sports-betting-guide__image-wrapper,
    .page-resources-fabet-sports-betting-guide__promo-image-wrapper,
    .page-resources-fabet-sports-betting-guide__mobile-image-wrapper {
        margin-top: 40px;
    }

    .page-resources-fabet-sports-betting-guide__tips-grid,
    .page-resources-fabet-sports-betting-guide__guide-steps,
    .page-resources-fabet-sports-betting-guide__sports-grid,
    .page-resources-fabet-sports-betting-guide__odds-types {
        grid-template-columns: 1fr;
    }

    .page-resources-fabet-sports-betting-guide__image-wrapper--full-width {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .page-resources-fabet-sports-betting-guide__hero-section {
        padding: 80px 0;
    }

    .page-resources-fabet-sports-betting-guide__hero-title {
        font-size: 2.2em;
    }

    .page-resources-fabet-sports-betting-guide__hero-subtitle {
        font-size: 1.1em;
    }

    .page-resources-fabet-sports-betting-guide__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-resources-fabet-sports-betting-guide__section {
        padding: 40px 0;
    }

    .page-resources-fabet-sports-betting-guide__section-title {
        font-size: 1.8em;
    }

    .page-resources-fabet-sports-betting-guide__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .page-resources-fabet-sports-betting-guide__cta-title {
        font-size: 2em;
    }

    .page-resources-fabet-sports-betting-guide__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-resources-fabet-sports-betting-guide__hero-title {
        font-size: 1.8em;
    }

    .page-resources-fabet-sports-betting-guide__hero-subtitle {
        font-size: 0.9em;
    }

    .page-resources-fabet-sports-betting-guide__button {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
    }

    .page-resources-fabet-sports-betting-guide__cta-title {
        font-size: 1.6em;
    }
}