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

:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-blog-how-to-identify-reliable-betting-platforms {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Default text color for dark background */
    background-color: var(--color-background); /* Overall page background */
}

.page-blog-how-to-identify-reliable-betting-platforms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

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

.page-blog-how-to-identify-reliable-betting-platforms__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
}

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

.page-blog-how-to-identify-reliable-betting-platforms__hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--color-text-main);
}

.page-blog-how-to-identify-reliable-betting-platforms__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-how-to-identify-reliable-betting-platforms__hero-description {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
}

.page-blog-how-to-identify-reliable-betting-platforms__btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-how-to-identify-reliable-betting-platforms__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-how-to-identify-reliable-betting-platforms__btn-secondary {
    display: inline-block;
    background: var(--color-card-bg);
    color: var(--color-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color-border);
    cursor: pointer;
}

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

.page-blog-how-to-identify-reliable-betting-platforms__content-section {
    background-color: #ffffff; /* Light background for main content */
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

.page-blog-how-to-identify-reliable-betting-platforms__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 30px;
    text-align: center;
    color: var(--color-deep-green);
    font-weight: bold;
}

.page-blog-how-to-identify-reliable-betting-platforms__content-section p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-blog-how-to-identify-reliable-betting-platforms__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-how-to-identify-reliable-betting-platforms__feature-card {
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-identify-reliable-betting-platforms__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-identify-reliable-betting-platforms__feature-icon {
    width: 100%;
    height: auto;
    max-width: 400px; /* Ensure content images are not tiny */
    max-height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-blog-how-to-identify-reliable-betting-platforms__feature-title {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-identify-reliable-betting-platforms__feature-description {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.page-blog-how-to-identify-reliable-betting-platforms__how-to-choose {
    background-color: var(--color-background);
    padding: 60px 0;
    color: var(--color-text-main);
}

.page-blog-how-to-identify-reliable-betting-platforms__ordered-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.page-blog-how-to-identify-reliable-betting-platforms__list-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--color-text-main);
    position: relative;
    padding-left: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-identify-reliable-betting-platforms__list-item::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-primary);
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-section {
    background-color: #ffffff; /* Light background for FAQ */
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-list {
    margin-top: 40px;
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-deep-green);
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    list-style: none; /* For details/summary */
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-qtext {
    flex-grow: 1;
    text-align: left;
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-item[open] .page-blog-how-to-identify-reliable-betting-platforms__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-how-to-identify-reliable-betting-platforms__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    background-color: #f9f9f9;
}

.page-blog-how-to-identify-reliable-betting-platforms__cta-section {
    background-color: var(--color-background);
    padding: 60px 0;
    text-align: center;
    color: var(--color-text-main);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-identify-reliable-betting-platforms__hero-section {
        padding: 40px 0;
    }
    .page-blog-how-to-identify-reliable-betting-platforms__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-how-to-identify-reliable-betting-platforms__hero-description {
        font-size: 1rem;
    }
    .page-blog-how-to-identify-reliable-betting-platforms__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
    .page-blog-how-to-identify-reliable-betting-platforms__feature-grid {
        gap: 20px;
    }
}

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

    .page-blog-how-to-identify-reliable-betting-platforms__hero-section,
    .page-blog-how-to-identify-reliable-betting-platforms__content-section,
    .page-blog-how-to-identify-reliable-betting-platforms__how-to-choose,
    .page-blog-how-to-identify-reliable-betting-platforms__faq-section,
    .page-blog-how-to-identify-reliable-betting-platforms__cta-section {
        padding: 30px 0;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__container {
        padding: 0 15px;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-blog-how-to-identify-reliable-betting-platforms__hero-description {
        font-size: 0.95rem;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__btn-primary,
    .page-blog-how-to-identify-reliable-betting-platforms__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-blog-how-to-identify-reliable-betting-platforms__feature-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__feature-card {
        padding: 25px;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__feature-title {
        font-size: 1.3rem;
    }

    .page-blog-how-to-identify-reliable-betting-platforms__list-item {
        font-size: 1rem;
        padding: 15px 20px 15px 45px;
    }

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

    .page-blog-how-to-identify-reliable-betting-platforms__faq-answer {
        padding: 15px 20px;
    }
    
    /* Ensure all content containers are responsive */
    .page-blog-how-to-identify-reliable-betting-platforms__hero-section,
    .page-blog-how-to-identify-reliable-betting-platforms__content-section,
    .page-blog-how-to-identify-reliable-betting-platforms__how-to-choose,
    .page-blog-how-to-identify-reliable-betting-platforms__faq-section,
    .page-blog-how-to-identify-reliable-betting-platforms__cta-section,
    .page-blog-how-to-identify-reliable-betting-platforms__hero-content,
    .page-blog-how-to-identify-reliable-betting-platforms__feature-grid,
    .page-blog-how-to-identify-reliable-betting-platforms__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-blog-how-to-identify-reliable-betting-platforms__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    .page-blog-how-to-identify-reliable-betting-platforms img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .page-blog-how-to-identify-reliable-betting-platforms__feature-grid {
        grid-template-columns: 1fr;
    }
}