:root {
    --royal-emerald: #8CC63F; 
    --royal-gold: #FFF200;    
    --deep-palace: #05080a;
}

body { margin: 0; background: var(--deep-palace); color: white; font-family: 'Plus Jakarta Sans', sans-serif; overflow-x: hidden; }

/* --- NAVIGATION SUPREME --- */
.nav-supreme {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(5, 8, 10, 0.85); backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.1); padding: 15px 0;
}
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.nav-brand { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.nav-brand img { width: 45px; }
.brand-text { color: white; font-weight: 800; letter-spacing: 2px; font-family: 'Cinzel'; font-size: 0.9rem; }

.nav-links-desktop { display: flex; align-items: center; gap: 25px; }
.nav-links-desktop a { color: rgba(255,255,255,0.7); text-decoration: none; font-weight: 700; font-size: 0.85rem; transition: 0.3s; }
.nav-links-desktop a:hover { color: var(--royal-emerald); }
.btn-nav { background: var(--royal-emerald); color: white !important; padding: 10px 25px; border-radius: 50px; }

.mobile-toggle { display: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* --- SIDEBAR CANVAS --- */
.sidebar-canvas {
    position: fixed; top: 0; right: -100%; width: 85%; height: 100%;
    background: rgba(5, 8, 10, 0.98); z-index: 2000; transition: 0.5s;
    padding: 40px 30px; border-left: 1px solid var(--royal-emerald);
}
.sidebar-canvas.active { right: 0; }
.sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px; }
.sidebar-header img { width: 60px; }
.close-btn { color: white; font-size: 2.5rem; cursor: pointer; }
.sidebar-body a { display: block; color: white; text-decoration: none; font-size: 1.2rem; font-weight: 700; margin-bottom: 30px; }
.sidebar-body i { margin-right: 15px; color: var(--royal-emerald); }
.btn-sidebar-ppdb { background: var(--royal-emerald); padding: 15px; border-radius: 50px; text-align: center; }

@media (max-width: 768px) {
    .nav-links-desktop { display: none; }
    .mobile-toggle { display: block; }
    .brand-text { font-size: 0.75rem; }
}

/* --- HERO & CONTENT --- */
.hero-supreme { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px; background: radial-gradient(circle at center, #0a1219 0%, var(--deep-palace) 100%); }
.elite-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.elite-card { background: rgba(255,255,255,0.03); padding: 40px 30px; border-radius: 35px; border: 1px solid rgba(255,255,255,0.05); text-align: center; transition: 0.4s; }
.tag-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 15px; }
.activity-tag { background: rgba(140, 198, 63, 0.1); color: var(--royal-emerald); padding: 5px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; }