/* style/blog-how-to-choose-betting-platform-5mb-security.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-blog-how-to-choose-betting-platform-5mb-security {
    background-color: var(--background-color);
    color: var(--text-main);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-blog-how-to-choose-betting-platform-5mb-security__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-how-to-choose-betting-platform-5mb-security__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-blog-how-to-choose-betting-platform-5mb-security__hero-image-wrapper {
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}

.page-blog-how-to-choose-betting-platform-5mb-security__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Subtle darkening for text contrast */
}

.page-blog-how-to-choose-betting-platform-5mb-security__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 800px;
    width: 90%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text readability */
    border-radius: 10px;
}

.page-blog-how-to-choose-betting-platform-5mb-security__hero-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-how-to-choose-betting-platform-5mb-security__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-how-to-choose-betting-platform-5mb-security__btn-primary,
.page-blog-how-to-choose-betting-platform-5mb-security__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
}

.page-blog-how-to-choose-betting-platform-5mb-security__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-betting-platform-5mb-security__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-betting-platform-5mb-security__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin: 10px;
}

.page-blog-how-to-choose-betting-platform-5mb-security__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-blog-how-to-choose-betting-platform-5mb-security__section-title {
    font-size: 2.5em;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    padding-top: 40px;
}

.page-blog-how-to-choose-betting-platform-5mb-security__text-block {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-blog-how-to-choose-betting-platform-5mb-security__introduction-section,
.page-blog-how-to-choose-betting-platform-5mb-security__criteria-section,
.page-blog-how-to-choose-betting-platform-5mb-security__why-5mb-section,
.page-blog-how-to-choose-betting-platform-5mb-security__registration-guide-section,
.page-blog-how-to-choose-betting-platform-5mb-security__promotions-section,
.page-blog-how-to-choose-betting-platform-5mb-security__faq-section,
.page-blog-how-to-choose-betting-platform-5mb-security__conclusion-section {
    padding: 60px 0;
}

.page-blog-how-to-choose-betting-platform-5mb-security__highlight {
    color: var(--gold-color);
    font-weight: bold;
}

.page-blog-how-to-choose-betting-platform-5mb-security__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-blog-how-to-choose-betting-platform-5mb-security__card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.page-blog-how-to-choose-betting-platform-5mb-security__card:hover {
    transform: translateY(-5px);
}

.page-blog-how-to-choose-betting-platform-5mb-security__card-image {
    width: 100%;
    max-width: 400px; /* Ensure images are not too small */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-blog-how-to-choose-betting-platform-5mb-security__card-title {
    font-size: 1.8em;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-how-to-choose-betting-platform-5mb-security__card-text {
    font-size: 1em;
    color: var(--text-secondary);
    text-align: justify;
}

.page-blog-how-to-choose-betting-platform-5mb-security__feature-list,
.page-blog-how-to-choose-betting-platform-5mb-security__promo-list,
.page-blog-how-to-choose-betting-platform-5mb-security__step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-blog-how-to-choose-betting-platform-5mb-security__feature-item,
.page-blog-how-to-choose-betting-platform-5mb-security__promo-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-blog-how-to-choose-betting-platform-5mb-security__feature-title,
.page-blog-how-to-choose-betting-platform-5mb-security__promo-title {
    font-size: 1.6em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-how-to-choose-betting-platform-5mb-security__feature-text,
.page-blog-how-to-choose-betting-platform-5mb-security__promo-text {
    font-size: 1em;
    color: var(--text-secondary);
    text-align: justify;
}

.page-blog-how-to-choose-betting-platform-5mb-security__promo-image {
    width: 100%;
    max-width: 600px; /* Ensure images are not too small */
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.page-blog-how-to-choose-betting-platform-5mb-security__step-item {
    background-color: var(--card-bg);
    border-left: 5px solid var(--primary-color);
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-choose-betting-platform-5mb-security__step-title {
    font-size: 1.5em;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-blog-how-to-choose-betting-platform-5mb-security__step-text {
    font-size: 1em;
    color: var(--text-secondary);
    text-align: justify;
}

.page-blog-how-to-choose-betting-platform-5mb-security__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-blog-how-to-choose-betting-platform-5mb-security__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-choose-betting-platform-5mb-security__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-blog-how-to-choose-betting-platform-5mb-security__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    background-color: var(--deep-green);
    border-bottom: 1px solid var(--border-color);
    list-style: none; /* For details/summary */
}

.page-blog-how-to-choose-betting-platform-5mb-security__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-how-to-choose-betting-platform-5mb-security__faq-qtext {
    flex-grow: 1;
}

.page-blog-how-to-choose-betting-platform-5mb-security__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-blog-how-to-choose-betting-platform-5mb-security__faq-answer {
    padding: 20px;
    font-size: 1em;
    color: var(--text-secondary);
    text-align: justify;
    background-color: var(--card-bg);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-how-to-choose-betting-platform-5mb-security__hero-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-blog-how-to-choose-betting-platform-5mb-security {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__hero-section {
        padding-bottom: 40px;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__hero-content {
        width: 95%;
        padding: 15px;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__hero-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__hero-description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__btn-primary,
    .page-blog-how-to-choose-betting-platform-5mb-security__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 5px 0 !important;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__cta-wrapper {
        flex-direction: column;
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__text-block {
        font-size: 1em;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__grid {
        grid-template-columns: 1fr;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__card,
    .page-blog-how-to-choose-betting-platform-5mb-security__feature-item,
    .page-blog-how-to-choose-betting-platform-5mb-security__promo-item,
    .page-blog-how-to-choose-betting-platform-5mb-security__step-item,
    .page-blog-how-to-choose-betting-platform-5mb-security__faq-item {
        padding: 20px;
        margin-bottom: 15px;
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__card-image,
    .page-blog-how-to-choose-betting-platform-5mb-security__promo-image,
    .page-blog-how-to-choose-betting-platform-5mb-security img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .page-blog-how-to-choose-betting-platform-5mb-security__container {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }

    .page-blog-how-to-choose-betting-platform-5mb-security__faq-answer {
        padding: 15px;
    }
}