/* style/blog-secure-deposits-withdrawals-guide.css */

/* Custom properties for colors from the prompt */
:root {
    --primary-color: #F2C14E; /* Main brand color */
    --secondary-color: #FFD36B; /* Auxiliary brand color */
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --card-bg: #111111;
    --background-color: #0A0A0A; /* This is likely --site-bg from shared.css, but used for explicit elements */
    --text-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
}

.page-blog-secure-deposits-withdrawals-guide {
    /* Assuming body has --site-bg: #0A0A0A (dark), so main text color should be light */
    color: var(--text-main); /* #FFF6D6 */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* General padding for the main content area */
}

/* Hero Section */
.page-blog-secure-deposits-withdrawals-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding as body handles --header-offset */
    padding-bottom: 60px;
    overflow: hidden; /* Ensure content doesn't spill */
    background-color: var(--background-color); /* Dark background for hero */
}

.page-blog-secure-deposits-withdrawals-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Ensure image is behind text */
}

.page-blog-secure-deposits-withdrawals-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Slightly dim the image for text readability */
}

.page-blog-secure-deposits-withdrawals-guide__hero-content {
    position: relative;
    z-index: 1; /* Ensure text is above the image */
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
    color: var(--text-main); /* Light text on dark background */
}

.page-blog-secure-deposits-withdrawals-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color); /* Use secondary color for emphasis */
}

.page-blog-secure-deposits-withdrawals-guide__hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.page-blog-secure-deposits-withdrawals-guide__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-blog-secure-deposits-withdrawals-guide__btn-primary,
.page-blog-secure-deposits-withdrawals-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    box-sizing: border-box; /* Include padding in width */
}

.page-blog-secure-deposits-withdrawals-guide__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text on gradient button */
    border: 2px solid transparent;
}

.page-blog-secure-deposits-withdrawals-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-secure-deposits-withdrawals-guide__btn-secondary {
    background: transparent;
    color: var(--secondary-color); /* Secondary color text on transparent button */
    border: 2px solid var(--secondary-color);
}

.page-blog-secure-deposits-withdrawals-guide__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--background-color); /* Dark text on secondary color hover */
    transform: translateY(-3px);
}

/* General Content Sections */
.page-blog-secure-deposits-withdrawals-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-blog-secure-deposits-withdrawals-guide__introduction-section,
.page-blog-secure-deposits-withdrawals-guide__choose-casino-section,
.page-blog-secure-deposits-withdrawals-guide__deposit-guide-section,
.page-blog-secure-deposits-withdrawals-guide__withdrawal-guide-section,
.page-blog-secure-deposits-withdrawals-guide__fees-limits-section,
.page-blog-secure-deposits-withdrawals-guide__mobile-payments-section,
.page-blog-secure-deposits-withdrawals-guide__responsible-gaming-section,
.page-blog-secure-deposits-withdrawals-guide__conclusion-section {
    padding: 60px 20px;
    background-color: var(--background-color); /* Consistent dark background */
    color: var(--text-main); /* Consistent light text */
    border-bottom: 1px solid var(--border-color); /* Subtle separator */
}

.page-blog-secure-deposits-withdrawals-guide__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-color); /* Primary color for section titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-blog-secure-deposits-withdrawals-guide__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--secondary-color); /* Secondary color for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-blog-secure-deposits-withdrawals-guide__paragraph {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-blog-secure-deposits-withdrawals-guide__paragraph .highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.page-blog-secure-deposits-withdrawals-guide__list,
.page-blog-secure-deposits-withdrawals-guide__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-blog-secure-deposits-withdrawals-guide__ordered-list {
    list-style-type: decimal;
}

.page-blog-secure-deposits-withdrawals-guide__list-item {
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-blog-secure-deposits-withdrawals-guide__content-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-secure-deposits-withdrawals-guide__faq-section {
    padding: 60px 20px;
    background-color: var(--card-bg); /* Slightly different dark background for FAQ */
    color: var(--text-main);
}

.page-blog-secure-deposits-withdrawals-guide__faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #1a1a1a; /* Darker background for individual FAQ items */
}

.page-blog-secure-deposits-withdrawals-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #222222; /* Slightly lighter dark for question header */
    transition: background-color 0.3s ease;
}

.page-blog-secure-deposits-withdrawals-guide__faq-question:hover {
    background-color: #333333;
}

.page-blog-secure-deposits-withdrawals-guide__faq-title {
    font-size: 1.2rem;
    color: var(--primary-color); /* Primary color for FAQ questions */
    margin: 0;
    font-weight: 600;
}

.page-blog-secure-deposits-withdrawals-guide__faq-toggle {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.page-blog-secure-deposits-withdrawals-guide__faq-item.active .page-blog-secure-deposits-withdrawals-guide__faq-toggle {
    transform: rotate(45deg); /* Plus sign rotates to a minus sign visually */
}

.page-blog-secure-deposits-withdrawals-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-main);
}

.page-blog-secure-deposits-withdrawals-guide__faq-item.active .page-blog-secure-deposits-withdrawals-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large value for expansion */
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-blog-secure-deposits-withdrawals-guide__hero-content {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .page-blog-secure-deposits-withdrawals-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-secure-deposits-withdrawals-guide__hero-section {
        padding-top: 10px !important; /* Body handles header offset, this is for visual space */
        padding-bottom: 40px;
    }

    .page-blog-secure-deposits-withdrawals-guide__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-secure-deposits-withdrawals-guide__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-secure-deposits-withdrawals-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-blog-secure-deposits-withdrawals-guide__btn-primary,
    .page-blog-secure-deposits-withdrawals-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .page-blog-secure-deposits-withdrawals-guide__introduction-section,
    .page-blog-secure-deposits-withdrawals-guide__choose-casino-section,
    .page-blog-secure-deposits-withdrawals-guide__deposit-guide-section,
    .page-blog-secure-deposits-withdrawals-guide__withdrawal-guide-section,
    .page-blog-secure-deposits-withdrawals-guide__fees-limits-section,
    .page-blog-secure-deposits-withdrawals-guide__mobile-payments-section,
    .page-blog-secure-deposits-withdrawals-guide__responsible-gaming-section,
    .page-blog-secure-deposits-withdrawals-guide__conclusion-section,
    .page-blog-secure-deposits-withdrawals-guide__faq-section {
        padding: 40px 15px;
    }

    .page-blog-secure-deposits-withdrawals-guide__container {
        padding: 0; /* Remove horizontal padding, handled by section padding */
    }

    .page-blog-secure-deposits-withdrawals-guide__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-blog-secure-deposits-withdrawals-guide__sub-title {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }

    /* Images responsiveness */
    .page-blog-secure-deposits-withdrawals-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        box-sizing: border-box !important;
        padding: 0 15px; /* Ensure images have some padding if container doesn't */
    }
    
    .page-blog-secure-deposits-withdrawals-guide__content-image {
        margin: 30px auto;
    }

    .page-blog-secure-deposits-withdrawals-guide__faq-item {
        margin-bottom: 10px;
    }

    .page-blog-secure-deposits-withdrawals-guide__faq-question {
        padding: 15px;
    }

    .page-blog-secure-deposits-withdrawals-guide__faq-title {
        font-size: 1.1rem;
    }

    .page-blog-secure-deposits-withdrawals-guide__faq-answer {
        padding: 0 15px;
    }

    .page-blog-secure-deposits-withdrawals-guide__faq-item.active .page-blog-secure-deposits-withdrawals-guide__faq-answer {
        padding: 15px;
    }
}