/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #12122a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --bg-glass: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --text-primary: #f0f0ff;
    --text-secondary: #8888aa;
    --text-muted: #555577;
    --accent-1: #7c5cfc;
    --accent-2: #00d4aa;
    --accent-gradient: linear-gradient(135deg, #7c5cfc, #00d4aa);
    --accent-gradient-hover: linear-gradient(135deg, #9070ff, #00e8bb);
    --danger: #ff4466;
    --danger-hover: #ff6688;
    --success: #00d4aa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(124, 92, 252, 0.15);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Light Mode ===== */
body.light {
    --bg-primary: #f0f2f8;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.85);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.15);
    --text-primary: #1a1a2e;
    --text-secondary: #555577;
    --text-muted: #8888aa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(124, 92, 252, 0.1);
}

body.light .bg-orb { opacity: 0.12; }
body.light .header { background: rgba(240, 242, 248, 0.85); }
body.light .card-details { background: rgba(0, 0, 0, 0.02); }
body.light .form-group input { background: rgba(0, 0, 0, 0.03); }
body.light .form-group input:focus { background: rgba(0, 0, 0, 0.01); }
body.light .btn-cancel:hover { background: rgba(0, 0, 0, 0.04); }
body.light .btn-icon:hover { background: rgba(0, 0, 0, 0.05); }
body.light .btn-toggle-pw { background: rgba(0, 0, 0, 0.05); }
body.light .btn-toggle-pw:hover { background: rgba(124, 92, 252, 0.1); }
body.light .modal-overlay { background: rgba(0, 0, 0, 0.3); }
body.light .toast { background: #ffffff; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
body.light .account-card.checked { background: rgba(0, 212, 170, 0.06); }

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* ===== Background Orbs ===== */
.app-container {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.bg-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c5cfc 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00d4aa 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6b9d 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
    opacity: 0.15;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    33% { transform: translateY(-30px) scale(1.05); }
    66% { transform: translateY(20px) scale(0.95); }
}

/* ===== Header ===== */
.header {
    position: relative;
    z-index: 10;
    padding: 28px 32px 20px;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 28px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: brightness(1); transform: scale(1); }
    50% { filter: brightness(1.3); transform: scale(1.1); }
}

.logo h1 {
    font-size: 26px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.date-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.date-day {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: capitalize;
}

.date-full {
    font-size: 12px;
    color: var(--text-secondary);
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    padding: 8px 16px;
    backdrop-filter: blur(10px);
}

.stats-count {
    font-size: 18px;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ===== Theme Toggle ===== */
.theme-toggle {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-smooth);
    font-size: 18px;
    line-height: 1;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-glow);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-icon {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(30deg);
}

/* ===== Main Content ===== */
.main-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 32px 120px;
}

/* ===== Sort Bar ===== */
.sort-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sort-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
}

.sort-btn {
    padding: 6px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sort-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.sort-btn.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 12px rgba(124, 92, 252, 0.25);
}

/* ===== Edit Modal ===== */
.modal-edit {
    text-align: left;
    max-width: 440px;
}

.modal-edit h3 {
    text-align: center;
}

.modal-edit .modal-icon {
    text-align: center;
}

.modal-edit .form-group {
    margin-bottom: 14px;
}

.modal-edit .form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.modal-edit .form-group input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: all var(--transition-fast);
    outline: none;
}

body.light .modal-edit .form-group input {
    background: rgba(0, 0, 0, 0.03);
}

.modal-edit .form-group input:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.15);
}

.modal-edit .modal-actions {
    margin-top: 20px;
}

/* ===== Edit Button ===== */
.btn-edit:hover {
    background: rgba(124, 92, 252, 0.1);
    color: var(--accent-1);
}

/* ===== Warning Badge ===== */
.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    animation: fadeIn 0.3s ease;
}

.warning-badge.warn {
    background: rgba(255, 180, 0, 0.15);
    color: #ffb400;
    border: 1px solid rgba(255, 180, 0, 0.25);
}

.warning-badge.danger {
    background: rgba(255, 68, 102, 0.15);
    color: #ff4466;
    border: 1px solid rgba(255, 68, 102, 0.25);
    animation: fadeIn 0.3s ease, pulse-warn 2s ease-in-out infinite;
}

@keyframes pulse-warn {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

body.light .warning-badge.warn {
    background: rgba(200, 140, 0, 0.12);
    color: #b37a00;
    border-color: rgba(200, 140, 0, 0.3);
}

body.light .warning-badge.danger {
    background: rgba(220, 40, 70, 0.1);
    color: #cc2244;
    border-color: rgba(220, 40, 70, 0.25);
}

/* ===== Add Section ===== */
.add-section {
    margin-bottom: 32px;
}

.btn-add {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-glass);
    border: 1px dashed var(--border-hover);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
    width: 100%;
    justify-content: center;
}

.btn-add:hover {
    background: rgba(124, 92, 252, 0.1);
    border-color: var(--accent-1);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-add-icon {
    font-size: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    transition: transform var(--transition-spring);
}

.btn-add:hover .btn-add-icon {
    transform: rotate(90deg);
}

.btn-add.active {
    display: none;
}

/* ===== Add Form ===== */
.add-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), opacity var(--transition-fast);
    opacity: 0;
}

.add-form-wrapper.active {
    max-height: 400px;
    opacity: 1;
}

.add-form {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(124, 92, 252, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-cancel {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.btn-submit {
    background: var(--accent-gradient);
    color: white;
}

.btn-submit:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(124, 92, 252, 0.3);
}

.btn-danger {
    background: var(--danger);
    color: white;
}

.btn-danger:hover {
    background: var(--danger-hover);
    transform: translateY(-1px);
}

/* ===== Account Cards ===== */
.accounts-section {
    position: relative;
}

.accounts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Card */
.account-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition-smooth);
    overflow: hidden;
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.account-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-md);
}

.account-card.checked {
    border-color: rgba(0, 212, 170, 0.2);
    background: rgba(0, 212, 170, 0.03);
}

.card-main {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    user-select: none;
}

.card-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 24px;
    text-align: center;
}

/* Custom Checkbox */
.checkbox-wrapper {
    position: relative;
    flex-shrink: 0;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 26px;
    height: 26px;
    border: 2px solid var(--border-hover);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
}

.checkbox-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-fast);
    border-radius: 50%;
}

.checkbox-custom::after {
    content: '✓';
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-spring);
}

.checkbox-input:checked + .checkbox-custom {
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(124, 92, 252, 0.3);
}

.checkbox-input:checked + .checkbox-custom::before {
    opacity: 1;
}

.checkbox-input:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-custom:hover {
    border-color: var(--accent-1);
    transform: scale(1.1);
}

/* Card Info */
.card-info {
    flex: 1;
    min-width: 0;
}

.card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.card-name-arrow {
    font-size: 10px;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.account-card.expanded .card-name-arrow {
    transform: rotate(90deg);
    color: var(--accent-1);
}

.card-name:hover {
    color: var(--accent-1);
}

.card-status {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.card-status.done {
    color: var(--success);
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 4px;
}

.btn-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.btn-icon.btn-delete:hover {
    background: rgba(255, 68, 102, 0.1);
    color: var(--danger);
}

/* Card Details (Expandable) */
.card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth), padding var(--transition-smooth);
    background: rgba(0, 0, 0, 0.15);
    border-top: 0px solid transparent;
}

.account-card.expanded .card-details {
    max-height: 150px;
    border-top: 1px solid var(--border-glass);
}

.card-details-inner {
    padding: 16px 22px 16px 68px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.detail-label {
    color: var(--text-muted);
    font-weight: 500;
    min-width: 70px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    color: var(--text-secondary);
    font-family: 'Inter', monospace;
    word-break: break-all;
}

.detail-value.password {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-toggle-pw {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 4px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 11px;
    padding: 2px 8px;
    transition: all var(--transition-fast);
}

.btn-toggle-pw:hover {
    background: rgba(124, 92, 252, 0.15);
    color: var(--accent-1);
}

/* ===== Empty State ===== */
.empty-state {
    text-align: center;
    padding: 80px 32px;
    display: none;
}

.empty-state.active {
    display: block;
    animation: fadeIn 0.5s ease both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.empty-icon {
    font-size: 56px;
    margin-bottom: 16px;
    filter: grayscale(0.5);
}

.empty-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.2s ease;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 36px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: modalPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.modal h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ===== Footer ===== */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    text-align: center;
    padding: 16px;
    background: linear-gradient(to top, var(--bg-primary) 60%, transparent);
}

.footer p {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
    .header {
        padding: 20px 18px 16px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        width: 100%;
        justify-content: space-between;
    }

    .main-content {
        padding: 20px 16px 120px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .card-details-inner {
        padding-left: 22px;
    }

    .logo h1 {
        font-size: 22px;
    }
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    opacity: 0;
    transition: all var(--transition-spring);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    font-size: 16px;
}
