/* style/blog-how-to-identify-fake-betting-platforms.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-dark: #000000; /* Assuming --black-color from shared.css is #000000 or similar dark */
    --login-button-color: #EA7C07;
}

/* Base styles for the page content */
.page-blog-how-to-identify-fake-betting-platforms {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default to dark text on light background for main content */
    background-color: var(--background-light); /* Default to light background for main content */
}

/* Ensure body padding-top is handled by shared.css */

.page-blog-how-to-identify-fake-betting-platforms__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: var(--primary-color);
    color: var(--text-light);
    overflow: hidden;
}

.page-blog-how-to-identify-fake-betting-platforms__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-fake-betting-platforms__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-identify-fake-betting-platforms__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.page-blog-how-to-identify-fake-betting-platforms__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    /* No fixed large font-size, rely on clamp for responsiveness if needed */
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.page-blog-how-to-identify-fake-betting-platforms__intro-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-how-to-identify-fake-betting-platforms__btn-primary,
.page-blog-how-to-identify-fake-betting-platforms__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-how-to-identify-fake-betting-platforms__btn-primary {
    background-color: var(--login-button-color); /* Use custom login color */
    color: var(--text-light);
    border: 2px solid var(--login-button-color);
    margin: 0 10px;
}

.page-blog-how-to-identify-fake-betting-platforms__btn-primary:hover {
    background-color: darken(var(--login-button-color), 10%);
    border-color: darken(var(--login-button-color), 10%);
}

.page-blog-how-to-identify-fake-betting-platforms__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin: 0 10px;
}

.page-blog-how-to-identify-fake-betting-platforms__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.page-blog-how-to-identify-fake-betting-platforms__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-blog-how-to-identify-fake-betting-platforms__container {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-how-to-identify-fake-betting-platforms__section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-blog-how-to-identify-fake-betting-platforms__section-title--light {
    color: var(--text-light);
}

.page-blog-how-to-identify-fake-betting-platforms__paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: justify;
}

.page-blog-how-to-identify-fake-betting-platforms__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-blog-how-to-identify-fake-betting-platforms__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-blog-how-to-identify-fake-betting-platforms__ordered-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-bottom: 30px;
}

.page-blog-how-to-identify-fake-betting-platforms__list-item {
    background-color: var(--background-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.page-blog-how-to-identify-fake-betting-platforms__list-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-blog-how-to-identify-fake-betting-platforms__list-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

.page-blog-how-to-identify-fake-betting-platforms__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* FAQ Section */
.page-blog-how-to-identify-fake-betting-platforms__faq-section {
    background-color: var(--primary-color);
    padding: 60px 20px;
    color: var(--text-light);
}

.page-blog-how-to-identify-fake-betting-platforms__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-blog-how-to-identify-fake-betting-platforms__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-light);
}

.page-blog-how-to-identify-fake-betting-platforms__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* For details/summary */
    color: var(--text-light);
    transition: background-color 0.3s ease;
}

.page-blog-how-to-identify-fake-betting-platforms__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-blog-how-to-identify-fake-betting-platforms__faq-item[open] > .page-blog-how-to-identify-fake-betting-platforms__faq-question {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-blog-how-to-identify-fake-betting-platforms__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
}

.page-blog-how-to-identify-fake-betting-platforms__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--secondary-color);
}

/* Hide default details marker */
.page-blog-how-to-identify-fake-betting-platforms__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog-how-to-identify-fake-betting-platforms__faq-item summary::marker {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-how-to-identify-fake-betting-platforms {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-identify-fake-betting-platforms__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }

    .page-blog-how-to-identify-fake-betting-platforms__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-how-to-identify-fake-betting-platforms__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-how-to-identify-fake-betting-platforms__btn-primary,
    .page-blog-how-to-identify-fake-betting-platforms__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        margin: 10px 0 !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-how-to-identify-fake-betting-platforms__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-blog-how-to-identify-fake-betting-platforms__content-area,
    .page-blog-how-to-identify-fake-betting-platforms__faq-section {
        padding: 20px 15px;
    }

    .page-blog-how-to-identify-fake-betting-platforms__container {
        padding: 0;
    }

    .page-blog-how-to-identify-fake-betting-platforms__section-title {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-how-to-identify-fake-betting-platforms__paragraph,
    .page-blog-how-to-identify-fake-betting-platforms__list-description,
    .page-blog-how-to-identify-fake-betting-platforms__faq-answer p {
        font-size: 0.95rem;
    }

    .page-blog-how-to-identify-fake-betting-platforms__list-item {
        padding: 15px;
    }

    .page-blog-how-to-identify-fake-betting-platforms__list-title {
        font-size: 1.15rem;
    }

    .page-blog-how-to-identify-fake-betting-platforms__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    /* Images and Videos responsive */
    .page-blog-how-to-identify-fake-betting-platforms img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .page-blog-how-to-identify-fake-betting-platforms__section,
    .page-blog-how-to-identify-fake-betting-platforms__card,
    .page-blog-how-to-identify-fake-betting-platforms__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }
}