:root {
    --primary: #c1ff00;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; }
html, body { min-height: 100%; }
body { background-color: var(--bg-dark); color: var(--text-main); overflow-x: hidden; }
#page-wrapper { min-height: calc(100vh - 200px); }

/* Navbar */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem 5%; background: rgba(15, 23, 42, 0.95); position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05); }
.logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 1px; color: #fff; }
.logo span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-main); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }

.hamburger { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; }

/* Buttons */
.btn-primary { background: var(--primary); color: #000; padding: 0.8rem 2rem; border-radius: 30px; font-weight: 800; text-decoration: none; border: none; cursor: pointer; transition: 0.3s; display: inline-block; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(193, 255, 0, 0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 0.8rem 2rem; border-radius: 30px; font-weight: 800; text-decoration: none; transition: 0.3s; display: inline-block; }
.btn-outline:hover { background: var(--primary); color: #000; }

/* Hero */
.hero { height: 100vh; display: flex; align-items: center; padding: 0 5%; background: radial-gradient(circle at 80% 50%, rgba(193, 255, 0, 0.15) 0%, transparent 50%), url('https://images.unsplash.com/photo-1622279457486-62dcc4a431d6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover; position: relative; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #0f172a 0%, rgba(15,23,42,0.8) 50%, transparent 100%); }
.hero-content { position: relative; z-index: 10; max-width: 600px; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2rem; }

/* Auth Forms */
.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 5%; }
.auth-card { background: var(--bg-card); padding: 3rem; border-radius: 20px; width: 100%; max-width: 400px; border: 1px solid rgba(255,255,255,0.05); text-align: center; backdrop-filter: blur(10px); }
.auth-card h2 { margin-bottom: 2rem; color: var(--primary); }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-group label { display: block; margin-bottom: 0.5rem; color: var(--text-muted); font-size: 0.9rem; }
.form-group input { width: 100%; padding: 1rem; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: #fff; outline: none; }
.form-group input:focus { border-color: var(--primary); }
.auth-link { margin-top: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }
.auth-link a { color: var(--primary); text-decoration: none; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.9); padding: 1.5rem 5%; display: flex; justify-content: space-between; align-items: center; z-index: 9999; border-top: 1px solid var(--primary); flex-wrap: wrap; gap: 1rem; }
.cookie-banner p { flex: 1; min-width: 300px; font-size: 0.9rem; color: #fff; margin-right: 2rem; }

/* Footer */
footer { background: #000; padding: 4rem 5% 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-col h3 { color: #fff; margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-col p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-logo { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; color: #fff; }
.social-links a { color: var(--text-muted); font-size: 1.5rem; margin-right: 1rem; transition: 0.3s; }
.social-links a:hover { color: var(--primary); }
.footer-bottom { text-align: center; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.9rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(15, 23, 42, 0.98); flex-direction: column; padding: 2rem 0; gap: 1.5rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-banner p { margin-right: 0; margin-bottom: 1rem; }
}
