/* style/game-guides-deposit-withdrawal-operation-guide.css */
.page-game-guides-deposit-withdrawal-operation-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for text on dark backgrounds */
    background-color: #000000; /* Main background color */
}

.page-game-guides-deposit-withdrawal-operation-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-game-guides-deposit-withdrawal-operation-guide__hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-game-guides-deposit-withdrawal-operation-guide__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-weight: bold;
}

.page-game-guides-deposit-withdrawal-operation-guide__hero-description {
    font-size: 1.2em;
    color: #CCCCCC;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-deposit-withdrawal-operation-guide__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin-top: 30px;
}

.page-game-guides-deposit-withdrawal-operation-guide__section {
    padding: 60px 0;
    background-color: #111111;
    border-bottom: 1px solid #333333;
}

.page-game-guides-deposit-withdrawal-operation-guide__section--dark {
    background-color: #0A0A0A;
}

.page-game-guides-deposit-withdrawal-operation-guide__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.page-game-guides-deposit-withdrawal-operation-guide__subsection-title {
    font-size: 2em;
    color: #DC143C;
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-game-guides-deposit-withdrawal-operation-guide__text-content {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-game-guides-deposit-withdrawal-operation-guide__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-game-guides-deposit-withdrawal-operation-guide__grid-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333333;
}

.page-game-guides-deposit-withdrawal-operation-guide__item-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-game-guides-deposit-withdrawal-operation-guide__item-description {
    font-size: 1em;
    color: #CCCCCC;
}

.page-game-guides-deposit-withdrawal-operation-guide__image-full-width {
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 40px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.page-game-guides-deposit-withdrawal-operation-guide__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    margin-bottom: 40px;
}

.page-game-guides-deposit-withdrawal-operation-guide__step-item {
    background-color: #1A1A1A;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    padding-left: 70px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-game-guides-deposit-withdrawal-operation-guide__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD700;
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.4em;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-game-guides-deposit-withdrawal-operation-guide__info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-game-guides-deposit-withdrawal-operation-guide__info-item {
    background-color: #1A1A1A;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #DC143C;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    color: #CCCCCC;
}

.page-game-guides-deposit-withdrawal-operation-guide__method-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-game-guides-deposit-withdrawal-operation-guide__method-item {
    background-color: #1A1A1A;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #333333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    color: #E0E0E0;
}

.page-game-guides-deposit-withdrawal-operation-guide__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-game-guides-deposit-withdrawal-operation-guide__faq-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid #333333;
}

.page-game-guides-deposit-withdrawal-operation-guide__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-game-guides-deposit-withdrawal-operation-guide__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: #DC143C;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-game-guides-deposit-withdrawal-operation-guide__faq-answer {
    font-size: 1em;
    color: #CCCCCC;
    display: none;
    margin-top: 15px;
}

.page-game-guides-deposit-withdrawal-operation-guide__faq-answer.active {
    display: block;
}

.page-game-guides-deposit-withdrawal-operation-guide__cta {
    background-color: #DC143C;
    padding: 80px 0;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-game-guides-deposit-withdrawal-operation-guide__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-game-guides-deposit-withdrawal-operation-guide__cta-description {
    font-size: 1.2em;
    color: #FFFFFF;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-guides-deposit-withdrawal-operation-guide__button {
    display: inline-block;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-deposit-withdrawal-operation-guide__button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-game-guides-deposit-withdrawal-operation-guide__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-guides-deposit-withdrawal-operation-guide__link:hover {
    color: #DC143C;
    text-decoration: underline;
}

.page-game-guides-deposit-withdrawal-operation-guide .highlight-text {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-game-guides-deposit-withdrawal-operation-guide__hero-title {
        font-size: 2.8em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__section-title {
        font-size: 2.2em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__subsection-title {
        font-size: 1.8em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-game-guides-deposit-withdrawal-operation-guide__hero {
        padding: 60px 0;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__hero-title {
        font-size: 2.2em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__hero-description {
        font-size: 1em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__section {
        padding: 40px 0;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__section-title {
        font-size: 1.8em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__subsection-title {
        font-size: 1.5em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__step-item {
        padding-left: 60px;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__step-item::before {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        left: 15px;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__faq-grid {
        grid-template-columns: 1fr;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__faq-question {
        font-size: 1.2em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__cta {
        padding: 50px 0;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__cta-title {
        font-size: 2em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__cta-description {
        font-size: 1em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-game-guides-deposit-withdrawal-operation-guide__container {
        padding: 15px;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__hero-title {
        font-size: 1.8em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__section-title {
        font-size: 1.5em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__subsection-title {
        font-size: 1.3em;
    }
    .page-game-guides-deposit-withdrawal-operation-guide__cta-title {
        font-size: 1.8em;
    }
}