body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
    margin: 0
}

code {
    font-family: source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace
}

.App {
    text-align: center
}

.App-logo {
    height: 40vmin;
    pointer-events: none
}

@media (prefers-reduced-motion:no-preference) {
    .App-logo {
        animation: App-logo-spin 20s linear infinite
    }
}

.App-header {
    align-items: center;
    background-color: #282c34;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: calc(10px + 2vmin);
    justify-content: center;
    min-height: 100vh
}

.App-link {
    color: #61dafb
}

@keyframes App-logo-spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74d3c;
    --toastify-color-transparent: #ffffffb3;
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-container-width: fit-content;
    --toastify-toast-width: 320px;
    --toastify-toast-offset: 16px;
    --toastify-toast-top: max(var(--toastify-toast-offset),env(safe-area-inset-top));
    --toastify-toast-right: max(var(--toastify-toast-offset),env(safe-area-inset-right));
    --toastify-toast-left: max(var(--toastify-toast-offset),env(safe-area-inset-left));
    --toastify-toast-bottom: max(var(--toastify-toast-offset),env(safe-area-inset-bottom));
    --toastify-toast-background: #fff;
    --toastify-toast-padding: 14px;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-toast-bd-radius: 6px;
    --toastify-toast-shadow: 0px 4px 12px #0000001a;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error);
    --toastify-color-progress-bgo: 0.2 --bs-primary: #d4af37;
    --bs-primary-rgb: 212, 175, 55;
    --bs-secondary: #1a1a1a;
    --bs-secondary-rgb: 26, 26, 26;
    --bs-dark: #0a0a0a;
    --bs-light: #f8f9fa;
    --bs-gray: #8c8c8c;
    --bs-success: #28a745;
    --bs-danger: #dc3545;
    --bs-accent: #ffd700;
    --color1: #ff5c5c;
    --color2: #000000;
    --color3: #7a0014;
}


.verification-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .verification-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--bs-primary), #b8941f, var(--bs-primary));
    }

    .verification-card:hover {
        border-color: rgba(212, 175, 55, 0.5);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
        transform: translateY(-5px);
    }

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

    .logo-circle img {
        width: 60px;
        height: 60px;
    }

.badge-custom {
    background: rgba(212, 175, 55, 0.15);
    color: var(--bs-primary);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-dark) 100%);
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--bs-light) 0%, var(--bs-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    color: var(--bs-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--bs-primary), #b8941f, var(--bs-primary));
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bs-primary);
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.feature-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--bs-gray);
}

.footer {
    background: linear-gradient(135deg, var(--bs-dark) 0%, var(--bs-secondary) 100%);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-text {
    color: var(--bs-gray);
    margin-bottom: 1rem;
}

.footer-heading {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--bs-gray);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--bs-primary);
        }

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background: rgba(212, 175, 55, 0.15);
        color: var(--bs-primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    }

.copyright {
    color: var(--bs-gray);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-links a {
    color: var(--bs-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .copyright-links a:hover {
        color: var(--bs-primary);
    }

/* Loader */
.loader {
    border: 4px solid rgba(255, 255, 155, 0.5);
    margin-left: 5px;
    border-top: 3px solid var(--bs-primary);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.loading .loader {
    display: inline-block;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 5px;
}

.popup {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    color: var(--bs-light);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 100%;
    height: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

    .popup::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--bs-primary), #b8941f, var(--bs-primary));
    }

    .popup h2 {
        margin: 0.5rem 0;
        font-size: 1.5rem;
        font-weight: 700;
    }

.section {
    text-align: center;
    margin: 0.5rem 0;
}

.emoji-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.png_emoji {
    width: 30px;
    height: auto;
}

.png2_emoji {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 3px;
}

.png2_emoji2 {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 2px;
}

.inline-section,
.inline-section2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0.5rem 0;
    background: rgba(212, 175, 55, 0.08);
    padding: 0.8rem;
    border-radius: 12px;
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.inline-section2 {
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.inline-section .emoji {
    font-size: 30px;
    width: 40px;
    text-align: center;
}

.text .title {
    font-size: 1.2rem;
    font-weight: 800;
    color: gold;
}

.text .subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.subtitle2 {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 500;
}

.subtitle22 {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.close-btn {
    margin-top: 1.5rem;
    padding: 0.75rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #b8941f 100%);
    color: var(--bs-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .close-btn:hover {
        background: linear-gradient(135deg, #e0b83d 0%, #c9a028 100%);
        transform: translateY(-2px);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bs-dark) 0%, var(--bs-secondary) 100%);
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--bs-primary) 0%, #b8941f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--bs-gray);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bs-secondary) 0%, var(--bs-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    }

.cta-title {
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--bs-light) 0%, var(--bs-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--bs-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


.new_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 5px;
}

/* ✅ PREMIUM GLASS POPUP */
.new_popup {
    background: linear-gradient( 135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 40%, rgba(0,0,0,0.35) 100% );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--bs-light);
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    width: 100%;
    height: 95%;
    max-width: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.25), inset 0 -8px 20px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    animation: new_fadeIn .3s ease-out;
}

    /* ✅ Glass Reflection Shine */
    .new_popup::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 35%, transparent 60% );
        pointer-events: none;
    }

    .new_popup::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,var(--bs-primary),#b8941f,var(--bs-primary));
    }

.new_title_main {
    margin: .8rem 0 .3rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 6px rgba(212,175,55,0.4), 0 0 14px rgba(212,175,55,0.25);
}

.new_section {
    text-align: center;
    margin: .5rem 0;
}

.new_emoji_line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.new_png_emoji {
    width: 30px;
    height: auto;
}

.new_png2_emoji {
    width: 60px;
    height: auto;
    display: block;
    margin: 0 auto 6px;
    filter: drop-shadow(0 0 12px rgba(212,175,55,0.35));
}

/* ✅ Glass Panels */
.new_inline_section,
.new_inline_section2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: .5rem 0;
    border-radius: 12px;
    text-align: left;
}

.new_inline_section {
    padding: .35rem .8rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 6px 18px rgba(0,0,0,0.35);
}

.new_inline_section2 {
    padding: .8rem .8rem;
    background: rgba(40,167,69,0.12);
    border: 1px solid rgba(40,167,69,0.25);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 6px 18px rgba(0,0,0,0.35);
}

.new_text p {
    margin: 3px;
    line-height: 1.2;
}

.new_text .new_title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5d97a;
    text-shadow: 0 0 8px rgba(245,217,122,0.65), 0 0 18px rgba(212,175,55,0.35);
}

.new_text .new_subtitle {
    font-size: .8rem;
    opacity: .85;
    margin-bottom: 0;
}

.new_subtitle2 {
    font-size: .92rem;
    opacity: .85;
    margin-top: 6px;
    line-height: 1.25;
    font-weight: 500;
}

.new_inline_section2 .new_text {
    position: relative;
    padding-top: 18px;
}

    .new_inline_section2 .new_text::before {
        content: "IMPORTANT NOTICE";
        position: absolute;
        top: -5px;
        left: 50%;
        transform: translateX(-50%);
        font-size: .85rem;
        font-weight: 700;
        color: #f5d97a;
        white-space: nowrap;
        text-shadow: 0 0 8px rgba(245,217,122,0.65), 0 0 18px rgba(212,175,55,0.35);
    }

/* ✅ Buttons Area */
.new_buttons_area {
    margin-top: auto;
    width: 100%;
}

/* ===== VERIFY BUTTON — PREMIUM 3D ===== */
.new_verify_btn {
    margin-top: 0.8rem;
    padding: .55rem;
    width: 100%;
    font-size: 0.85rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .2s ease;
    position: relative;
    clip-path: polygon( 0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100% );
    background: linear-gradient( 145deg, var(--color1) 0%, /* light red */
    var(--color2) 50%, /* main red */
    var(--color3) 100% /* dark red */
    );
    color: #FFFFFF;
    box-shadow: 0 6px 0 #8a6d1b, 0 12px 25px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
    text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 12px rgba(255,255,255,0.45);
}

    .new_verify_btn:hover {
        transform: translateY(2px);
        box-shadow: 0 4px 0 #8a6d1b, 0 10px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
    }

    .new_verify_btn:active {
        transform: translateY(5px);
        box-shadow: 0 1px 0 #8a6d1b, 0 6px 12px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    }

/* ===== CLOSE BUTTON — GLASS STYLE ===== */
.new_close_btn {
    margin-top: 0.8rem;
    padding: .45rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: .25s ease;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 6px 18px rgba(0,0,0,0.4);
    color: #fff;
}

    .new_close_btn:hover {
        background: rgba(255,255,255,0.16);
    }

/* ✅ Amount Highlight */
.amount-highlight {
    color: #f5d97a;
    text-shadow: 0 0 8px rgba(245,217,122,0.65), 0 0 18px rgba(212,175,55,0.35);
    font-weight: 700;
}

/* ===== NEW POP-up CSS ===== */

/* ===== Overlay ===== */
.release_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

    .release_overlay.active {
        opacity: 1;
        visibility: visible;
    }

/* ===== Loading ===== */
.release_loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 18px;
    animation: fadeIn 0.4s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #00ffa6;
    animation: spin 1s linear infinite;
    box-shadow: 0 0 20px #00ffa680;
}

/* ===== Popup ===== */
.release_popup {
    display: none;
    width: 360px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    padding: 25px;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(0,255,166,0.25);
    animation: popupIn 0.5s ease;
}

.popup_icon {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 12px rgba(255,210,0,0.6));
    animation: popIcon 0.5s ease;
}

@keyframes popIcon {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup_close {
    cursor: pointer;
    font-size: 20px;
    color: #ff6b6b;
    transition: 0.3s;
}

    .popup_close:hover {
        transform: scale(1.2);
    }

.popup_title {
    margin-top: 5px;
    margin-bottom: 15px;
    color: #ff6b6b;
}

/* ===== DEPOSIT GLASS BOX UPGRADE ===== */
.glass_box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient( 145deg, rgba(255,255,255,0.20), rgba(255,255,255,0.06) );
    border-radius: 16px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: inset 0 0 18px rgba(255,255,255,0.12), 0 12px 30px rgba(0,0,0,0.4);
    margin-bottom: 20px;
}

.deposit_icon {
    font-size: 22px;
    color: #ffd000;
    filter: drop-shadow(0 0 10px rgba(255,208,0,0.7));
}

/* Close Button */
.close_btn {
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    background: linear-gradient(45deg,#00ffa6,#00c3ff);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .close_btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 20px #00ffa6;
    }

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes popupIn {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ===== USDT INFO BOX ===== */
.usdt_info_box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 14px;
    background: linear-gradient( 145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05) );
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: inset 0 0 15px rgba(255,255,255,0.15), 0 10px 25px rgba(0,0,0,0.35);
    backdrop-filter: blur(18px);
}

.usdt_icon {
    font-size: 22px;
    filter: drop-shadow(0 0 8px #00ffa6);
}

.usdt_text {
    font-weight: 600;
    letter-spacing: 0.3px;
}


/* label text (Available / Required) */
.label_text {
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-right: 8px;
    text-transform: uppercase;
}

/* Available USDT value */
.usdt_value {
    font-weight: 700;
    font-size: 16px;
    padding: 4px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg,#00ffa6,#00c3ff);
    color: #000;
    box-shadow: 0 0 12px rgba(0,255,166,0.4), inset 0 0 6px rgba(255,255,255,0.4);
}

/* Required USDT value */
.required_value {
    font-weight: 700;
    font-size: 16px;
    padding: 4px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg,#ff6b6b,#ffb347);
    color: #000;
    box-shadow: 0 0 12px rgba(255,120,120,0.4), inset 0 0 6px rgba(255,255,255,0.4);
}


.new_popup {
    position: relative;
    overflow: hidden;
}

.watermark-layer {
    position: absolute;
    inset: -120px;
    z-index: 1;
    overflow: hidden;
    transform: rotate(-25deg);
    pointer-events: none;
}

.new_section,
.new_inline_section,
.new_inline_section2,
.new_buttons_area {
    position: relative;
    z-index: 2;
}

.watermark-grid {
    display: grid;
    grid-template-columns: repeat(5, 150px);
    gap: 15px 15px;
    width: 1300px;
    opacity: 0.15;
}

    .watermark-grid span {
        color: red;
        font-size: 15px;
        font-weight: 900;
        letter-spacing: 2px;
        text-align: center;
        white-space: nowrap;
    }

.new_popup > *:not(.watermark-layer) {
    position: relative;
    z-index: 1;
}


/* Modal styles (unchanged from before) */
.overlayy {
    position: fixed;
    inset: 0;
    background: var(--modal-bg);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

    .overlayy.show {
        display: flex;
    }

.modal {
    width: 100%;
    max-width: 420px;
    background: linear-gradient(180deg,#061025,#071025);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.04);
    color: var(--text);
    text-align: center;
    position: relative;
}

    .modal .close {
        position: absolute;
        right: 18px;
        top: 16px;
        background: transparent;
        border: 0;
        color: var(--muted);
        font-size: 20px;
        cursor: pointer;
    }

.modal-illustration {
    width: 56px;
    height: 56px;
    margin: 0 auto 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#ff758c,#ffb199);
    box-shadow: 0 8px 30px rgba(255,117,140,0.12);
}

.modal h3 {
    margin: 6px 0 6px 0;
    font-size: 18px;
}

.modal p {
    margin: 8px 0 18px 0;
    color: var(--muted);
    font-size: 14px;
}

.modal .ok-btn {
    padding: 10px 16px;
    border-radius: 10px;
    border: 0;
    background: linear-gradient(90deg,var(--accent), #7c5cff);
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.modal .hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
    .center-wrap {
        transition: none
    }

    .modal {
        transition: none
    }
}

.Toastify__toast-container {
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    -webkit-transform: translateZ(9999);
    -webkit-transform: translateZ(var(--toastify-z-index));
    width: -webkit-fit-content;
    width: fit-content;
    width: var(--toastify-container-width);
    z-index: 9999;
    z-index: var(--toastify-z-index)
}

.Toastify__toast-container--top-left {
    left: max(16px,env(safe-area-inset-left));
    left: var(--toastify-toast-left);
    top: max(16px,env(safe-area-inset-top));
    top: var(--toastify-toast-top)
}

.Toastify__toast-container--top-center {
    align-items: center;
    left: 50%;
    top: max(16px,env(safe-area-inset-top));
    top: var(--toastify-toast-top);
    transform: translateX(-50%)
}

.Toastify__toast-container--top-right {
    align-items: end;
    right: max(16px,env(safe-area-inset-right));
    right: var(--toastify-toast-right);
    top: max(16px,env(safe-area-inset-top));
    top: var(--toastify-toast-top)
}

.Toastify__toast-container--bottom-left {
    bottom: max(16px,env(safe-area-inset-bottom));
    bottom: var(--toastify-toast-bottom);
    left: max(16px,env(safe-area-inset-left));
    left: var(--toastify-toast-left)
}

.Toastify__toast-container--bottom-center {
    align-items: center;
    bottom: max(16px,env(safe-area-inset-bottom));
    bottom: var(--toastify-toast-bottom);
    left: 50%;
    transform: translateX(-50%)
}

.Toastify__toast-container--bottom-right {
    align-items: end;
    bottom: max(16px,env(safe-area-inset-bottom));
    bottom: var(--toastify-toast-bottom);
    right: max(16px,env(safe-area-inset-right));
    right: var(--toastify-toast-right)
}

.Toastify__toast {
    --y: 0;
    align-items: center;
    border-radius: 6px;
    border-radius: var(--toastify-toast-bd-radius);
    box-shadow: 0 4px 12px #0000001a;
    box-shadow: var(--toastify-toast-shadow);
    box-sizing: border-box;
    display: flex;
    flex: 1 1 auto;
    font-family: sans-serif;
    font-family: var(--toastify-font-family);
    margin-bottom: 1rem;
    max-height: 800px;
    max-height: var(--toastify-toast-max-height);
    min-height: 64px;
    min-height: var(--toastify-toast-min-height);
    padding: 14px;
    padding: var(--toastify-toast-padding);
    position: relative;
    touch-action: none;
    width: 320px;
    width: var(--toastify-toast-width);
    word-break: break-word;
    z-index: 0
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        left: env(safe-area-inset-left);
        margin: 0;
        width: 100vw
    }

    .Toastify__toast-container--top-center, .Toastify__toast-container--top-left, .Toastify__toast-container--top-right {
        top: env(safe-area-inset-top);
        transform: translateX(0)
    }

    .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-right {
        bottom: env(safe-area-inset-bottom);
        transform: translateX(0)
    }

    .Toastify__toast-container--rtl {
        left: auto;
        right: env(safe-area-inset-right)
    }

    .Toastify__toast {
        --toastify-toast-width: 100%;
        border-radius: 0;
        margin-bottom: 0
    }
}

.Toastify__toast-container[data-stacked=true] {
    width: 320px;
    width: var(--toastify-toast-width)
}

.Toastify__toast--stacked {
    position: absolute;
    transform: translate3d(0,var(--y),0) scale(var(--s));
    transition: transform .3s;
    width: 100%
}

    .Toastify__toast--stacked[data-collapsed] .Toastify__close-button, .Toastify__toast--stacked[data-collapsed] .Toastify__toast-body {
        transition: opacity .1s
    }

    .Toastify__toast--stacked[data-collapsed=false] {
        overflow: visible
    }

    .Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
        opacity: 0
    }

    .Toastify__toast--stacked:after {
        bottom: 100%;
        content: "";
        height: calc(var(--g)*1px);
        left: 0;
        position: absolute;
        right: 0
    }

    .Toastify__toast--stacked[data-pos=top] {
        top: 0
    }

    .Toastify__toast--stacked[data-pos=bot] {
        bottom: 0
    }

        .Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
            transform-origin: top
        }

    .Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
        transform-origin: bottom
    }

    .Toastify__toast--stacked:before {
        bottom: 0;
        content: "";
        height: 100%;
        left: 0;
        position: absolute;
        right: 0;
        transform: scaleY(3);
        z-index: -1
    }

.Toastify__toast--rtl {
    direction: rtl
}

.Toastify__toast--close-on-click {
    cursor: pointer
}

.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    display: flex;
    flex-shrink: 0;
    margin-inline-end: 10px;
    width: 22px
}

.Toastify--animate {
    animation-duration: .5s;
    animation-fill-mode: both
}

.Toastify--animate-icon {
    animation-duration: .3s;
    animation-fill-mode: both
}

.Toastify__toast-theme--dark {
    background: #121212;
    background: var(--toastify-color-dark);
    color: #fff;
    color: var(--toastify-text-color-dark)
}

.Toastify__toast-theme--colored.Toastify__toast--default, .Toastify__toast-theme--light {
    background: #fff;
    background: var(--toastify-color-light);
    color: #757575;
    color: var(--toastify-text-color-light)
}

.Toastify__toast-theme--colored.Toastify__toast--info {
    background: #3498db;
    background: var(--toastify-color-info);
    color: #fff;
    color: var(--toastify-text-color-info)
}

.Toastify__toast-theme--colored.Toastify__toast--success {
    background: #07bc0c;
    background: var(--toastify-color-success);
    color: #fff;
    color: var(--toastify-text-color-success)
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
    background: #f1c40f;
    background: var(--toastify-color-warning);
    color: #fff;
    color: var(--toastify-text-color-warning)
}

.Toastify__toast-theme--colored.Toastify__toast--error {
    background: #e74d3c;
    background: var(--toastify-color-error);
    color: #fff;
    color: var(--toastify-text-color-error)
}

.Toastify__progress-bar-theme--light {
    background: linear-gradient(90deg,#4cd964,#5ac8fa,#007aff,#34aadc,#5856d6,#ff2d55);
    background: var(--toastify-color-progress-light)
}

.Toastify__progress-bar-theme--dark {
    background: #bb86fc;
    background: var(--toastify-color-progress-dark)
}

.Toastify__progress-bar--info {
    background: #3498db;
    background: var(--toastify-color-progress-info)
}

.Toastify__progress-bar--success {
    background: #07bc0c;
    background: var(--toastify-color-progress-success)
}

.Toastify__progress-bar--warning {
    background: #f1c40f;
    background: var(--toastify-color-progress-warning)
}

.Toastify__progress-bar--error {
    background: #e74d3c;
    background: var(--toastify-color-progress-error)
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
    background: #ffffffb3;
    background: var(--toastify-color-transparent)
}

.Toastify__close-button {
    background: #0000;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: .7;
    outline: none;
    padding: 0;
    position: absolute;
    right: 6px;
    top: 6px;
    transition: .3s ease;
    z-index: 1
}

.Toastify__toast--rtl .Toastify__close-button {
    left: 6px;
    right: auto
}

.Toastify__close-button--light {
    color: #000;
    opacity: .3
}

.Toastify__close-button > svg {
    fill: currentColor;
    height: 16px;
    width: 14px
}

.Toastify__close-button:focus, .Toastify__close-button:hover {
    opacity: 1
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1)
    }

    to {
        transform: scaleX(0)
    }
}

.Toastify__progress-bar {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: .7;
    position: absolute;
    transform-origin: left;
    width: 100%;
    z-index: 1
}

.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards
}

.Toastify__progress-bar--controlled {
    transition: transform .2s
}

.Toastify__progress-bar--rtl {
    border-bottom-left-radius: 0;
    left: auto;
    right: 0;
    transform-origin: right
}

.Toastify__progress-bar--wrp {
    border-bottom-left-radius: 6px;
    border-bottom-left-radius: var(--toastify-toast-bd-radius);
    border-bottom-right-radius: 6px;
    border-bottom-right-radius: var(--toastify-toast-bd-radius);
    bottom: 0;
    height: 5px;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 100%
}

    .Toastify__progress-bar--wrp[data-hidden=true] {
        opacity: 0
    }

.Toastify__progress-bar--bg {
    height: 100%;
    opacity: .2;
    opacity: var(--toastify-color-progress-bgo);
    width: 100%
}

.Toastify__spinner {
    animation: Toastify__spin .65s linear infinite;
    border: 2px solid #e0e0e0;
    border-color: var(--toastify-spinner-color-empty-area);
    border-radius: 100%;
    border-right-color: #616161;
    border-right-color: var(--toastify-spinner-color);
    box-sizing: border-box;
    height: 20px;
    width: 20px
}

@keyframes Toastify__bounceInRight {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px,0,0)
    }

    75% {
        transform: translate3d(10px,0,0)
    }

    90% {
        transform: translate3d(-5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px,var(--y),0)
    }

    to {
        opacity: 0;
        transform: translate3d(2000px,var(--y),0)
    }
}

@keyframes Toastify__bounceInLeft {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(25px,0,0)
    }

    75% {
        transform: translate3d(-10px,0,0)
    }

    90% {
        transform: translate3d(5px,0,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px,var(--y),0)
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px,var(--y),0)
    }
}

@keyframes Toastify__bounceInUp {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,-20px,0)
    }

    75% {
        transform: translate3d(0,10px,0)
    }

    90% {
        transform: translate3d(0,-5px,0)
    }

    to {
        transform: translateZ(0)
    }
}

@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0,calc(var(--y) - 10px),0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,calc(var(--y) + 20px),0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes Toastify__bounceInDown {
    0%,60%,75%,90%,to {
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        transform: translate3d(0,25px,0)
    }

    75% {
        transform: translate3d(0,-10px,0)
    }

    90% {
        transform: translate3d(0,5px,0)
    }

    to {
        transform: none
    }
}

@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0,calc(var(--y) - 10px),0)
    }

    40%,45% {
        opacity: 1;
        transform: translate3d(0,calc(var(--y) + 20px),0)
    }

    to {
        opacity: 0;
        transform: translate3d(0,2000px,0)
    }
}

.Toastify__bounce-enter--bottom-left, .Toastify__bounce-enter--top-left {
    animation-name: Toastify__bounceInLeft
}

.Toastify__bounce-enter--bottom-right, .Toastify__bounce-enter--top-right {
    animation-name: Toastify__bounceInRight
}

.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown
}

.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp
}

.Toastify__bounce-exit--bottom-left, .Toastify__bounce-exit--top-left {
    animation-name: Toastify__bounceOutLeft
}

.Toastify__bounce-exit--bottom-right, .Toastify__bounce-exit--top-right {
    animation-name: Toastify__bounceOutRight
}

.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp
}

.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown
}

@keyframes Toastify__zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes Toastify__zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        transform: translate3d(0,var(--y),0) scale3d(.3,.3,.3)
    }

    to {
        opacity: 0
    }
}

.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut
}

@keyframes Toastify__flipIn {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }

    40% {
        animation-timing-function: ease-in;
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

@keyframes Toastify__flipOut {
    0% {
        transform: translate3d(0,var(--y),0) perspective(400px)
    }

    30% {
        opacity: 1;
        transform: translate3d(0,var(--y),0) perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: translate3d(0,var(--y),0) perspective(400px) rotateX(90deg)
    }
}

.Toastify__flip-enter {
    animation-name: Toastify__flipIn
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut
}

@keyframes Toastify__slideInRight {
    0% {
        transform: translate3d(110%,0,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideInLeft {
    0% {
        transform: translate3d(-110%,0,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideInUp {
    0% {
        transform: translate3d(0,110%,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideInDown {
    0% {
        transform: translate3d(0,-110%,0);
        visibility: visible
    }

    to {
        transform: translate3d(0,var(--y),0)
    }
}

@keyframes Toastify__slideOutRight {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(110%,var(--y),0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutLeft {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(-110%,var(--y),0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutDown {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(0,500px,0);
        visibility: hidden
    }
}

@keyframes Toastify__slideOutUp {
    0% {
        transform: translate3d(0,var(--y),0)
    }

    to {
        transform: translate3d(0,-500px,0);
        visibility: hidden
    }
}

.Toastify__slide-enter--bottom-left, .Toastify__slide-enter--top-left {
    animation-name: Toastify__slideInLeft
}

.Toastify__slide-enter--bottom-right, .Toastify__slide-enter--top-right {
    animation-name: Toastify__slideInRight
}

.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown
}

.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp
}

.Toastify__slide-exit--bottom-left, .Toastify__slide-exit--top-left {
    animation-duration: .3s;
    animation-name: Toastify__slideOutLeft;
    animation-timing-function: ease-in
}

.Toastify__slide-exit--bottom-right, .Toastify__slide-exit--top-right {
    animation-duration: .3s;
    animation-name: Toastify__slideOutRight;
    animation-timing-function: ease-in
}

.Toastify__slide-exit--top-center {
    animation-duration: .3s;
    animation-name: Toastify__slideOutUp;
    animation-timing-function: ease-in
}

.Toastify__slide-exit--bottom-center {
    animation-duration: .3s;
    animation-name: Toastify__slideOutDown;
    animation-timing-function: ease-in
}

@keyframes Toastify__spin {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

/*# sourceMappingURL=main.64adc576.css.map*/
