/* style/resources-fa-bet-sports-betting-tips.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark-body: #0a0a0a;
    --login-button-color: #EA7C07;
}

.page-resources-fa-bet-sports-betting-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark-body);
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-fa-bet-sports-betting-tips__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-fa-bet-sports-betting-tips__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-fa-bet-sports-betting-tips__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-resources-fa-bet-sports-betting-tips__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: var(--text-light);
}

/* Hero Section */
.page-resources-fa-bet-sports-betting-tips__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0; /* padding-top handled by main element */
}

.page-resources-fa-bet-sports-betting-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-fa-bet-sports-betting-tips__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-fa-bet-sports-betting-tips__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-resources-fa-bet-sports-betting-tips__hero-title {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-resources-fa-bet-sports-betting-tips__hero-description {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.page-resources-fa-bet-sports-betting-tips__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-fa-bet-sports-betting-tips__cta-buttons--centered {
    margin-top: 40px;
}

.page-resources-fa-bet-sports-betting-tips__btn-primary,
.page-resources-fa-bet-sports-betting-tips__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-fa-bet-sports-betting-tips__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-fa-bet-sports-betting-tips__btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

.page-resources-fa-bet-sports-betting-tips__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-fa-bet-sports-betting-tips__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Introduction Section */
.page-resources-fa-bet-sports-betting-tips__introduction-section,
.page-resources-fa-bet-sports-betting-tips__strategy-section,
.page-resources-fa-bet-sports-betting-tips__mistakes-section,
.page-resources-fa-bet-sports-betting-tips__faq-section {
    padding: 80px 0;
    background-color: var(--bg-dark-body);
    color: var(--text-light);
}

/* Betting Types Section */
.page-resources-fa-bet-sports-betting-tips__betting-types-section,
.page-resources-fa-bet-sports-betting-tips__registration-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
    color: var(--text-light);
}

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

.page-resources-fa-bet-sports-betting-tips__card {
    background-color: rgba(255, 255, 255, 0.05); /* Semi-transparent white for dark background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.page-resources-fa-bet-sports-betting-tips__card:hover {
    transform: translateY(-5px);
}

.page-resources-fa-bet-sports-betting-tips__card-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-resources-fa-bet-sports-betting-tips__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 50px;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-fa-bet-sports-betting-tips__image-center {
    display: block;
    margin: 50px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

/* Strategy Section & Mistakes Section */
.page-resources-fa-bet-sports-betting-tips__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-resources-fa-bet-sports-betting-tips__list-item {
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: var(--text-light);
    border-left: 5px solid var(--primary-color);
}

.page-resources-fa-bet-sports-betting-tips__list-item strong {
    color: var(--primary-color);
}

/* Sport Specific Section */
.page-resources-fa-bet-sports-betting-tips__sport-specific-section {
    padding: 80px 0;
    background-color: var(--bg-dark-body);
    color: var(--text-light);
}

/* Registration Section */
.page-resources-fa-bet-sports-betting-tips__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resources-fa-bet-sports-betting-tips__step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: var(--text-light);
}

.page-resources-fa-bet-sports-betting-tips__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.page-resources-fa-bet-sports-betting-tips__step-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-resources-fa-bet-sports-betting-tips__step-card a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-resources-fa-bet-sports-betting-tips__faq-list {
    margin-top: 40px;
}

.page-resources-fa-bet-sports-betting-tips__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-resources-fa-bet-sports-betting-tips__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: background-color 0.3s ease;
}

.page-resources-fa-bet-sports-betting-tips__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-resources-fa-bet-sports-betting-tips__faq-title {
    margin: 0;
    font-size: 1.2em;
    color: var(--secondary-color);
}

.page-resources-fa-bet-sports-betting-tips__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.page-resources-fa-bet-sports-betting-tips__faq-item.active .page-resources-fa-bet-sports-betting-tips__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-fa-bet-sports-betting-tips__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-light);
}

.page-resources-fa-bet-sports-betting-tips__faq-item.active .page-resources-fa-bet-sports-betting-tips__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value */
    padding: 15px 25px 20px 25px;
}

.page-resources-fa-bet-sports-betting-tips__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-light);
}

/* Color Contrast Fixes (as per instructions) */
.page-resources-fa-bet-sports-betting-tips__dark-bg {
    color: var(--text-light); /* Deep dark background, use light text */
}

.page-resources-fa-bet-sports-betting-tips__light-bg {
    color: var(--text-light); /* Lighter dark background, still use light text */
}

.page-resources-fa-bet-sports-betting-tips__card.page-resources-fa-bet-sports-betting-tips__dark-bg.page-resources-fa-bet-sports-betting-tips__contrast-fix {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-fa-bet-sports-betting-tips__hero-title {
        font-size: 3em;
    }

    .page-resources-fa-bet-sports-betting-tips__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-resources-fa-bet-sports-betting-tips {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-resources-fa-bet-sports-betting-tips__hero-section {
        height: 450px;
    }

    .page-resources-fa-bet-sports-betting-tips__hero-title {
        font-size: 2.2em;
    }

    .page-resources-fa-bet-sports-betting-tips__hero-description {
        font-size: 1.1em;
    }

    .page-resources-fa-bet-sports-betting-tips__section-title {
        font-size: 1.8em;
    }

    .page-resources-fa-bet-sports-betting-tips__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .page-resources-fa-bet-sports-betting-tips__btn-primary,
    .page-resources-fa-bet-sports-betting-tips__btn-secondary,
    .page-resources-fa-bet-sports-betting-tips a[class*="button"],
    .page-resources-fa-bet-sports-betting-tips a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-resources-fa-bet-sports-betting-tips__grid,
    .page-resources-fa-bet-sports-betting-tips__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-resources-fa-bet-sports-betting-tips__card,
    .page-resources-fa-bet-sports-betting-tips__step-card {
        padding: 20px;
    }

    /* Mobile image responsiveness */
    .page-resources-fa-bet-sports-betting-tips img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-resources-fa-bet-sports-betting-tips__section,
    .page-resources-fa-bet-sports-betting-tips__card,
    .page-resources-fa-bet-sports-betting-tips__container,
    .page-resources-fa-bet-sports-betting-tips__hero-section,
    .page-resources-fa-bet-sports-betting-tips__introduction-section,
    .page-resources-fa-bet-sports-betting-tips__betting-types-section,
    .page-resources-fa-bet-sports-betting-tips__strategy-section,
    .page-resources-fa-bet-sports-betting-tips__sport-specific-section,
    .page-resources-fa-bet-sports-betting-tips__mistakes-section,
    .page-resources-fa-bet-sports-betting-tips__registration-section,
    .page-resources-fa-bet-sports-betting-tips__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .page-resources-fa-bet-sports-betting-tips__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure hero is not covered */
    }
    .page-resources-fa-bet-sports-betting-tips__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }

    .page-resources-fa-bet-sports-betting-tips__faq-answer {
        padding: 0 20px;
    }

    .page-resources-fa-bet-sports-betting-tips__faq-item.active .page-resources-fa-bet-sports-betting-tips__faq-answer {
        padding: 10px 20px 15px 20px;
    }
}