.page-payment-methods {
    font-family: 'Arial', sans-serif;
    color: #FFF5E1; /* Text Main */
    background-color: #B71C1C; /* Background */
    line-height: 1.6;
}

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

/* HERO 主图区域 */
.page-payment-methods__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, assuming body has padding-top from shared */
    padding-bottom: 40px;
    overflow: hidden;
    background-color: #7A0E0E; /* Deep Red */
}

.page-payment-methods__hero-image-wrapper {
    width: 100%;
    height: 675px; /* Fixed height for desktop */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-payment-methods__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-payment-methods__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-payment-methods__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    color: #FFCC66; /* Glow */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 204, 102, 0.5);
}

.page-payment-methods__description {
    font-size: 1.1rem;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* 按钮与按钮容器 */
.page-payment-methods__btn-primary,
.page-payment-methods__btn-secondary,
.page-payment-methods__card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    text-align: center;
}

.page-payment-methods__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button custom color */
    color: #7A0E0E; /* Deep Red for contrast */
    border: 2px solid #F4D34D; /* Gold */
    box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-payment-methods__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
    transform: translateY(-2px);
}

.page-payment-methods__btn-secondary {
    background: #C91F17; /* Main color */
    color: #FFF5E1; /* Text Main */
    border: 2px solid #F2B544; /* Border custom color */
    box-shadow: 0 4px 10px rgba(201, 31, 23, 0.3);
}

.page-payment-methods__btn-secondary:hover {
    background: #E53935; /* Auxiliary color */
    border-color: #FFCC66; /* Glow */
    box-shadow: 0 6px 15px rgba(229, 57, 53, 0.4);
    transform: translateY(-2px);
}

/* Section Titles */
.page-payment-methods__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F4D34D; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(244, 211, 77, 0.3);
}

/* Text Blocks */
.page-payment-methods__text-block {
    font-size: 1rem;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Overview Section */
.page-payment-methods__overview-section {
    padding: 60px 0;
    background-color: #B71C1C; /* Background */
}

/* Deposit/Withdrawal Sections */
.page-payment-methods__deposit-section,
.page-payment-methods__withdrawal-section {
    padding: 60px 0;
}

.page-payment-methods__dark-section {
    background-color: #7A0E0E; /* Deep Red */
    color: #FFF5E1;
}

/* 产品展示图区域 (General .page-payment-methods__methods-grid for cards) */
.page-payment-methods__methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-payment-methods__method-card {
    background: #D32F2F; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F2B544; /* Border */
    color: #FFF5E1; /* Text Main */
}

.page-payment-methods__method-card .page-payment-methods__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F4D34D; /* Gold */
    margin-top: 20px;
    margin-bottom: 15px;
}

.page-payment-methods__method-card .page-payment-methods__card-description {
    font-size: 0.95rem;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 25px;
    flex-grow: 1; /* Ensures buttons align at bottom */
}

.page-payment-methods__method-icon {
    width: 200px; /* Minimum size */
    height: 150px; /* Minimum size */
    object-fit: contain;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

/* 其他内容模块 (FAQ Section) */
.page-payment-methods__faq-section {
    padding: 60px 0;
}

.page-payment-methods__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-payment-methods__faq-item {
    background: #D32F2F; /* Card BG */
    border: 1px solid #F2B544; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #FFF5E1; /* Text Main */
}

.page-payment-methods__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F4D34D; /* Gold */
    cursor: pointer;
    background-color: #C91F17; /* Main Color */
    user-select: none;
    list-style: none; /* For details/summary */
}

.page-payment-methods__faq-question::-webkit-details-marker {
    display: none;
}

.page-payment-methods__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD86A; /* Button gold color */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-payment-methods__faq-item[open] .page-payment-methods__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-payment-methods__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #FFF5E1; /* Text Main */
    line-height: 1.6;
}

.page-payment-methods__faq-answer p {
    margin: 0;
}

/* Bottom CTA Section */
.page-payment-methods__cta-bottom {
    padding: 80px 20px;
    background-color: #C91F17; /* Main Color */
    text-align: center;
}

.page-payment-methods__cta-bottom .page-payment-methods__section-title {
    color: #F4D34D; /* Gold */
    margin-bottom: 20px;
    padding-top: 0;
}

.page-payment-methods__cta-bottom .page-payment-methods__text-block {
    margin-bottom: 40px;
}

/* 通用图片与容器 */
.page-payment-methods img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* --- Responsive Styles --- */

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-payment-methods__hero-section {
        padding-top: 10px !important; /* Small top padding, assuming body has padding-top from shared */
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-payment-methods__hero-image-wrapper {
        height: 250px;
    }

    .page-payment-methods__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-payment-methods__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* 按钮与按钮容器 */
    .page-payment-methods__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
    }

    .page-payment-methods__btn-primary,
    .page-payment-methods__btn-secondary,
    .page-payment-methods__card-button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* 产品展示图区域 (General .page-payment-methods__methods-grid for cards) */
    .page-payment-methods__methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 0 15px;
    }

    .page-payment-methods__method-card {
        padding: 20px;
    }

    .page-payment-methods__method-icon {
        width: 180px;
        height: 120px;
    }

    .page-payment-methods__card-title {
        font-size: 1.3rem;
    }

    .page-payment-methods__card-description {
        font-size: 0.9rem;
    }

    /* 通用图片与容器 */
    .page-payment-methods img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-payment-methods__container,
    .page-payment-methods__overview-section,
    .page-payment-methods__deposit-section,
    .page-payment-methods__withdrawal-section,
    .page-payment-methods__faq-section,
    .page-payment-methods__cta-bottom {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* 其他内容模块 (FAQ section specifically) */
    .page-payment-methods__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
        padding-top: 30px;
    }

    .page-payment-methods__text-block {
        font-size: 0.95rem;
    }

    .page-payment-methods__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-payment-methods__faq-answer {
        font-size: 0.9rem;
        padding: 0 20px 15px;
    }

    .page-payment-methods__faq-list {
        margin-top: 30px;
    }

    .page-payment-methods__cta-bottom {
        padding: 50px 15px;
    }
}