/* style/blog-fachai-sports-betting-guide.css */

/* Base styles for the page content, assuming body has a dark background from shared.css */
.page-blog-fachai-sports-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Main text color for dark background */
    background-color: #0A0A0A; /* Page background, consistent with custom color */
}

.page-blog-fachai-sports-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Hero Section */
.page-blog-fachai-sports-betting-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden;
    background-color: #0A0A0A; /* Ensures consistent dark background */
}

.page-blog-fachai-sports-betting-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.page-blog-fachai-sports-betting-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-fachai-sports-betting-guide__hero-content {
    position: relative; /* Ensure content is above the dimmed image if they overlap, but here they are stacked */
    text-align: center;
    padding: 40px 20px 0;
    z-index: 1;
    max-width: 900px;
    margin-top: -150px; /* Pull content up over the image for a cohesive look */
}

.page-blog-fachai-sports-betting-guide__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    color: #FFD36B; /* Glow color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.6);
}

.page-blog-fachai-sports-betting-guide__description {
    font-size: 1.2rem;
    color: #FFF6D6; /* Main text color */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.page-blog-fachai-sports-betting-guide__section {
    padding: 60px 0;
    background-color: #0A0A0A; /* Consistent dark background */
}

.page-blog-fachai-sports-betting-guide__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-fachai-sports-betting-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD36B; /* Glow color for underline */
    border-radius: 2px;
}

.page-blog-fachai-sports-betting-guide__section-title--center {
    text-align: center;
}

.page-blog-fachai-sports-betting-guide__sub-title {
    font-size: 1.8rem;
    color: #FFD36B; /* Secondary color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-blog-fachai-sports-betting-guide__text-block p {
    margin-bottom: 15px;
    color: #FFF6D6; /* Main text color */
}

.page-blog-fachai-sports-betting-guide__text-link {
    color: #FFD36B; /* Link color */
    text-decoration: underline;
}

.page-blog-fachai-sports-betting-guide__text-link:hover {
    color: #F2C14E; /* Primary color on hover */
}

/* Content Grid for text and image */
.page-blog-fachai-sports-betting-guide__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-blog-fachai-sports-betting-guide__content-grid--reverse {
    grid-template-areas: "image text"; /* Reverse order for alternating layout */
}

.page-blog-fachai-sports-betting-guide__content-grid--reverse .page-blog-fachai-sports-betting-guide__text-block {
    grid-area: text;
}

.page-blog-fachai-sports-betting-guide__content-grid--reverse .page-blog-fachai-sports-betting-guide__image-block {
    grid-area: image;
}

.page-blog-fachai-sports-betting-guide__image-block {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid #3A2A12; /* Border color */
}

.page-blog-fachai-sports-betting-guide__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Buttons */
.page-blog-fachai-sports-betting-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-blog-fachai-sports-betting-guide__cta-buttons--center {
    justify-content: center;
}

.page-blog-fachai-sports-betting-guide__btn-primary,
.page-blog-fachai-sports-betting-guide__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-fachai-sports-betting-guide__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
    color: #111111; /* Dark text for gradient button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-fachai-sports-betting-guide__btn-primary:hover {
    background: linear-gradient(180deg, #FFE08A 0%, #E6AE2D 100%);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-fachai-sports-betting-guide__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Primary color for text */
    border: 2px solid #F2C14E; /* Primary color for border */
}

.page-blog-fachai-sports-betting-guide__btn-secondary:hover {
    background-color: #F2C14E;
    color: #111111; /* Dark text on hover */
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-fachai-sports-betting-guide__btn-secondary--small {
    padding: 10px 20px;
    min-width: unset;
    font-size: 0.9rem;
}

/* Feature List Cards */
.page-blog-fachai-sports-betting-guide__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-fachai-sports-betting-guide__card {
    background-color: #111111; /* Card BG color */
    color: #FFF6D6; /* Main text color */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12; /* Border color */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.page-blog-fachai-sports-betting-guide__card:hover {
    transform: translateY(-5px);
}

.page-blog-fachai-sports-betting-guide__card-title {
    font-size: 1.5rem;
    color: #FFD36B; /* Glow color for card titles */
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 211, 107, 0.3);
}

/* Responsible Gaming */
.page-blog-fachai-sports-betting-guide__responsible-gaming {
    background-color: #0A0A0A;
}

/* FAQ Section */
.page-blog-fachai-sports-betting-guide__faq-section {
    background-color: #0A0A0A;
    padding-bottom: 80px;
}

.page-blog-fachai-sports-betting-guide__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-fachai-sports-betting-guide__faq-item {
    background-color: #111111; /* Card BG color */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-fachai-sports-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #111111; /* Card BG color */
    color: #FFF6D6; /* Main text color */
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.page-blog-fachai-sports-betting-guide__faq-question:hover {
    background-color: rgba(242, 193, 78, 0.1); /* Subtle hover effect */
}

.page-blog-fachai-sports-betting-guide__faq-title {
    font-size: 1.1rem;
    color: #FFF6D6; /* Main text color */
    margin: 0;
}

.page-blog-fachai-sports-betting-guide__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD36B; /* Glow color */
    transition: transform 0.3s ease;
}

.page-blog-fachai-sports-betting-guide__faq-item.active .page-blog-fachai-sports-betting-guide__faq-toggle {
    transform: rotate(45deg); /* Plus to X (or rotate to minus symbol) */
    content: '−'; /* Change to minus symbol */
}

.page-blog-fachai-sports-betting-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #FFF6D6; /* Main text color */
}

.page-blog-fachai-sports-betting-guide__faq-item.active .page-blog-fachai-sports-betting-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large for content */
    padding: 15px 20px 20px; /* Expanded padding */
}

.page-blog-fachai-sports-betting-guide__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-fachai-sports-betting-guide__conclusion {
    padding: 80px 0;
    text-align: center;
}

.page-blog-fachai-sports-betting-guide__conclusion .page-blog-fachai-sports-betting-guide__container {
    background-color: #111111; /* Card BG color for this section */
    padding: 60px 40px;
    border-radius: 15px;
    border: 1px solid #3A2A12; /* Border color */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-blog-fachai-sports-betting-guide__conclusion p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #FFF6D6; /* Main text color */
}

.page-blog-fachai-sports-betting-guide__text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-fachai-sports-betting-guide__hero-content {
        margin-top: -100px;
    }
    .page-blog-fachai-sports-betting-guide__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-blog-fachai-sports-betting-guide__description {
        font-size: 1.1rem;
    }
    .page-blog-fachai-sports-betting-guide__section-title {
        font-size: 2rem;
    }
    .page-blog-fachai-sports-betting-guide__sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-blog-fachai-sports-betting-guide__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-fachai-sports-betting-guide__hero-content {
        margin-top: -80px; /* Adjust for smaller screens */
        padding: 20px 15px 0;
    }
    .page-blog-fachai-sports-betting-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-fachai-sports-betting-guide__description {
        font-size: 1rem;
    }

    .page-blog-fachai-sports-betting-guide__section {
        padding: 40px 0;
    }
    .page-blog-fachai-sports-betting-guide__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-fachai-sports-betting-guide__sub-title {
        font-size: 1.4rem;
    }

    .page-blog-fachai-sports-betting-guide__content-grid {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        gap: 30px;
    }
    .page-blog-fachai-sports-betting-guide__content-grid--reverse {
        grid-template-areas: unset; /* Reset grid area for stacking */
    }

    /* Images responsiveness */
    .page-blog-fachai-sports-betting-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-blog-fachai-sports-betting-guide__section,
    .page-blog-fachai-sports-betting-guide__card,
    .page-blog-fachai-sports-betting-guide__container,
    .page-blog-fachai-sports-betting-guide__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsiveness */
    .page-blog-fachai-sports-betting-guide__cta-buttons {
        flex-direction: column; /* Stack buttons on mobile */
        gap: 15px;
        padding: 0 15px; /* Add padding to button container */
    }
    .page-blog-fachai-sports-betting-guide__btn-primary,
    .page-blog-fachai-sports-betting-guide__btn-secondary,
    .page-blog-fachai-sports-betting-guide a[class*="button"],
    .page-blog-fachai-sports-betting-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        min-width: unset; /* Remove min-width for full flexibility */
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-blog-fachai-sports-betting-guide__cta-buttons--center {
        align-items: center;
    }

    .page-blog-fachai-sports-betting-guide__feature-list {
        grid-template-columns: 1fr; /* Stack feature cards */
    }

    .page-blog-fachai-sports-betting-guide__faq-item.active .page-blog-fachai-sports-betting-guide__faq-answer {
        padding: 10px 15px 15px; /* Adjust padding for mobile */
    }

    .page-blog-fachai-sports-betting-guide__conclusion .page-blog-fachai-sports-betting-guide__container {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .page-blog-fachai-sports-betting-guide__hero-content {
        margin-top: -60px;
    }
    .page-blog-fachai-sports-betting-guide__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-blog-fachai-sports-betting-guide__section-title {
        font-size: 1.5rem;
    }
    .page-blog-fachai-sports-betting-guide__sub-title {
        font-size: 1.2rem;
    }
    .page-blog-fachai-sports-betting-guide__btn-primary,
    .page-blog-fachai-sports-betting-guide__btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}