:root {
    --neon-blue: #00d2ff;
    --deep-blue: #0045c7;
    --dark-void: #02060c;
    --gold: #ffd700;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark-void);
    color: white;
    font-family: 'Segoe UI', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.stars-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, #0a1931 0%, #02060c 100%);
    z-index: -1;
}

.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }

.main-logo {
    font-size: 5.5rem; background: linear-gradient(to bottom, #fff, var(--neon-blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(0,210,255,0.5));
}


.discord-counter {
    background: rgba(255,255,255,0.05); padding: 15px 30px; border-radius: 20px;
    border: 1px solid rgba(0,210,255,0.2); display: inline-block; margin-bottom: 25px;
}

#member-count { font-size: 1.8rem; font-weight: bold; color: var(--neon-blue); display: block; }

.online-status { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.9rem; margin-top: 5px; }

.pulse-dot { width: 10px; height: 10px; background: #23a559; border-radius: 50%; box-shadow: 0 0 10px #23a559; animation: pulse 2s infinite; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

/* الأزرار */
.main-discord-btn {
    display: block; width: fit-content; margin: 0 auto 30px; padding: 18px 45px;
    background: linear-gradient(45deg, var(--deep-blue), var(--neon-blue));
    border-radius: 50px; color: white; text-decoration: none; font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,210,255,0.3); transition: 0.3s;
}

.quick-nav { display: flex; gap: 10px; justify-content: center; }

.quick-nav button {
    padding: 10px 20px; background: rgba(255,255,255,0.05); border: 1px solid var(--neon-blue);
    color: var(--neon-blue); border-radius: 8px; cursor: pointer; transition: 0.3s;
}

.quick-nav button:hover { background: var(--neon-blue); color: #000; box-shadow: 0 0 15px var(--neon-blue); }

/* الأقسام */
.container { padding: 50px 20px; max-width: 1100px; margin: auto; }

.glass-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 25px; padding: 40px; margin-bottom: 50px; backdrop-filter: blur(10px);
}

.gold-border { border: 1px solid var(--gold); }

.sec-title { text-align: center; margin-bottom: 35px; font-size: 2rem; color: var(--neon-blue); }

.gold-text { color: var(--gold); }


.grid-display { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 15px; }

.lvl-box { background: rgba(0,0,0,0.2); padding: 20px; border-radius: 15px; text-align: center; border-bottom: 3px solid var(--neon-blue); }

.rule-item { background: rgba(255,255,255,0.02); padding: 20px; border-radius: 12px; margin-bottom: 15px; border-right: 4px solid var(--neon-blue); }

.rule-item h3 { margin-bottom: 8px; color: var(--neon-blue); }

.punishment { color: #ff4d4d; font-size: 0.85rem; font-weight: bold; display: block; margin-top: 10px; }