:root {
    --bg-deep: #050505;
    --bg-card: rgba(20, 20, 35, 0.6);
    --primary: #00f2ff;
    --secondary: #ff0055;
    --text: #ffffff;
    --text-muted: #8b9bb4;
    --font: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font);
    background-color: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- ANIMATIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        radial-gradient(circle at 10% 20%, rgba(112, 0, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 242, 255, 0.1) 0%, transparent 40%);
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text { flex: 1; min-width: 300px; }
.hero-widget { flex-shrink: 0; width: 350px; } /* Fixed width for better layout */

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem); /* Responsive Font */
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

/* --- BUTTONS --- */
.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
}

.tiny { font-size: 0.8rem; color: var(--text-muted); opacity: 0.7; }

/* --- FEATURES --- */
.features { padding: 100px 20px; }

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.card h3 { margin-bottom: 10px; font-size: 1.5rem; }
.card p { color: var(--text-muted); }

/* --- FAQ --- */
.faq { padding: 50px 20px; background: rgba(255,255,255,0.02); }

.faq-item {
    max-width: 800px;
    margin: 0 auto 15px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

details { padding: 20px; cursor: pointer; }
summary { font-weight: 600; font-size: 1.1rem; list-style: none; display: flex; align-items: center; justify-content: space-between; }
summary::-webkit-details-marker { display: none; } /* Hide default triangle */
summary::after { content: '+'; font-size: 1.5rem; color: var(--primary); }
details[open] summary::after { content: '-'; }

details p { margin-top: 15px; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; }

/* --- FOOTER --- */
footer {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer a { 
    color: var(--primary); 
    text-decoration: none; 
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-widget { width: 100%; display: flex; justify-content: center; }
    .cta-group { justify-content: center; }
}
