/* style/blog-thbbet-registration-faq.css */

/* Root variables for colors */
:root {
    --thbbet-primary: #11A84E;
    --thbbet-secondary: #22C768;
    --thbbet-card-bg: #11271B;
    --thbbet-background: #08160F;
    --thbbet-text-main: #F2FFF6;
    --thbbet-text-secondary: #A7D9B8;
    --thbbet-border: #2E7A4E;
    --thbbet-glow: #57E38D;
    --thbbet-gold: #F2C14E;
    --thbbet-divider: #1E3A2A;
    --thbbet-deep-green: #0A4B2C;
    --thbbet-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

/* Base styles for the page content */
.page-blog-thbbet-registration-faq {
    font-family: 'Arial', sans-serif;
    color: var(--thbbet-text-main); /* Default text color for dark backgrounds */
    background-color: var(--thbbet-background); /* Default background color */
    line-height: 1.6;
}

/* Sections with dark background */
.page-blog-thbbet-registration-faq__dark-bg {
    background-color: var(--thbbet-background);
    color: var(--thbbet-text-main);
}

/* Sections with light background (for contrast) */
.page-blog-thbbet-registration-faq__light-bg {
    background-color: #f8f8f8; /* A very light background to contrast with dark-bg */
    color: #333333; /* Dark text for light background */
}

.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__section-title,
.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__text-block,
.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__issue-title,
.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__issue-description,
.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__faq-qtext,
.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__faq-answer {
    color: #333333; /* Ensure dark text on light background */
}

.page-blog-thbbet-registration-faq__light-bg a {
    color: var(--thbbet-primary); /* Links in light sections */
}

.page-blog-thbbet-registration-faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-blog-thbbet-registration-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    overflow: hidden;
    background-color: var(--thbbet-background);
    color: var(--thbbet-text-main);
}

.page-blog-thbbet-registration-faq__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height of the hero image wrapper */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-thbbet-registration-faq__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-thbbet-registration-faq__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-blog-thbbet-registration-faq__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--thbbet-text-main);
    line-height: 1.2;
}

.page-blog-thbbet-registration-faq__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--thbbet-text-secondary);
}

/* Section Titles */
.page-blog-thbbet-registration-faq__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    color: var(--thbbet-text-main); /* Default for dark sections */
}

.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__section-title {
    color: #333333; /* For light sections */
}

/* Text Blocks */
.page-blog-thbbet-registration-faq__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--thbbet-text-secondary);
}

.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__text-block {
    color: #555555;
}

/* Buttons */
.page-blog-thbbet-registration-faq__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: var(--thbbet-button-gradient);
    color: #ffffff;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-thbbet-registration-faq__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-blog-thbbet-registration-faq__btn-full-width {
    width: 100%;
    max-width: 400px; /* Limit width even if full-width */
    margin: 30px auto 0 auto;
    display: block;
    text-align: center;
}

/* Lists */
.page-blog-thbbet-registration-faq__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--thbbet-text-secondary);
}

.page-blog-thbbet-registration-faq__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-blog-thbbet-registration-faq__light-bg .page-blog-thbbet-registration-faq__list li {
    color: #555555;
}

/* Image Content */
.page-blog-thbbet-registration-faq__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

/* Registration Guide Section */
.page-blog-thbbet-registration-faq__registration-guide {
    padding-bottom: 60px;
}

.page-blog-thbbet-registration-faq__step-item {
    background-color: var(--thbbet-card-bg);
    border: 1px solid var(--thbbet-border);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-blog-thbbet-registration-faq__step-title {
    font-size: 1.5em;
    color: var(--thbbet-primary);
    margin-bottom: 15px;
}

.page-blog-thbbet-registration-faq__step-description {
    font-size: 1.05em;
    color: var(--thbbet-text-secondary);
}

/* Common Issues Section */
.page-blog-thbbet-registration-faq__common-issues {
    padding-bottom: 60px;
}

.page-blog-thbbet-registration-faq__issue-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    color: #333333;
}

.page-blog-thbbet-registration-faq__issue-title {
    font-size: 1.4em;
    color: var(--thbbet-deep-green);
    margin-bottom: 10px;
}

.page-blog-thbbet-registration-faq__issue-description {
    font-size: 1em;
    color: #555555;
}

/* Promotions Section */
.page-blog-thbbet-registration-faq__promotions {
    padding-bottom: 60px;
}

.page-blog-thbbet-registration-faq__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-thbbet-registration-faq__promo-card {
    background-color: var(--thbbet-card-bg);
    border: 1px solid var(--thbbet-border);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-blog-thbbet-registration-faq__promo-title {
    font-size: 1.3em;
    color: var(--thbbet-primary);
    margin-bottom: 10px;
}

.page-blog-thbbet-registration-faq__promo-description {
    font-size: 1em;
    color: var(--thbbet-text-secondary);
}

/* Mobile App Section */
.page-blog-thbbet-registration-faq__mobile-app {
    padding-bottom: 60px;
}

.page-blog-thbbet-registration-faq__mobile-app-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-blog-thbbet-registration-faq__mobile-text {
    flex: 1;
    min-width: 300px;
}

.page-blog-thbbet-registration-faq__mobile-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

/* Security and Responsible Gaming Section */
.page-blog-thbbet-registration-faq__security-responsible {
    padding-bottom: 60px;
}

/* FAQ Section */
.page-blog-thbbet-registration-faq__faq-section {
    padding-bottom: 60px;
}

.page-blog-thbbet-registration-faq__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-blog-thbbet-registration-faq__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    color: var(--thbbet-deep-green);
    outline: none;
    list-style: none; /* Remove default marker */
}

.page-blog-thbbet-registration-faq__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

.page-blog-thbbet-registration-faq__faq-qtext {
    flex-grow: 1;
    color: #333333;
}

.page-blog-thbbet-registration-faq__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--thbbet-primary);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-thbbet-registration-faq__faq-item[open] .page-blog-thbbet-registration-faq__faq-toggle {
    transform: rotate(45deg); /* Rotate + to become x or similar */
}

.page-blog-thbbet-registration-faq__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
}

.page-blog-thbbet-registration-faq__faq-answer p {
    margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-thbbet-registration-faq__conclusion {
    padding-bottom: 60px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-blog-thbbet-registration-faq__hero-content {
        padding: 30px 15px;
    }
    .page-blog-thbbet-registration-faq__main-title {
        font-size: clamp(1.8em, 5vw, 3em);
    }
    .page-blog-thbbet-registration-faq__hero-description {
        font-size: 1.1em;
    }
    .page-blog-thbbet-registration-faq__section-title {
        font-size: clamp(1.6em, 4vw, 2.2em);
    }
}

@media (max-width: 768px) {
    .page-blog-thbbet-registration-faq__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-blog-thbbet-registration-faq__hero-content {
        padding: 20px 15px;
    }
    .page-blog-thbbet-registration-faq__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
    }
    .page-blog-thbbet-registration-faq__hero-description {
        font-size: 1em;
    }
    .page-blog-thbbet-registration-faq__section-title {
        font-size: clamp(1.4em, 5vw, 2em);
        margin-bottom: 30px;
        padding-top: 30px;
    }
    .page-blog-thbbet-registration-faq__text-block {
        font-size: 0.95em;
    }
    .page-blog-thbbet-registration-faq__btn-primary {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-blog-thbbet-registration-faq__list {
        margin-left: 20px;
    }
    .page-blog-thbbet-registration-faq__list li {
        font-size: 0.95em;
    }
    .page-blog-thbbet-registration-faq__step-item,
    .page-blog-thbbet-registration-faq__issue-item,
    .page-blog-thbbet-registration-faq__promo-card {
        padding: 20px;
    }
    .page-blog-thbbet-registration-faq__step-title {
        font-size: 1.3em;
    }
    .page-blog-thbbet-registration-faq__issue-title {
        font-size: 1.2em;
    }
    .page-blog-thbbet-registration-faq__promo-title {
        font-size: 1.2em;
    }
    .page-blog-thbbet-registration-faq__mobile-app-content {
        flex-direction: column;
    }
    .page-blog-thbbet-registration-faq__faq-item summary {
        font-size: 1.05em;
        padding: 15px;
    }
    .page-blog-thbbet-registration-faq__faq-answer {
        padding: 0 15px 15px 15px;
    }

    /* Mobile image and video responsive styles */
    .page-blog-thbbet-registration-faq img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-thbbet-registration-faq video,
    .page-blog-thbbet-registration-faq__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-thbbet-registration-faq__hero-image-wrapper,
    .page-blog-thbbet-registration-faq__container,
    .page-blog-thbbet-registration-faq__section,
    .page-blog-thbbet-registration-faq__card,
    .page-blog-thbbet-registration-faq__video-section,
    .page-blog-thbbet-registration-faq__video-container,
    .page-blog-thbbet-registration-faq__video-wrapper,
    .page-blog-thbbet-registration-faq__cta-buttons,
    .page-blog-thbbet-registration-faq__button-group,
    .page-blog-thbbet-registration-faq__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }

    .page-blog-thbbet-registration-faq__hero-section {
        padding-top: 10px !important;
    }

    /* Mobile button responsive styles */
    .page-blog-thbbet-registration-faq__cta-button,
    .page-blog-thbbet-registration-faq__btn-primary,
    .page-blog-thbbet-registration-faq__btn-secondary,
    .page-blog-thbbet-registration-faq a[class*="button"],
    .page-blog-thbbet-registration-faq 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-blog-thbbet-registration-faq__cta-buttons,
    .page-blog-thbbet-registration-faq__button-group,
    .page-blog-thbbet-registration-faq__btn-container {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px;
    }
    .page-blog-thbbet-registration-faq__btn-full-width {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}