

/* Backdrop Blur */
.modal-backdrop-custom {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    z-index: 999;
}

/* Modal Box */
.deposit-modal {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 410px;
    background: linear-gradient(to bottom, #141414, #060606);
    border: 1px solid #1f1f1f;
    border-radius: 8px;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
}

    /* Close Button */
    .deposit-modal .close-btn {
        position: absolute;
        right: 18px;
        top: 14px;
        color: #777;
        font-size: 22px;
        cursor: pointer;
        transition: 0.3s;
    }

        .deposit-modal .close-btn:hover {
            color: #fff;
        }

    /* Title */
    .deposit-modal .modal-title-custom {
        text-align: center;
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .deposit-modal .modal-subtitle {
        text-align: center;
        color: #ffffff47;
        font-size: 13px;
        margin-bottom: 18px;
    }

    /* Wallet Cards */
    .deposit-modal .wallet-card {
        position: relative;
        border-radius: 22px;
        padding: 20px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: 0.3s;
        cursor: pointer;
    }

        .deposit-modal .wallet-card:hover {
            transform: translateY(-2px);
        }

    /* Gold Card */
    .deposit-modal .gold-card {
        background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.15), transparent 45%), #121212;
        border: 1px solid rgba(212, 168, 95, 0.55);
        box-shadow: inset 0 0 25px rgba(212, 168, 95, 0.06), 0 0 18px rgba(212, 168, 95, 0.12);
    }

    /* Purple Card */
    .deposit-modal .purple-card {
        background: radial-gradient(circle at top left, rgba(162, 89, 255, 0.2), transparent 45%), #121212;
        border: 1px solid rgba(122, 68, 255, 0.55);
        box-shadow: inset 0 0 25px rgba(122, 68, 255, 0.12), 0 0 18px rgba(122, 68, 255, 0.15);
    }

    .deposit-modal .wallet-top {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 18px;
    }

    /* Icon Box */
    .deposit-modal .icon-box {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .deposit-modal .gold-icon {
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.25), rgba(255, 193, 7, 0.08));
        box-shadow: inset 0 0 14px rgba(255, 193, 7, 0.25), 0 0 18px rgba(255, 193, 7, 0.18);
    }

    .deposit-modal .purple-icon {
        background: linear-gradient(135deg, rgba(191, 90, 242, 0.35), rgba(122, 68, 255, 0.15));
        box-shadow: inset 0 0 14px rgba(191, 90, 242, 0.35), 0 0 18px rgba(122, 68, 255, 0.2);
    }

    .deposit-modal .icon-box i {
        font-size: 34px;
    }

    .deposit-modal .gold-icon i {
        color: #ffcc33;
    }

.purple-icon i {
    color: #ff7ae6;
}

/* Wallet Text */
.deposit-modal .wallet-title {
    color: #fff;
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 6px;
}

.deposit-modal .wallet-subtitle {
    color: #ffffff59;
    font-size: 12.5px;
}

.deposit-modal .wallet-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    color: #7c7c7c;
    font-size: 14px;
}

/* Close Button Bottom */
.deposit-modal .bottom-close {
    width: 70%;
    height: 46px;
    border-radius: 16px;
    border: 1px solid #1d1d1d;
    background: linear-gradient(to bottom, #111, #080808);
    color: #9b9b9b;
    font-size: 16px;
    font-weight: 600;
    margin: 10px auto 0;
    display: block;
    transition: 0.3s;
}

    .deposit-modal .bottom-close:hover {
        color: #fff;
        border-color: #333;
    }

@media(max-width:576px) {
    .deposit-modal .deposit-modal {
        padding: 18px;
    }

    .deposit-modal .wallet-title {
        font-size: 16px;
    }

    .deposit-modal .wallet-subtitle,
    .deposit-modal .wallet-footer {
        font-size: 13px;
    }

    .deposit-modal .icon-box {
        width: 58px;
        height: 58px;
    }

        .deposit-modal .icon-box i {
            font-size: 28px;
        }
}







/* Backdrop */
.guide-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(7px);
    z-index: 999;
    display: none;
}

/* Modal */
.deposit-guide-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 610px;
    background: linear-gradient(to bottom, rgba(24, 24, 24, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid #1e1e1e;
    border-radius: 8px;
    padding: 28px;
    z-index: 1000;
    display: none;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

    /* Close */
    .deposit-guide-modal .guide-close {
        position: absolute;
        top: 14px;
        right: 18px;
        color: #7f7f7f;
        font-size: 22px;
        cursor: pointer;
        transition: 0.3s;
    }

        .deposit-guide-modal .guide-close:hover {
            color: #fff;
        }

    /* Heading */
    .deposit-guide-modal .guide-title {
        text-align: center;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .deposit-guide-modal .guide-subtitle {
        text-align: center;
        color: #676767;
        font-size: 15px;
        margin-bottom: 28px;
    }

    /* Card */
    .deposit-guide-modal .limit-card {
        position: relative;
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 20px;
        border-radius: 22px;
        background: radial-gradient(circle at top left, rgba(255, 187, 0, 0.14), transparent 40%), #121212;
        border: 1px solid rgba(212, 168, 95, 0.45);
        box-shadow: inset 0 0 20px rgba(212, 168, 95, 0.08), 0 0 16px rgba(212, 168, 95, 0.08);
        margin-bottom: 24px;
    }

    /* Icon */
    .deposit-guide-modal .limit-icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        background: linear-gradient(135deg, rgba(255, 193, 7, 0.28), rgba(255, 193, 7, 0.08));
        box-shadow: inset 0 0 18px rgba(255, 193, 7, 0.25), 0 0 14px rgba(255, 193, 7, 0.12);
    }

        .deposit-guide-modal .limit-icon i {
            font-size: 34px;
            color: #f8c32c;
        }

    /* Content */
    .deposit-guide-modal .limit-content {
        flex: 1;
    }

    .deposit-guide-modal .limit-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 8px;
    }

    .deposit-guide-modal .limit-heading {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.3;
    }

    .deposit-guide-modal .limit-badge {
        padding: 8px 16px;
        border-radius: 999px;
        border: 1px solid rgba(212, 168, 95, 0.55);
        background: linear-gradient(to bottom, rgba(255, 193, 7, 0.08), rgba(255, 193, 7, 0.02));
        color: #d4a85f;
        font-size: 14px;
        white-space: nowrap;
    }

    .deposit-guide-modal .limit-desc {
        color: #8b8b8b;
        font-size: 15px;
        line-height: 1.6;
    }

    /* Button */
    .deposit-guide-modal .guide-btn {
        width: 65%;
        height: 48px;
        border-radius: 16px;
        border: 1px solid #1b1b1b;
        background: linear-gradient(to bottom, #111, #080808);
        color: #8e8e8e;
        font-size: 18px;
        font-weight: 600;
        display: block;
        margin: auto;
        transition: 0.3s;
    }

        .deposit-guide-modal .guide-btn:hover {
            border-color: #2f2f2f;
            color: #fff;
        }

@media(max-width:576px) {

    .deposit-guide-modal {
        padding: 20px;
    }

        .deposit-guide-modal .limit-card {
            flex-direction: column;
            align-items: flex-start;
        }

        .deposit-guide-modal .limit-top {
            flex-direction: column;
            align-items: flex-start;
        }

        .deposit-guide-modal .guide-btn {
            width: 100%;
        }

        .deposit-guide-modal .limit-badge {
            font-size: 12px;
        }
}