:root {
    --bg: #0b0f19;
    --card-bg: #151a25;
    --accent: #5865f2;
    --text: #ffffff;
    --text-muted: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* Navbar */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 50px;
    position: absolute; width: 100%; top: 0; z-index: 100;
}
.logo { font-weight: 900; font-size: 1.5rem; letter-spacing: 1px; display: flex; gap: 10px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; margin-left: 30px; font-weight: 600; transition: 0.2s; }
.nav-links a:hover { color: #fff; }
.discord-link { color: #5865f2 !important; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 20px 50px;
    background: radial-gradient(circle at 50% 0%, rgba(88, 101, 242, 0.15) 0%, transparent 60%);
}

.badge-new {
    background: rgba(88, 101, 242, 0.1); color: var(--accent);
    padding: 5px 15px; border-radius: 20px; font-size: 0.9rem; font-weight: 700;
    margin-bottom: 20px; border: 1px solid rgba(88, 101, 242, 0.3);
}

h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 900; }
.gradient-text {
    background: linear-gradient(to right, #5865f2, #00d4ff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin-bottom: 40px; line-height: 1.6; }

/* Buttons */
.cta-buttons { display: flex; gap: 20px; margin-bottom: 40px; }
.btn-primary {
    background: var(--accent); color: white; padding: 15px 35px; border-radius: 50px;
    text-decoration: none; font-weight: 700; transition: 0.3s;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(88, 101, 242, 0.6); }

.btn-secondary {
    background: rgba(255,255,255,0.05); color: white; padding: 15px 35px; border-radius: 50px;
    text-decoration: none; font-weight: 700; transition: 0.3s; border: 1px solid rgba(255,255,255,0.1);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

.stats { display: flex; gap: 30px; font-size: 0.9rem; color: var(--text-muted); }
.stats i { color: var(--accent); margin-right: 8px; }

/* Screenshot */
.hero-image { position: relative; margin-top: 60px; perspective: 1000px; }
.hero-image img {
    width: 80vw; max-width: 1100px; border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    transform: rotateX(5deg);
    transition: 0.5s;
}
.hero-image:hover img { transform: rotateX(0deg) scale(1.02); }

/* Features */
.features-section { padding: 100px 50px; background: #0b0f19; }
.features-section h2 { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }

.grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; max-width: 1200px; margin: 0 auto;
}

.card {
    background: var(--card-bg); padding: 40px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.card:hover { transform: translateY(-10px); border-color: rgba(88, 101, 242, 0.3); }

.icon-box {
    width: 60px; height: 60px; background: rgba(88, 101, 242, 0.1);
    border-radius: 15px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--accent); margin-bottom: 20px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.card p { color: var(--text-muted); line-height: 1.6; }

/* Download Section */
.download-section {
    padding: 100px 20px; text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, #101522 100%);
}
.download-section h2 { font-size: 3rem; margin-bottom: 20px; }
.download-section p { color: var(--text-muted); margin-bottom: 40px; font-size: 1.2rem; }
.large { font-size: 1.2rem; padding: 20px 50px; }

/* Footer */
footer { padding: 60px 50px; border-top: 1px solid rgba(255,255,255,0.05); background: #080b12; }
.footer-content {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px;
}
.legal-text { font-size: 0.9rem; color: #666; margin-top: 15px; line-height: 1.6; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; margin-bottom: 10px; }
.footer-links a:hover { color: var(--accent); }

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    nav { padding: 20px; justify-content: center; }
    .nav-links { display: none; }
    .hero-image img { width: 95vw; }
}
