/* style/blog-bonus-withdrawal-rules-deep-dive.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --btn-register-bg: #C30808;
    --btn-register-text: #FFFF00;
}

.page-blog-bonus-withdrawal-rules-deep-dive {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--secondary-color); /* Default light background for main content */
}

.page-blog-bonus-withdrawal-rules-deep-dive__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-bonus-withdrawal-rules-deep-dive__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 */
    background-color: var(--primary-color);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-blog-bonus-withdrawal-rules-deep-dive__hero-image-container {
    width: 100%;
    max-height: 600px; /* Limit image height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.page-blog-bonus-withdrawal-rules-deep-dive__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-bonus-withdrawal-rules-deep-dive__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.page-blog-bonus-withdrawal-rules-deep-dive__main-title {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color-light);
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
}

.page-blog-bonus-withdrawal-rules-deep-dive__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

.page-blog-bonus-withdrawal-rules-deep-dive__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-blog-bonus-withdrawal-rules-deep-dive__sub-title {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-bonus-withdrawal-rules-deep-dive__list,
.page-blog-bonus-withdrawal-rules-deep-dive__numbered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-blog-bonus-withdrawal-rules-deep-dive__numbered-list {
    list-style-type: decimal;
}

.page-blog-bonus-withdrawal-rules-deep-dive__list li,
.page-blog-bonus-withdrawal-rules-deep-dive__numbered-list li {
    margin-bottom: 10px;
    color: var(--text-color-dark);
}

.page-blog-bonus-withdrawal-rules-deep-dive__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-blog-bonus-withdrawal-rules-deep-dive__dark-bg .page-blog-bonus-withdrawal-rules-deep-dive__section-title,
.page-blog-bonus-withdrawal-rules-deep-dive__dark-bg .page-blog-bonus-withdrawal-rules-deep-dive__sub-title {
    color: var(--text-color-light);
}

.page-blog-bonus-withdrawal-rules-deep-dive__light-bg {
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}

.page-blog-bonus-withdrawal-rules-deep-dive__btn-primary,
.page-blog-bonus-withdrawal-rules-deep-dive__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
}

.page-blog-bonus-withdrawal-rules-deep-dive__btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-bonus-withdrawal-rules-deep-dive__btn-primary:hover {
    background-color: #005a2d;
    border-color: #005a2d;
}

.page-blog-bonus-withdrawal-rules-deep-dive__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-bonus-withdrawal-rules-deep-dive__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Specific colors for register/login buttons if they existed separately */
.page-blog-bonus-withdrawal-rules-deep-dive__btn-register,
.page-blog-bonus-withdrawal-rules-deep-dive__btn-login {
    background-color: var(--btn-register-bg);
    color: var(--btn-register-text);
    border: 2px solid var(--btn-register-bg);
}

.page-blog-bonus-withdrawal-rules-deep-dive__btn-register:hover,
.page-blog-bonus-withdrawal-rules-deep-dive__btn-login:hover {
    background-color: #a30707;
    border-color: #a30707;
}

.page-blog-bonus-withdrawal-rules-deep-dive__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-blog-bonus-withdrawal-rules-deep-dive__video-section {
    padding: 40px 20px;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}

.page-blog-bonus-withdrawal-rules-deep-dive__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Desktop max width for video */
    margin: 20px auto;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.page-blog-bonus-withdrawal-rules-deep-dive__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    max-width: 100%; /* Ensure video does not overflow */
    height: auto; /* Maintain aspect ratio */
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-section {
    padding: 40px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-list {
    margin-top: 30px;
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    background-color: #f0f0f0;
    color: var(--primary-color);
    transition: background-color 0.3s ease;
    list-style: none; /* For details tag */
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-question:hover {
    background-color: #e5e5e5;
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--primary-color);
}

.page-blog-bonus-withdrawal-rules-deep-dive__faq-answer {
    padding: 15px 20px;
    background-color: var(--secondary-color);
    color: var(--text-color-dark);
    border-top: 1px solid #e0e0e0;
}

/* Details tag open state */
.page-blog-bonus-withdrawal-rules-deep-dive__faq-item[open] .page-blog-bonus-withdrawal-rules-deep-dive__faq-question {
    background-color: #e5e5e5;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-bonus-withdrawal-rules-deep-dive {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__container,
    .page-blog-bonus-withdrawal-rules-deep-dive__hero-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__intro-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__bonus-types-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__terms-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__process-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__tips-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__issues-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__why-choose-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__video-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__conclusion-section,
    .page-blog-bonus-withdrawal-rules-deep-dive__faq-section {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__hero-section {
        padding-top: 10px !important; /* Small top padding */
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__main-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__section-title {
        font-size: 1.8em;
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__sub-title {
        font-size: 1.4em;
    }

    .page-blog-bonus-withdrawal-rules-deep-dive img,
    .page-blog-bonus-withdrawal-rules-deep-dive video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__btn-primary,
    .page-blog-bonus-withdrawal-rules-deep-dive__btn-secondary,
    .page-blog-bonus-withdrawal-rules-deep-dive a[class*="button"],
    .page-blog-bonus-withdrawal-rules-deep-dive a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-bottom: 10px; /* Add spacing between stacked buttons */
    }
    
    .page-blog-bonus-withdrawal-rules-deep-dive__hero-content .page-blog-bonus-withdrawal-rules-deep-dive__btn-primary {
        margin-left: 0;
        margin-right: 0;
    }

    .page-blog-bonus-withdrawal-rules-deep-dive__why-choose-section .page-blog-bonus-withdrawal-rules-deep-dive__btn-secondary {
        margin-left: 0;
        margin-right: 0;
    }
}