/* style/beginner-guide-deposit-methods.css */
.page-beginner-guide-deposit-methods {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1a1a1a;
    line-height: 1.6;
}

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

.page-beginner-guide-deposit-methods__hero {
    background: linear-gradient(135deg, #FF0055, #00FFEE);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.page-beginner-guide-deposit-methods__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-beginner-guide-deposit-methods__hero .page-beginner-guide-deposit-methods__container {
    position: relative;
    z-index: 2;
}

.page-beginner-guide-deposit-methods__title {
    font-size: 3.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.page-beginner-guide-deposit-methods__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
}

.page-beginner-guide-deposit-methods__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-beginner-guide-deposit-methods__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-deposit-methods__btn--primary {
    background-color: #FF0055; /* Primary color */
    color: #FFFFFF;
    border: 2px solid #FF0055;
}

.page-beginner-guide-deposit-methods__btn--primary:hover {
    background-color: #E6004D;
    border-color: #E6004D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-deposit-methods__btn--secondary {
    background-color: transparent;
    color: #00FFEE; /* Secondary color */
    border: 2px solid #00FFEE;
}

.page-beginner-guide-deposit-methods__btn--secondary:hover {
    background-color: #00FFEE;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-deposit-methods__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-beginner-guide-deposit-methods__section:last-of-type {
    border-bottom: none;
}

.page-beginner-guide-deposit-methods__heading {
    font-size: 2.5em;
    color: #00FFEE; /* Secondary color for main headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
}

.page-beginner-guide-deposit-methods__section p {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #E0E0E0;
}

.page-beginner-guide-deposit-methods__section--intro p {
    text-align: left;
    max-width: none;
}

.page-beginner-guide-deposit-methods__method-card {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-beginner-guide-deposit-methods__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-beginner-guide-deposit-methods__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #FF0055);
}

.page-beginner-guide-deposit-methods__method-title {
    font-size: 1.8em;
    color: #FF0055; /* Primary color for method titles */
    margin-bottom: 20px;
    font-weight: 600;
}

.page-beginner-guide-deposit-methods__method-card p {
    font-size: 1em;
    color: #C0C0C0;
    text-align: center;
    max-width: 600px;
    margin-bottom: 20px;
}

.page-beginner-guide-deposit-methods__steps {
    background-color: #3a3a3a;
    border-radius: 10px;
    padding: 25px;
    margin-top: 20px;
    text-align: left;
    width: 100%;
    max-width: 700px;
}

.page-beginner-guide-deposit-methods__steps h4 {
    color: #00FFEE;
    font-size: 1.3em;
    margin-bottom: 15px;
    text-align: center;
}

.page-beginner-guide-deposit-methods__steps ol {
    list-style-type: decimal;
    padding-left: 25px;
    color: #E0E0E0;
}

.page-beginner-guide-deposit-methods__steps ol li {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-beginner-guide-deposit-methods__steps ol li strong {
    color: #FF0055;
}

.page-beginner-guide-deposit-methods__general-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-beginner-guide-deposit-methods__step-item {
    background-color: #2a2a2a;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-beginner-guide-deposit-methods__step-item:hover {
    transform: translateY(-5px);
}

.page-beginner-guide-deposit-methods__step-number {
    background-color: #FF0055;
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-deposit-methods__step-title {
    font-size: 1.5em;
    color: #00FFEE;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-beginner-guide-deposit-methods__step-item p {
    font-size: 0.95em;
    color: #C0C0C0;
    text-align: center;
    margin-bottom: 0;
}

.page-beginner-guide-deposit-methods__step-item a {
    color: #FF0055;
    text-decoration: none;
    font-weight: bold;
}

.page-beginner-guide-deposit-methods__step-item a:hover {
    text-decoration: underline;
}

.page-beginner-guide-deposit-methods__cta-bottom {
    text-align: center;
    margin-top: 40px;
}

.page-beginner-guide-deposit-methods__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-beginner-guide-deposit-methods__list li {
    background-color: #2a2a2a;
    border-left: 5px solid #FF0055;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-beginner-guide-deposit-methods__list li strong {
    color: #00FFEE;
}

.page-beginner-guide-deposit-methods__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-beginner-guide-deposit-methods__faq-question {
    background-color: #FF0055;
    color: #FFFFFF;
    padding: 18px 25px;
    margin-top: 20px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-beginner-guide-deposit-methods__faq-question:hover {
    background-color: #E6004D;
}

.page-beginner-guide-deposit-methods__faq-answer {
    background-color: #2a2a2a;
    color: #E0E0E0;
    padding: 0 25px;
    border-radius: 0 0 10px 10px;
    margin-top: -8px; /* Overlap with question for visual continuity */
    font-size: 1em;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-beginner-guide-deposit-methods__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content, or use JS to calculate scrollHeight */
    padding-top: 15px;
    padding-bottom: 15px;
}