/* style/payment-methods-deposit-guide.css */

:root {
    --primary-color: #007bff;
    --secondary-color: #ffc107;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-dark-section: #0a0a0a; /* A slightly darker background for sections if body is dark */
}

/* Base styles for the page content */
.page-payment-methods-deposit-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--dark-bg-1); /* Assuming shared.css defines --dark-bg-1 */
}

.page-payment-methods-deposit-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-payment-methods-deposit-guide__section {
    padding: 60px 0;
    text-align: center;
}

.page-payment-methods-deposit-guide__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-payment-methods-deposit-guide__light-bg {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-payment-methods-deposit-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: inherit; /* Inherits from section background */
}

.page-payment-methods-deposit-guide__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-payment-methods-deposit-guide__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-payment-methods-deposit-guide__hero-section .page-payment-methods-deposit-guide__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.page-payment-methods-deposit-guide__hero-content {
    max-width: 800px;
}

.page-payment-methods-deposit-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.page-payment-methods-deposit-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-payment-methods-deposit-guide__hero-video-wrapper {
    width: 100%;
    max-width: 1200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.page-payment-methods-deposit-guide__hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.page-payment-methods-deposit-guide__video-link {
    display: block;
    line-height: 0; /* Remove extra space below video */
}

/* Buttons */
.page-payment-methods-deposit-guide__btn-primary,
.page-payment-methods-deposit-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-payment-methods-deposit-guide__btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
    margin: 10px;
}

.page-payment-methods-deposit-guide__btn-primary:hover {
    background-color: #e6b000; /* Darker secondary color */
    transform: translateY(-2px);
}

.page-payment-methods-deposit-guide__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin: 10px;
}

.page-payment-methods-deposit-guide__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Why Choose Section */
.page-payment-methods-deposit-guide__why-choose .page-payment-methods-deposit-guide__section-title {
    color: var(--primary-color);
}

.page-payment-methods-deposit-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-deposit-guide__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: var(--text-dark);
}

.page-payment-methods-deposit-guide__feature-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__feature-item p {
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__feature-list {
    list-style: disc;
    padding-left: 20px;
}

.page-payment-methods-deposit-guide__feature-list li {
    margin-bottom: 8px;
}

/* Guide Steps Section */
.page-payment-methods-deposit-guide__guide-steps {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-payment-methods-deposit-guide__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 40px;
}

.page-payment-methods-deposit-guide__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-guide__step-number {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.page-payment-methods-deposit-guide__step-title {
    font-size: 1.8em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__step-item p {
    max-width: 700px;
    margin-bottom: 20px;
}

.page-payment-methods-deposit-guide__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-payment-methods-deposit-guide__step-list {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    max-width: 700px;
    width: 100%;
}

.page-payment-methods-deposit-guide__step-list li {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.page-payment-methods-deposit-guide__step-list li::before {
    content: '✅';
    margin-right: 10px;
}

/* Promotions Section */
.page-payment-methods-deposit-guide__promotions .page-payment-methods-deposit-guide__section-title {
    color: var(--primary-color);
}

.page-payment-methods-deposit-guide__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods-deposit-guide__promo-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    color: var(--text-dark);
}

.page-payment-methods-deposit-guide__promo-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__promo-card p {
    margin-bottom: 15px;
}

.page-payment-methods-deposit-guide__promo-list {
    list-style: disc;
    padding-left: 20px;
}

.page-payment-methods-deposit-guide__promo-list li {
    margin-bottom: 8px;
}

/* Tips Section */
.page-payment-methods-deposit-guide__tips {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-payment-methods-deposit-guide__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-deposit-guide__tips-list li {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-payment-methods-deposit-guide__tips-list li strong {
    color: var(--secondary-color);
}

/* FAQ Section */
.page-payment-methods-deposit-guide__faq .page-payment-methods-deposit-guide__section-title {
    color: var(--primary-color);
}

.page-payment-methods-deposit-guide__faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-payment-methods-deposit-guide__faq-item {
    background-color: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    color: var(--text-dark);
}

.page-payment-methods-deposit-guide__faq-question {
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f0f8ff; /* Light background for question */
    transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-guide__faq-question:hover {
    background-color: #e0f0ff;
}

.page-payment-methods-deposit-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-payment-methods-deposit-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #ffffff;
    color: var(--text-dark);
}

.page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 20px;
}

.page-payment-methods-deposit-guide__faq-answer p {
    margin-bottom: 15px;
}

/* CTA Section */
.page-payment-methods-deposit-guide__cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-payment-methods-deposit-guide__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-payment-methods-deposit-guide__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods-deposit-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-payment-methods-deposit-guide__hero-title {
        font-size: 3em;
    }
    .page-payment-methods-deposit-guide__section-title {
        font-size: 2em;
    }
    .page-payment-methods-deposit-guide__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-deposit-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-payment-methods-deposit-guide__container {
        padding: 0 15px;
    }
    .page-payment-methods-deposit-guide__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Mobile fixed header offset */
        padding-bottom: 40px;
    }
    .page-payment-methods-deposit-guide__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods-deposit-guide__hero-description {
        font-size: 1.1em;
    }
    .page-payment-methods-deposit-guide__section {
        padding: 40px 0;
    }
    .page-payment-methods-deposit-guide__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods-deposit-guide__cta-title {
        font-size: 2em;
    }
    .page-payment-methods-deposit-guide__feature-grid,
    .page-payment-methods-deposit-guide__promo-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile image, video, button responsiveness */
    .page-payment-methods-deposit-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods-deposit-guide video,
    .page-payment-methods-deposit-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-payment-methods-deposit-guide__hero-video-wrapper,
    .page-payment-methods-deposit-guide__video-link,
    .page-payment-methods-deposit-guide__section,
    .page-payment-methods-deposit-guide__card,
    .page-payment-methods-deposit-guide__container,
    .page-payment-methods-deposit-guide__cta-buttons,
    .page-payment-methods-deposit-guide__step-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    .page-payment-methods-deposit-guide__step-item {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-payment-methods-deposit-guide__btn-primary,
    .page-payment-methods-deposit-guide__btn-secondary,
    .page-payment-methods-deposit-guide a[class*="button"],
    .page-payment-methods-deposit-guide 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-left: 0;
        margin-right: 0;
    }
    .page-payment-methods-deposit-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-payment-methods-deposit-guide__faq-list {
        padding: 0 15px;
    }
    .page-payment-methods-deposit-guide__faq-question {
        padding: 15px;
        font-size: 1.1em;
    }
    .page-payment-methods-deposit-guide__faq-answer {
        padding: 0 15px;
    }
    .page-payment-methods-deposit-guide__faq-item.active .page-payment-methods-deposit-guide__faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-deposit-guide__hero-title {
        font-size: 2em;
    }
    .page-payment-methods-deposit-guide__cta-title {
        font-size: 1.8em;
    }
    .page-payment-methods-deposit-guide__btn-primary,
    .page-payment-methods-deposit-guide__btn-secondary {
        padding: 12px 20px;
        font-size: 1em;
    }
}