:root {
    --primary: #00d4ff;
    --bg: #050a12;
    --card: rgba(15, 25, 42, 0.7);
    --border: rgba(0, 212, 255, 0.15);
    --text: #e2e8f0;
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1200px;
    background: rgba(10, 20, 35, 0.85); backdrop-filter: blur(10px);
    border: 1px solid var(--border); border-radius: 20px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 30px; z-index: 1000;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: white; font-weight: 800; }
.logo img { width: 35px; border-radius: 8px; }

.nav-links a { text-decoration: none; color: #94a3b8; margin: 0 15px; font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.dc-nav-btn { background: #5865F2; color: white; padding: 8px 20px; border-radius: 12px; text-decoration: none; font-weight: 800; font-size: 0.8rem; }

.hero { padding: 200px 20px 100px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.status-badge { background: rgba(0, 212, 255, 0.1); color: var(--primary); padding: 8px 16px; border-radius: 30px; font-size: 0.8rem; font-weight: 800; margin-bottom: 20px; border: 1px solid var(--border); }
.hero-logo { width: 160px; margin-bottom: 30px; filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.3)); }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4.5rem); letter-spacing: -2px; color: white; margin-bottom: 20px; }
.hero h1 span { color: var(--primary); }
.hero p { max-width: 600px; color: #94a3b8; margin-bottom: 40px; font-size: 1.1rem; }

.btn-group { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.btn { padding: 16px 32px; border-radius: 15px; border: none; font-weight: 800; cursor: pointer; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.btn-primary { background: var(--primary); color: #050a12; }
.btn-discord { background: #5865F2; color: white; text-decoration: none; }
.btn:hover { transform: translateY(-5px); opacity: 0.9; }

.container { max-width: 1100px; margin: 0 auto; padding: 50px 20px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; color: white; }

.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card { background: var(--card); border: 1px solid var(--border); padding: 30px; border-radius: 25px; transition: 0.3s; }
.bento-card i { color: var(--primary); font-size: 2rem; margin-bottom: 20px; display: block; }
.bento-card h3 { margin-bottom: 10px; color: white; }
.bento-card:hover { border-color: var(--primary); background: rgba(15, 25, 42, 0.9); }
.large { grid-row: span 2; }
.wide { grid-column: span 2; }

.story-box { display: flex; align-items: center; gap: 50px; margin: 100px 0; background: rgba(255,255,255,0.02); padding: 40px; border-radius: 40px; }
.story-img img { width: 100%; max-width: 450px; border-radius: 25px; border: 1px solid var(--border); }

.staff-list { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.staff-card { background: var(--card); padding: 30px; border-radius: 20px; text-align: center; width: 220px; border-bottom: 4px solid var(--primary); }
.staff-card img { width: 80px; margin-bottom: 15px; }

footer { text-align: center; padding: 50px; border-top: 1px solid var(--border); color: #94a3b8; }

.toast { position: fixed; bottom: 30px; right: 30px; background: var(--primary); color: #000; padding: 15px 30px; border-radius: 12px; font-weight: 800; display: none; animation: slideIn 0.3s; }
@keyframes slideIn { from { transform: translateX(100px); } to { transform: translateX(0); } }

@media (max-width: 850px) {
    .bento-grid { grid-template-columns: 1fr; }
    .wide, .large { grid-column: span 1; grid-row: span 1; }
    .story-box { flex-direction: column; text-align: center; }
    .nav-links { display: none; }
}