/* style/payment-methods-deposit-options.css */
.page-payment-methods-deposit-options {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

.page-payment-methods-deposit-options__hero-section {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-color: #003366; /* Fallback */
}

.page-payment-methods-deposit-options__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-payment-methods-deposit-options__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.8), rgba(255, 204, 0, 0.4));
    z-index: 2;
}

.page-payment-methods-deposit-options__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 3;
}

.page-payment-methods-deposit-options__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
}

.page-payment-methods-deposit-options__cta-button {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.page-payment-methods-deposit-options__cta-button:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.page-payment-methods-deposit-options__section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-payment-methods-deposit-options__section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-payment-methods-deposit-options__section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-payment-methods-deposit-options__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.page-payment-methods-deposit-options__why-i9bet p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.page-payment-methods-deposit-options__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-payment-methods-deposit-options__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-payment-methods-deposit-options__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.page-payment-methods-deposit-options__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

.page-payment-methods-deposit-options__feature-item h3 {
    color: #003366;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-payment-methods-deposit-options__feature-item p {
    color: #666;
    font-size: 0.95em;
}

.page-payment-methods-deposit-options__methods .page-payment-methods-deposit-options__section-title + p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #555;
}

.page-payment-methods-deposit-options__method-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-payment-methods-deposit-options__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    align-self: center;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}

.page-payment-methods-deposit-options__method-card h3 {
    color: #003366;
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
}

.page-payment-methods-deposit-options__method-card h4 {
    color: #003366;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-payment-methods-deposit-options__method-card p,
.page-payment-methods-deposit-options__method-card ol,
.page-payment-methods-deposit-options__method-card ul {
    color: #444;
    margin-bottom: 15px;
    font-size: 1em;
}

.page-payment-methods-deposit-options__method-card ol li,
.page-payment-methods-deposit-options__method-card ul li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.page-payment-methods-deposit-options__method-card ol li strong {
    color: #003366;
}

.page-payment-methods-deposit-options__method-card a {
    color: #003366;
    text-decoration: underline;
}

.page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list {
    list-style: none;
    counter-reset: guide-counter;
    padding: 0;
    margin: 0;
}

.page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li {
    position: relative;
    padding-left: 70px;
    margin-bottom: 30px;
    min-height: 50px;
}

.page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li::before {
    counter-increment: guide-counter;
    content: counter(guide-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFCC00;
    color: #003366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li h3 {
    font-size: 1.5em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li p {
    color: #444;
}

.page-payment-methods-deposit-options__guide-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-options__important-notes .page-payment-methods-deposit-options__notes-list {
    list-style: none;
    padding: 0;
}

.page-payment-methods-deposit-options__important-notes .page-payment-methods-deposit-options__notes-list li {
    background-color: #e6f7ff; /* Light blue background */
    border-left: 5px solid #003366;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: #003366;
    font-size: 1.05em;
    line-height: 1.5;
}

.page-payment-methods-deposit-options__important-notes .page-payment-methods-deposit-options__notes-list li strong {
    color: #003366;
}

.page-payment-methods-deposit-options__notes-image {
    display: block;
    max-width: 80%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-payment-methods-deposit-options__faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-payment-methods-deposit-options__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-payment-methods-deposit-options__faq-question {
    padding: 20px;
    margin: 0;
    font-size: 1.3em;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e0f2f7;
    border-bottom: 1px solid #d0e7ed;
    transition: background-color 0.3s ease;
}

.page-payment-methods-deposit-options__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #FFCC00;
    transition: transform 0.3s ease;
}

.page-payment-methods-deposit-options__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-payment-methods-deposit-options__faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background-color: #fff;
    color: #444;
}

.page-payment-methods-deposit-options__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px;
}

.page-payment-methods-deposit-options__final-cta-section {
    background: linear-gradient(90deg, #003366, #0055aa);
    color: #fff;
    text-align: center;
    padding: 80px 0;
    border-radius: 0;
    box-shadow: none;
}

.page-payment-methods-deposit-options__final-cta-title {
    color: #FFCC00;
    font-size: 2.8em;
    margin-bottom: 25px;
}

.page-payment-methods-deposit-options__final-cta-title::after {
    background-color: #fff;
}

.page-payment-methods-deposit-options__final-cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #e0f2f7;
}

.page-payment-methods-deposit-options__floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #003366;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    max-width: 280px;
    animation: page-payment-methods-deposit-options-slideIn 0.5s forwards;
}

@keyframes page-payment-methods-deposit-options-slideIn {
    from { right: -300px; opacity: 0; }
    to { right: 20px; opacity: 1; }
}

.page-payment-methods-deposit-options__floating-promo-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95em;
    color: #e0f2f7;
}

.page-payment-methods-deposit-options__floating-promo-content p strong {
    color: #FFCC00;
    font-size: 1.1em;
}

.page-payment-methods-deposit-options__floating-promo-button {
    background-color: #FFCC00;
    color: #003366;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 10px;
}

.page-payment-methods-deposit-options__floating-promo-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-payment-methods-deposit-options__floating-promo-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.page-payment-methods-deposit-options__floating-promo-close:hover {
    color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-payment-methods-deposit-options__hero-title {
        font-size: 2.5em;
    }
    .page-payment-methods-deposit-options__hero-description {
        font-size: 1.1em;
    }
    .page-payment-methods-deposit-options__section-title {
        font-size: 2em;
    }
    .page-payment-methods-deposit-options__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .page-payment-methods-deposit-options__method-card h3 {
        font-size: 1.5em;
    }
    .page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li {
        padding-left: 60px;
    }
    .page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li::before {
        width: 45px;
        height: 45px;
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-payment-methods-deposit-options__hero-section {
        height: 400px;
    }
    .page-payment-methods-deposit-options__hero-title {
        font-size: 2em;
    }
    .page-payment-methods-deposit-options__hero-description {
        font-size: 1em;
    }
    .page-payment-methods-deposit-options__section {
        padding: 40px 0;
    }
    .page-payment-methods-deposit-options__section-title {
        font-size: 1.8em;
    }
    .page-payment-methods-deposit-options__features-grid {
        grid-template-columns: 1fr;
    }
    .page-payment-methods-deposit-options__method-icon {
        width: 60px;
        height: 60px;
    }
    .page-payment-methods-deposit-options__method-card h3 {
        font-size: 1.3em;
    }
    .page-payment-methods-deposit-options__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-payment-methods-deposit-options__faq-answer {
        padding: 15px;
    }
    .page-payment-methods-deposit-options__final-cta-section {
        padding: 60px 0;
    }
    .page-payment-methods-deposit-options__final-cta-title {
        font-size: 2.2em;
    }
    .page-payment-methods-deposit-options__floating-promo {
        bottom: 10px;
        right: 10px;
        max-width: 250px;
        padding: 12px 15px;
    }
    .page-payment-methods-deposit-options__floating-promo-content p {
        font-size: 0.85em;
    }
    .page-payment-methods-deposit-options__floating-promo-button {
        padding: 8px 15px;
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .page-payment-methods-deposit-options__hero-section {
        height: 350px;
    }
    .page-payment-methods-deposit-options__hero-title {
        font-size: 1.8em;
    }
    .page-payment-methods-deposit-options__hero-description {
        font-size: 0.9em;
    }
    .page-payment-methods-deposit-options__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-payment-methods-deposit-options__section-title {
        font-size: 1.5em;
    }
    .page-payment-methods-deposit-options__method-card {
        padding: 20px;
    }
    .page-payment-methods-deposit-options__method-icon {
        width: 50px;
        height: 50px;
    }
    .page-payment-methods-deposit-options__method-card h3 {
        font-size: 1.2em;
    }
    .page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li {
        padding-left: 50px;
    }
    .page-payment-methods-deposit-options__general-guide .page-payment-methods-deposit-options__guide-list li::before {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    .page-payment-methods-deposit-options__faq-question {
        font-size: 1em;
        padding: 12px;
    }
    .page-payment-methods-deposit-options__final-cta-title {
        font-size: 1.8em;
    }
    .page-payment-methods-deposit-options__final-cta-description {
        font-size: 1em;
    }
    .page-payment-methods-deposit-options__floating-promo {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0;
        padding: 10px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .page-payment-methods-deposit-options__floating-promo-content {
        flex-grow: 1;
        text-align: left;
    }
    .page-payment-methods-deposit-options__floating-promo-content p {
        display: inline;
        margin-right: 10px;
    }
    .page-payment-methods-deposit-options__floating-promo-button {
        margin-top: 0;
        white-space: nowrap;
    }
    .page-payment-methods-deposit-options__floating-promo-close {
        position: static;
        margin-left: 10px;
    }
}