/* style/deposit-withdrawal-guide.css */

/* Variables for consistency */
:root {
    --page-rr88-primary-color: #007bff;
    --page-rr88-secondary-color: #ffc107;
    --page-rr88-text-dark: #333;
    --page-rr88-text-light: #fff;
    --page-rr88-bg-light: #f8f9fa;
    --page-rr88-bg-dark: #212529;
    --page-rr88-border-color: #e0e0e0;
}

.page-deposit-withdrawal-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-rr88-text-dark);
    background-color: var(--page-rr88-bg-light);
}

.page-deposit-withdrawal-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-deposit-withdrawal-guide__hero-section {
    background: linear-gradient(135deg, var(--page-rr88-primary-color) 0%, #0056b3 100%); /* Darker blue for contrast */
    color: var(--page-rr88-text-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-deposit-withdrawal-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-rr88-text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-deposit-withdrawal-guide__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.page-deposit-withdrawal-guide__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-deposit-withdrawal-guide__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    text-align: center;
    min-width: 180px;
}

.page-deposit-withdrawal-guide__button--primary {
    background-color: var(--page-rr88-secondary-color);
    color: var(--page-rr88-text-dark);
    border: 2px solid var(--page-rr88-secondary-color);
}

.page-deposit-withdrawal-guide__button--primary:hover {
    background-color: #e0a800; /* Slightly darker gold */
    border-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-guide__button--secondary {
    background-color: transparent;
    color: var(--page-rr88-text-light);
    border: 2px solid var(--page-rr88-text-light);
}

.page-deposit-withdrawal-guide__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--page-rr88-text-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--page-rr88-border-color);
}

.page-deposit-withdrawal-guide__section:last-of-type {
    border-bottom: none;
}

.page-deposit-withdrawal-guide__section-title {
    font-size: 2.2em;
    color: var(--page-rr88-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-deposit-withdrawal-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-rr88-secondary-color);
    border-radius: 2px;
}

.page-deposit-withdrawal-guide__text-content {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

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

.page-deposit-withdrawal-guide__method-card,
.page-deposit-withdrawal-guide__feature-card {
    background-color: var(--page-rr88-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-guide__method-card:hover,
.page-deposit-withdrawal-guide__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-guide__method-title,
.page-deposit-withdrawal-guide__feature-title {
    font-size: 1.6em;
    color: var(--page-rr88-primary-color);
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guide__method-image,
.page-deposit-withdrawal-guide__feature-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: contain;
}

.page-deposit-withdrawal-guide__method-description,
.page-deposit-withdrawal-guide__feature-description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-deposit-withdrawal-guide__list {
    list-style-type: disc;
    padding-left: 25px;
    text-align: left;
    margin-bottom: 20px;
}

.page-deposit-withdrawal-guide__list li {
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #555;
}

.page-deposit-withdrawal-guide__info-block {
    background-color: var(--page-rr88-text-light);
    border-left: 5px solid var(--page-rr88-secondary-color);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-deposit-withdrawal-guide__info-title {
    font-size: 1.5em;
    color: var(--page-rr88-primary-color);
    margin-bottom: 10px;
}

.page-deposit-withdrawal-guide__info-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

.page-deposit-withdrawal-guide__faq-list {
    margin-top: 40px;
}

.page-deposit-withdrawal-guide__faq-item {
    background-color: var(--page-rr88-text-light);
    border: 1px solid var(--page-rr88-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    transition: box-shadow 0.3s ease;
}

.page-deposit-withdrawal-guide__faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.page-deposit-withdrawal-guide__faq-question {
    font-size: 1.25em;
    color: var(--page-rr88-primary-color);
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-deposit-withdrawal-guide__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: var(--page-rr88-secondary-color);
    transition: transform 0.3s ease;
}

.page-deposit-withdrawal-guide__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-deposit-withdrawal-guide__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px dashed var(--page-rr88-border-color);
    margin-top: 10px;
}

.page-deposit-withdrawal-guide__faq-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-deposit-withdrawal-guide__detail-item {
    background-color: var(--page-rr88-text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-deposit-withdrawal-guide__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-deposit-withdrawal-guide__detail-title {
    font-size: 1.4em;
    color: var(--page-rr88-primary-color);
    margin-bottom: 15px;
}

.page-deposit-withdrawal-guide__detail-title a {
    color: var(--page-rr88-primary-color);
    text-decoration: none;
}

.page-deposit-withdrawal-guide__detail-title a:hover {
    text-decoration: underline;
}

.page-deposit-withdrawal-guide__detail-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-deposit-withdrawal-guide__button--view-details {
    background-color: var(--page-rr88-primary-color);
    color: var(--page-rr88-text-light);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

.page-deposit-withdrawal-guide__button--view-details:hover {
    background-color: #0056b3; /* Darker blue */
    transform: translateY(-1px);
}

.page-deposit-withdrawal-guide__cta-bottom {
    background-color: var(--page-rr88-primary-color);
    color: var(--page-rr88-text-light);
    padding: 70px 0;
    text-align: center;
}

.page-deposit-withdrawal-guide__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-rr88-text-light);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-deposit-withdrawal-guide__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.page-deposit-withdrawal-guide__cta-group {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-deposit-withdrawal-guide__hero-title {
        font-size: 2.2em;
    }
    .page-deposit-withdrawal-guide__section-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-guide__method-grid,
    .page-deposit-withdrawal-guide__feature-grid,
    .page-deposit-withdrawal-guide__detail-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-deposit-withdrawal-guide__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-deposit-withdrawal-guide__hero-section,
    .page-deposit-withdrawal-guide__section,
    .page-deposit-withdrawal-guide__cta-bottom {
        padding: 50px 0;
    }
    .page-deposit-withdrawal-guide__hero-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-guide__hero-subtitle {
        font-size: 1em;
    }
    .page-deposit-withdrawal-guide__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }
    .page-deposit-withdrawal-guide__method-card,
    .page-deposit-withdrawal-guide__feature-card,
    .page-deposit-withdrawal-guide__detail-item {
        padding: 25px;
    }
    .page-deposit-withdrawal-guide__method-title,
    .page-deposit-withdrawal-guide__feature-title {
        font-size: 1.4em;
    }
    .page-deposit-withdrawal-guide__faq-question {
        font-size: 1.1em;
    }
    .page-deposit-withdrawal-guide__cta-title {
        font-size: 1.8em;
    }
    .page-deposit-withdrawal-guide__cta-description {
        font-size: 1em;
    }
    .page-deposit-withdrawal-guide__button {
        padding: 10px 20px;
        font-size: 1em;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .page-deposit-withdrawal-guide__hero-cta-group,
    .page-deposit-withdrawal-guide__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-deposit-withdrawal-guide__button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .page-deposit-withdrawal-guide__hero-title {
        font-size: 1.5em;
    }
    .page-deposit-withdrawal-guide__section-title {
        font-size: 1.4em;
    }
    .page-deposit-withdrawal-guide__method-grid,
    .page-deposit-withdrawal-guide__feature-grid,
    .page-deposit-withdrawal-guide__detail-list {
        grid-template-columns: 1fr;
    }
    .page-deposit-withdrawal-guide__faq-question {
        font-size: 1em;
    }
}