/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BASE ===== */
body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 30% 40%, #1a1a35, #0a0a14 80%);
    padding: 24px;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 3px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(16px);
    background: rgba(20, 20, 40, 0.80);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 22px;
    color: rgba(255, 255, 255, 0.40);
    font-size: 13px;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 999;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== PASTE BUTTON ===== */
.paste-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 8px;
    padding: 4px 12px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 11px;
    font-weight: 450;
    cursor: pointer;
    transition: 0.2s;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    letter-spacing: 0.2px;
}

.paste-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}