/* ========== Toast ========== */
.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.toast-item {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    animation: toastIn 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast-item.removing {
    opacity: 0;
    transform: translateY(20px);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== Copy Popup ========== */
.copy-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    display: none;
    z-index: 3000;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    pointer-events: none;
}

.copy-popup.visible {
    display: block;
    animation: toastIn 0.3s ease;
}

/* ========== Page Title ========== */
.page-title {
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin: 20px 0 10px;
    font-size: var(--fs-title);
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
