:root {
    --bg-dark: #050508;
    --surface: rgba(20, 20, 25, 0.4);
    --surface-hover: rgba(30, 30, 40, 0.7);
    --primary: #ff0055;
    --secondary: #00f2ff;
    --accent: #bc13fe;
    --vip: #f1c40f;
    --jam: #ff9900;
    --text: #ffffff;
    --text-muted: #8892b0;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glow: 0 0 30px rgba(0, 242, 255, 0.15);
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* ULTRA PREMIUM BACKGROUND (Mesh Gradient & Noise) */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background-image: 
        radial-gradient(circle at 10% 40%, rgba(188, 19, 254, 0.08), transparent 40%), 
        radial-gradient(circle at 90% 20%, rgba(0, 242, 255, 0.08), transparent 40%), 
        radial-gradient(circle at 50% 90%, rgba(255, 0, 85, 0.05), transparent 50%);
    filter: blur(60px);
    animation: ambientPulse 20s ease-in-out infinite alternate;
}
body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.02;
    pointer-events: none;
}
@keyframes ambientPulse {
    0% { transform: scale(1); opacity: 0.8;}
    100% { transform: scale(1.1); opacity: 1;}
}

/* NAVBAR */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 4%;
    background: rgba(5, 5, 8, 0.8);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    position: sticky; top: 0; z-index: 1000;
    border-bottom: 1px solid var(--border);
}
.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px; font-weight: 800; color: var(--text);
    text-decoration: none; letter-spacing: -1.5px;
}
.logo span {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; align-items: center; gap: 20px;}
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 700; transition: 0.3s; display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 1px;}
.nav-links a:hover { color: white; transform: translateY(-2px);}

.btn-primary { background: white; color: black; border: none; padding: 12px 28px; border-radius: 30px; font-weight: 800; font-family: inherit; font-size: 14px; cursor: pointer; transition: 0.3s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255,255,255,0.2); }

.btn-glass { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: white; padding: 10px 24px; border-radius: 30px; font-weight: 700; font-family: inherit; font-size: 14px; cursor: pointer; transition: 0.3s; }
.btn-glass:hover { background: white; color: black; box-shadow: 0 0 20px rgba(255,255,255,0.2); }

.btn-vip { background: linear-gradient(135deg, var(--vip), #e67e22); padding: 10px 24px; border-radius: 30px; box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3); transition: 0.3s; cursor: pointer; border: none; color: black; font-weight: 800; font-family: inherit; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.btn-vip:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(241, 196, 15, 0.5); }

/* TOAST */
#toast-container { position: fixed; top: 20px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { padding: 16px 24px; border-radius: 14px; color: #fff; font-weight: 700; display: flex; align-items: center; gap: 12px; animation: slideIn 0.3s forwards, fadeOut 0.3s ease 3.5s forwards; box-shadow: 0 15px 35px rgba(0,0,0,0.6); backdrop-filter: blur(10px); font-size: 14px; }
.toast.success { background: rgba(46,204,113,0.95); border-left: 5px solid #27ae60; }
.toast.error { background: rgba(231,76,60,0.95); border-left: 5px solid #c0392b; }
.toast.info { background: rgba(0,242,255,0.95); border-left: 5px solid var(--secondary); color: #000; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fadeOut { to { opacity: 0; transform: translateY(-20px); pointer-events: none; } }

/* COMMON MODALS */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(15px); z-index: 3000; display: none; justify-content: center; align-items: center; opacity: 0; transition: 0.3s; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box { background: rgba(12,12,16,0.95); border: 1px solid var(--border); border-radius: 24px; padding: 40px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,0.9); transform: translateY(30px); transition: 0.4s cubic-bezier(0.16,1,0.3,1); }
.modal-overlay.active .modal-box { transform: translateY(0); }
.close-modal { position: absolute; top: 20px; right: 25px; font-size: 24px; color: var(--text-muted); cursor: pointer; transition: 0.3s; z-index: 10; }
.close-modal:hover { color: white; transform: rotate(90deg); }

/* FOOTER */
footer { border-top: 1px solid var(--border); padding: 80px 5% 40px; margin-top: 60px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 50px; background: rgba(3,3,5,0.8); backdrop-filter: blur(20px); }
.footer-col h3 { color: white; margin: 0 0 24px 0; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; }
.footer-col p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 14px; font-weight: 600; }
.footer-col ul li a:hover { color: white; padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 30px; margin-top: 40px; border-top: 1px solid var(--border); color: #555; font-size: 13px; grid-column: 1 / -1; font-weight: 600; }
