:root {
    --bg-color: #0b0d12;
    --card-bg: #151821;
    --card-hover: #1c202c;
    --border-color: #262b38;
    --accent-gold: #ffd700;
    --accent-gold-glow: rgba(255, 215, 0, 0.4);
    --accent-green: #00e676;
    --accent-green-glow: rgba(0, 230, 118, 0.35);
    --accent-red: #ff1744;
    --accent-red-glow: rgba(255, 23, 68, 0.35);
    --accent-blue: #1877f2;
    --accent-purple: #a855f7;
    --text-main: #f0f3f8;
    --text-sub: #8c96a6;
    --youtube-red: #ff0000;
    --spotify-green: #1ed760;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.app-viewport {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 90px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
}

/* ==========================================
   LOADER RESTRICTIF GLOBAL (BLOCKING OVERLAY)
   ========================================== */
.global-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 13, 18, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    pointer-events: all;
    user-select: none;
}

.global-loader-overlay.active {
    display: flex;
}

.loader-spinner-box {
    position: relative;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.loader-spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 215, 0, 0.15);
    border-top: 3px solid var(--accent-gold);
    border-right: 3px solid var(--accent-green);
    border-radius: 50%;
    animation: spinRing 0.9s cubic-bezier(0.55, 0.15, 0.45, 0.85) infinite;
}

.loader-brand-icon {
    font-size: 26px;
    animation: pulseIcon 1.4s ease-in-out infinite alternate;
}

.loader-title-text {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 6px;
}

.loader-desc-text {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    text-align: center;
    max-width: 280px;
    line-height: 1.4;
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseIcon {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.15); opacity: 1; }
}

/* ==========================================
   SKELETON LOADERS SCINTILLANTS (SHIMMER EFFECT)
   ========================================== */
.skeleton-box {
    background: linear-gradient(90deg, #151821 25%, #222736 50%, #151821 75%);
    background-size: 200% 100%;
    animation: shimmerLoading 1.4s infinite linear;
    border-radius: 8px;
}

@keyframes shimmerLoading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-spotlight-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.skeleton-buzz-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skeleton-newz-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
}

/* Modale Authentification */
.auth-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #0b0d12;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.auth-container {
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 10px 0;
}

.auth-logo-svg {
    width: 65px; height: 65px;
    margin: 0 auto;
    filter: drop-shadow(0 0 12px rgba(0, 230, 118, 0.4));
}

.auth-title { font-size: 24px; font-weight: 900; letter-spacing: 1px; color: #fff; }
.auth-title span { color: var(--accent-gold); }
.auth-subtitle { font-size: 13px; color: var(--accent-green); font-weight: 700; margin-top: -6px; margin-bottom: 6px; }

.auth-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.form-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.auth-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-sub);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.auth-input {
    width: 100%;
    background: #12141a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
}
.auth-input:focus { border-color: var(--accent-gold); }

.phone-input-group {
    display: flex;
    align-items: center;
    background: #12141a;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.phone-prefix-box {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 14px;
    padding: 12px 12px;
    border-right: 1px solid var(--border-color);
    user-select: none;
    white-space: nowrap;
}

.phone-input-field {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.terms-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--text-sub);
    line-height: 1.4;
    margin-top: 4px;
}

.terms-checkbox-row input {
    accent-color: var(--accent-green);
    width: 16px; height: 16px;
    margin-top: 2px;
}

.auth-btn-primary {
    width: 100%;
    background: var(--accent-blue);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 14px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease;
}
.auth-btn-primary:active { transform: scale(0.98); }

.auth-btn-gold { background: linear-gradient(135deg, var(--accent-gold), #ff9100); color: #000; }
.auth-btn-green { background: var(--accent-green); color: #000; box-shadow: 0 4px 15px var(--accent-green-glow); }

.auth-btn-google {
    background: #ffffff;
    color: #000;
    font-weight: 800;
    border: none;
    border-radius: 20px;
    padding: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
}

.auth-switch-link {
    font-size: 13px;
    color: var(--accent-gold);
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
    margin-top: 8px;
}

.otp-inputs-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.otp-digit-input {
    width: 45px; height: 52px;
    background: #12141a;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-gold);
    outline: none;
}

/* En-tête Sticky */
.top-header {
    position: sticky;
    top: 0;
    background: rgba(11, 13, 18, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 50;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo-wrapper { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.brand-logo-svg { width: 38px; height: 38px; filter: drop-shadow(0 0 6px rgba(0, 230, 118, 0.3)); }
.brand-logo-title { font-size: 17px; font-weight: 900; letter-spacing: 1px; line-height: 1; color: #ffffff; }
.brand-logo-title span { color: var(--accent-gold); }
.brand-logo-slogan { font-size: 9px; font-weight: 700; color: var(--accent-gold); letter-spacing: 0.5px; margin-top: 3px; text-transform: uppercase; }

.header-right { display: flex; align-items: center; gap: 10px; }

.status-lamp-container {
    display: flex; align-items: center; gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 5px 11px;
    border-radius: 30px;
    cursor: pointer;
}
.lamp-indicator { width: 10px; height: 10px; border-radius: 50%; transition: all 0.3s ease; }
.lamp-indicator.green { background-color: var(--accent-green); box-shadow: 0 0 10px var(--accent-green-glow); }
.lamp-indicator.red { background-color: var(--accent-red); box-shadow: 0 0 10px var(--accent-red-glow); }
.lamp-label { font-size: 10px; font-weight: 900; letter-spacing: 0.5px; text-transform: uppercase; }

.profile-avatar-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #ff9100);
    color: #000;
    font-weight: 900;
    font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    border: 2px solid var(--border-color);
    overflow: hidden;
}

.countdown-banner {
    margin: 12px 16px 8px 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(21, 24, 33, 0.85) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex; justify-content: space-between; align-items: center;
}
.countdown-info h2 { font-size: 11px; color: var(--text-sub); text-transform: uppercase; font-weight: 700; }
.countdown-info p { font-size: 11px; color: var(--accent-gold); margin-top: 2px; font-weight: 700; }
.timer-display { font-size: 16px; font-weight: 900; color: #ffffff; background: rgba(0, 0, 0, 0.5); padding: 6px 12px; border-radius: 10px; border: 1px solid rgba(255, 215, 0, 0.25); }

.view-page { display: none; padding: 0 16px; flex-direction: column; gap: 14px; }
.view-page.active { display: flex; }

.section-title { font-size: 17px; font-weight: 900; margin: 10px 0 6px 0; display: flex; justify-content: space-between; align-items: center; }

.spotlight-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 16px;
    display: flex; flex-direction: column; gap: 12px;
    position: relative;
}
.spotlight-top-row { display: flex; gap: 12px; align-items: center; }
.track-cover-wrapper { position: relative; display: inline-block; }
.track-cover-img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; border: 1px solid var(--border-color); background: #1f2430; }
.spotlight-header { flex-grow: 1; display: flex; justify-content: space-between; align-items: flex-start; }
.track-artist-name { font-size: 16px; font-weight: 800; color: #ffffff; }
.track-song-title { font-size: 13px; color: var(--text-sub); margin-top: 2px; }
.track-badge-row { display: flex; gap: 6px; margin-top: 6px; }
.badge-week { font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; background: rgba(255, 215, 0, 0.12); color: var(--accent-gold); border: 1px solid rgba(255, 215, 0, 0.25); }

.vote-badge-count { text-align: right; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-color); padding: 6px 12px; border-radius: 10px; }
.vote-number { font-size: 15px; font-weight: 900; color: var(--accent-gold); }

.external-links { display: flex; gap: 8px; }
.link-chip { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 8px; text-decoration: none; background-color: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-color); }
.link-chip.youtube { color: var(--youtube-red); }
.link-chip.spotify { color: var(--spotify-green); }

.action-bar { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 10px; }
.btn-action { background: transparent; border: none; color: var(--text-sub); font-size: 12px; font-weight: 700; cursor: pointer; padding: 6px 8px; }
.btn-vote-primary { background: var(--accent-green); color: #000; border: none; border-radius: 10px; padding: 8px 16px; font-size: 13px; font-weight: 900; cursor: pointer; box-shadow: 0 4px 12px var(--accent-green-glow); }

.rules-box { background: rgba(255, 215, 0, 0.06); border: 1px solid rgba(255, 215, 0, 0.25); border-radius: 14px; padding: 14px; font-size: 12px; color: #e4e6eb; line-height: 1.5; }
.rules-box h3 { font-size: 13px; color: var(--accent-gold); margin-bottom: 6px; font-weight: 800; }

.publish-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 18px; padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 800; color: var(--text-sub); text-transform: uppercase; }
.form-input { background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 10px; padding: 12px; color: #fff; font-size: 14px; outline: none; }

.file-input-wrapper { display: flex; align-items: center; gap: 10px; }
.btn-browse { background: rgba(255, 215, 0, 0.15); color: var(--accent-gold); border: 1px solid rgba(255, 215, 0, 0.3); border-radius: 10px; padding: 10px 14px; font-size: 12px; font-weight: 800; cursor: pointer; white-space: nowrap; }
.file-name-display { font-size: 12px; color: var(--text-sub); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.btn-submit-publish { background: linear-gradient(135deg, var(--accent-gold), #ff9100); color: #000; border: none; border-radius: 12px; padding: 14px; font-weight: 900; font-size: 15px; cursor: pointer; margin-top: 8px; transition: transform 0.15s; }
.btn-submit-publish:active { transform: scale(0.98); }

.buzz-card { background-color: var(--card-bg); border: 1px solid var(--border-color); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 12px; }
.buzz-card.rank-1 { border-color: rgba(255, 215, 0, 0.4); background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, var(--card-bg) 100%); }
.rank-num { font-size: 18px; font-weight: 900; width: 25px; color: var(--text-sub); text-align: center; }
.buzz-card.rank-1 .rank-num { color: var(--accent-gold); }
.buzz-cover { width: 42px; height: 42px; border-radius: 8px; object-fit: cover; border: 1px solid var(--border-color); }
.buzz-info { flex-grow: 1; }
.buzz-artist { font-size: 14px; font-weight: 800; }
.buzz-title { font-size: 12px; color: var(--text-sub); }
.buzz-votes { font-size: 15px; font-weight: 900; color: var(--accent-gold); }

.culture-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 18px; overflow: hidden; }
.culture-banner { height: 120px; background: linear-gradient(135deg, #1f2430 0%, #0d0f14 100%); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border-color); }
.culture-body { padding: 16px; }
.culture-tag { font-size: 10px; font-weight: 900; color: var(--accent-gold); text-transform: uppercase; }
.culture-title { font-size: 16px; font-weight: 800; margin-top: 4px; }
.culture-desc { font-size: 12px; color: var(--text-sub); margin-top: 6px; line-height: 1.4; }

.news-billboard { background: linear-gradient(135deg, rgba(24, 119, 242, 0.15) 0%, var(--card-bg) 100%); border: 1px solid rgba(24, 119, 242, 0.35); border-radius: 18px; padding: 20px; position: relative; }
.ad-badge { position: absolute; top: 14px; right: 14px; background: rgba(255, 255, 255, 0.1); font-size: 9px; font-weight: 800; padding: 3px 6px; border-radius: 4px; color: var(--text-sub); }
.news-title { font-size: 17px; font-weight: 900; color: #fff; margin-top: 10px; }
.news-sub { font-size: 13px; color: var(--text-sub); margin-top: 6px; line-height: 1.4; }

.profile-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 20px; padding: 20px; text-align: center; }
.profile-avatar-large { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-gold), #ff9100); color: #000; font-size: 30px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px auto; overflow: hidden; border: 2px solid var(--border-color); }
.profile-name { font-size: 18px; font-weight: 800; }
.profile-phone { font-size: 12px; color: var(--accent-green); font-weight: 700; margin-top: 2px; }
.role-badge { display: inline-block; font-size: 10px; font-weight: 900; padding: 3px 10px; border-radius: 12px; margin-top: 6px; text-transform: uppercase; }
.role-badge.user { background: rgba(255,255,255,0.1); color: var(--text-sub); }
.role-badge.admin { background: rgba(168, 85, 247, 0.2); color: var(--accent-purple); border: 1px solid rgba(168, 85, 247, 0.4); }

.wallet-box { background: var(--bg-color); border: 1px solid var(--border-color); border-radius: 14px; padding: 16px; margin-top: 16px; display: flex; justify-content: space-between; align-items: center; }

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: rgba(11, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 8px 0 12px 0;
    z-index: 60;
}
.nav-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 2px; 
    color: var(--text-sub); 
    font-size: 10px; 
    font-weight: 700; 
    cursor: pointer; 
    position: relative;
}
.nav-item.active { color: var(--accent-gold); }
.nav-icon { font-size: 18px; }

/* Badges de Notification */
.badge-new-track {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ff0055, #ff5000);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 0, 85, 0.5);
    z-index: 5;
}

/* Modale Store */
.store-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px); z-index: 100; display: none; justify-content: center; align-items: flex-end; }
.store-modal-overlay.active { display: flex; }

.store-modal { 
    background: var(--card-bg); 
    border-top: 1px solid var(--border-color); 
    border-radius: 24px 24px 0 0; 
    width: 100%; 
    max-width: 480px; 
    max-height: 85vh; 
    overflow-y: auto; 
    padding: 24px 20px 30px 20px; 
}

/* Tunnel de Vote */
.vote-tunnel-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.vote-tunnel-overlay.active { display: flex; }

.vote-tunnel-modal {
    background: linear-gradient(135deg, #151821 0%, #0d0f14 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 24px;
    padding: 24px 20px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.1);
    animation: popUpScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: -10vh;
}

.vote-balance-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vote-input-box {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 18px;
    text-align: center;
}

.vote-commitment-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text-sub);
    line-height: 1.5;
    text-align: center;
}

.vote-commitment-box strong { color: #fff; }

.vote-artistic-note {
    font-size: 11px;
    color: var(--accent-gold);
    font-style: italic;
    margin-top: 10px;
    background: rgba(255, 215, 0, 0.05);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed rgba(255, 215, 0, 0.2);
}

@keyframes popUpScale {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseGold {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fire-icon-animated {
    font-size: 42px;
    margin-bottom: 10px;
    display: inline-block;
    animation: pulseGold 1.5s infinite ease-in-out;
}

.frustration-box { text-align: center; margin-bottom: 20px; }
.frustration-icon { font-size: 32px; margin-bottom: 8px; }
.frustration-title { font-size: 17px; font-weight: 900; color: #fff; }
.frustration-msg { font-size: 13px; color: var(--text-sub); margin-top: 6px; line-height: 1.4; }

.pack-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 12px; 
    margin-bottom: 16px; 
}

.pack-card { 
    background: var(--bg-color); 
    border: 1px solid var(--border-color); 
    border-radius: 12px; 
    padding: 12px 14px; 
    text-align: center; 
    cursor: pointer; 
}
.pack-card:hover { border-color: var(--accent-gold); }

.pack-card stripe-buy-button {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.btn-close-store { width: 100%; background: var(--border-color); color: var(--text-main); border: none; border-radius: 12px; padding: 12px; font-weight: 800; cursor: pointer; }

.empty-state-box {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-sub);
    background: var(--card-bg);
    border: 1px dashed var(--border-color);
    border-radius: 18px;
}

.toast { position: fixed; top: 70px; left: 50%; transform: translateX(-50%) translateY(-20px); background: var(--accent-green); color: #000; padding: 10px 20px; border-radius: 20px; font-size: 12px; font-weight: 900; opacity: 0; transition: all 0.3s ease; pointer-events: none; z-index: 90; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }