﻿:root {
    --page-bg: #080808;
    --panel-bg: #1b1b1b;
    --panel-border: #252525;
    --muted-text: #b3b3b3;
    --text-soft: #b0b0b0;
    --soft-text: #8d8d8d;
    --gold-1: #7c6120;
    --gold-2: #f8d768;
    --gold-3: #ffc53b;
    --textFontSize: clamp(0.75rem, 1vw, 0.95rem);
    --borderThin: 1px solid rgba(255, 255, 255, 0.08);
    --borderRadius: 10px;
}



.deposit-page {
    margin: 0 auto;
    padding: 0 16px 32px;
}

.deposit-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0 6px;
    border-bottom: 1px solid #242424;
}

.deposit-title {
    margin: 0;
    font-size: clamp(1rem, 1.3vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    flex: 1;
}

.icon-action {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

    .icon-action:hover {
        background: #1f1f1f;
        transform: translateY(-1px);
    }

    .icon-action:focus-visible,
    .chain-select:focus-visible,
    .copy-btn:focus-visible,
    .share-btn:focus-visible {
        outline: none;
        /*outline-offset: 0;*/
    }

/*.form-block {
    padding-top: 14px;
}*/


.field-label,
.tips-title {
    display: block;
    margin-bottom: 10px;
    font-size: var(--textFontSize);
    color: #fff;
    margin-bottom: 3px;
    font-weight: 500;
}

.chain-select-wrap {
    position: relative;
    /*width: 50%;*/
    margin-bottom: 12px;
}

    .chain-select-wrap::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 14px;
        width: 22px;
        height: 22px;
        background: url("../Temp/Template-Images/dollerCoin.png") center/contain no-repeat;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 1;
    }

    .chain-select-wrap::after {
        content: "\f282";
        font-family: "bootstrap-icons";
        position: absolute;
        top: 30%;
        right: 35px;
        color: #fff;
        font-size: 0.85rem;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 1;
    }

.chain-select {
    width: 100%;
    min-height: 40px;
    border: 1px solid #202020;
    border-radius: var(--borderRadius);
    background-color: #1b1b1b;
    color: #fff;
    padding: 8px 42px 8px 11px;
    font-weight: 600;
    font-size: var(--textFontSize);
    line-height: 1.4;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    -webkit-appearance: none;
    -moz-appearance: none;
}

    .chain-select option {
        /*background: #d4af3729;*/
        background: #090909;
        color: #fff;
        font-weight: 700;
        padding: 12px 14px;
    }

        .chain-select option:checked,
        .chain-select option[selected] {
            background: #d4af3729;
            color: #fff;
            padding: 12px 14px;
        }

.address-card {
    background: var(--panel-bg);
    border-radius: 10px;
    padding: 16px 14px 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.qr-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}

/*.qr-frame {*/
/*width: 164px;*/
/*aspect-ratio: 1;
            background: #fff;*/
/*padding: 10px;*/
/*border: 1px solid #d3d3d3;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
        }*/

.qr-frame svg {
    width: 100%;
    height: 100%;
    display: block;
}

.support-note {
    font-size: var(--textFontSize);
    color: var(--text-soft);
    text-align: center;
}

.address-label {
    display: block;
    font-size: var(--textFontSize);
    color: var(--text-soft);
}

.address-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.address-value {
    margin: 0;
    color: #fff;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    word-break: break-all;
}

.copy-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #f5f5f5;
    flex-shrink: 0;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

    .copy-btn:hover {
        background: #232323;
        color: var(--gold-2);
    }

.tips-wrap {
    padding-top: 18px;
}

.tips-list {
    margin: 0 0 20px;
    padding-left: 18px;
    color: #ececec;
}

    .tips-list li {
        margin-bottom: 10px;
        line-height: 1.55;
        font-size: var(--textFontSize);
        color: var(--text-soft)
    }

.share-btn {
    width: 100%;
    min-height: 39px;
    border: none;
    border-radius: 30px;
    background: radial-gradient(ellipse farthest-corner at right bottom,#fedb37 0%,#fdb931 8%,#9f7928 30%,#8a6e2f 40%,transparent 80%),radial-gradient(ellipse farthest-corner at left top,#fff,#ffffac 8%,#d1b464 25%,#5d4a1f 62.5% 100%);
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: var(--textFontSize);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

    .share-btn i {
        font-size: 1rem;
    }

.feedback-text {
    min-height: 22px;
    margin-top: 10px;
    color: var(--soft-text);
    font-size: 0.92rem;
}

.QrImage {
    width: 160px;
}

.custom-floating {
    position: relative;
    display: flex;
    /*width: 50%;*/
    flex-direction: column;
}

    .custom-floating input {
        height: 39px;
        margin-bottom: 12px;
        background: #050505;
        border: 1px solid #1f1f1f;
        border-radius: 8px;
        color: #fff;
        font-size: 13px;
        outline: none;
        box-shadow: none;
        padding-inline: 12px;
    }

        .custom-floating input:focus {
            background: #050505;
            border-color: #2d2d2d;
            color: #fff;
            box-shadow: none;
        }


        /* LABEL */



        /* NUMBER SPINNER */
        .custom-floating input::-webkit-outer-spin-button,
        .custom-floating input::-webkit-inner-spin-button {
            opacity: 1;
        }

    /* MAX BUTTON */
    .custom-floating .max-btn {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #d4a85f;
        font-size: 16px;
        font-weight: 500;
    }

        .custom-floating .max-btn:hover {
            color: #e9bc6a;
        }

.input-group {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 35%;
    transform: translateY(-50%);
    z-index: 5;
    cursor: pointer;
    color: #999;
}

#txttxnpwd {
    padding-right: 45px !important;
    border-radius: 8px;
}
.forgot-link {
    font-size: 12px;
    font-weight: 700;
    color: #FDB931;
    text-decoration:none;
}
.forgot-link:hover{
    text-decoration:underline;

}
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    margin-bottom: 12px;
    gap: 10px;
}
    .input-group > label {
        font-size: 14px;
    }
      /*  .input-group > label span {
            color: #f2b230;
        }*/
.all-chip {
    min-width: 3.5rem;
    border: 1px solid rgba(242, 181, 68, 0.45);
    color: var(--gold);
    background: rgba(242, 181, 68, 0.06);
    font-size: 14px;
    line-height: 1;
    padding: 0.3rem 0.85rem;
}
.label-text{
    font-size:14px;
}
.label-text {
    color: #b0b0b0;
    font-size: var(--textFontSize);
}
.value-accent {
    color: #d4a85e;
    font-weight: 700;
}

.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2em;
}
/* Bootstrap Pagination Style */

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.375rem;
    gap: 0;
}

    .pagination .page-item {
        margin: 0;
    }

    .pagination .page-link {
        position: relative;
        display: block;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        color: #ffffff;
        text-decoration: none;
        background-color: #3636360a;
        border: 1px solid #dee2e6;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

        .pagination .page-link:hover {
            z-index: 2;
            color: #0a58ca;
            background-color: #e9ecef;
            border-color: #dee2e6;
        }

        .pagination .page-link:focus {
            z-index: 3;
            color: #0a58ca;
            background-color: #e9ecef;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
        }

    .pagination .page-item:not(:first-child) .page-link {
        margin-left: -1px;
    }

    .pagination .page-item:first-child .page-link {
        border-top-left-radius: 0.375rem;
        border-bottom-left-radius: 0.375rem;
    }

    .pagination .page-item:last-child .page-link {
        border-top-right-radius: 0.375rem;
        border-bottom-right-radius: 0.375rem;
    }

    .pagination .page-item.active .page-link {
        z-index: 3;
        color: #000000;
        background-color: #f4b64f;
        border-color: #f4b64f;
    }

    .pagination .page-item.disabled .page-link,
    .pagination .page-link:disabled {
        color: #ffffff;
        pointer-events: none;
        background-color: #7c7c7c;
        border-color: #dee2e6;
        opacity: 0.65;
    }

    /* Icon Alignment */
    .pagination .page-link i {
        font-size: 14px;
        vertical-align: middle;
    }

.dropdown-solid {
    background: #111118 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

.gold-gradient {
    background: linear-gradient(90deg, #bfa02c 0%, #e6c64c 50%, #bfa02c 100%);
    background-size: 200% auto;
    transition: 0.3s;
}

    .gold-gradient:hover {
        background-position: right center;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
    }

#profileDropdown:not(.hidden) {
    animation: dropdownSlide 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
