@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

/* ==========================================
   BASIS STYLING
   ========================================== */
body {
    background-color: #080808;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-image: radial-gradient(circle at center, #250505 0%, #080808 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.red-text { color: #ff0000; }
.container { max-width: 1100px; margin: 0 auto; padding: 20px; }

/* ==========================================
   NAVIGATIE
   ========================================== */
.navbar { 
    display: flex; 
    justify-content: space-around; 
    align-items: center; 
    padding: 25px; 
    background: rgba(0,0,0,0.8); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
}

nav a { 
    color: #888; 
    text-decoration: none; 
    margin: 0 15px; 
    font-weight: bold; 
    font-size: 13px; 
    transition: 0.3s; 
    text-transform: uppercase;
}

nav a:hover, nav a.active { 
    color: #ff0000; 
    text-shadow: 0 0 10px rgba(255,0,0,0.5); 
}

.discord-tag {
    background: #ff0000;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    color: white;
}

.discord-tag:hover {
    background: #cc0000;
    box-shadow: 0 0 15px rgba(255,0,0,0.4);
}

/* ==========================================
   PAGINA SYSTEEM & ANIMATIE
   ========================================== */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.5s ease forwards; }

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(15px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* ==========================================
   HOME / HERO
   ========================================== */
.hero { text-align: center; padding: 100px 0 50px; }
.hero h1 { 
    font-size: clamp(40px, 8vw, 85px); 
    font-weight: 900; 
    margin: 0; 
    background: linear-gradient(to bottom, #fff 30%, #ff0000 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}
.subtitle { color: #ff0000; letter-spacing: 6px; font-weight: bold; margin-top: 15px; font-size: 14px; }

/* ==========================================
   STATUS CARDS
   ========================================== */
.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.status-card { 
    background: rgba(15, 15, 15, 0.8); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 12px; 
    padding: 25px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    cursor: pointer; 
    transition: 0.3s; 
}
.status-card:hover { transform: translateY(-5px); border-color: #ff0000; background: rgba(20, 20, 20, 1); }
.status-card i { font-size: 28px; color: #444; transition: 0.3s; }
.status-card:hover i { color: #ff0000; }
.icon-main { color: #ff0000 !important; }

.status-card .info h3 { margin: 0; font-size: 18px; }
.status-card .label { font-size: 10px; color: #888; text-transform: uppercase; letter-spacing: 1px; }

.border-left-red { border-left: 4px solid #ff0000; }
.border-top-red { border-top: 4px solid #ff0000; }

/* ==========================================
   STAFF & UPDATES
   ========================================== */
.section-title { text-align: center; font-size: clamp(30px, 5vw, 45px); margin: 50px 0; font-weight: 900; }
.staff-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.staff-card { 
    background: #111; 
    padding: 25px; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid rgba(255,0,0,0.1); 
    transition: 0.3s;
}
.staff-card:hover { border-color: #ff0000; transform: translateY(-5px); }

.update-item { 
    background: #111; 
    padding: 25px; 
    border-radius: 15px; 
    border-left: 4px solid #ff0000; 
    margin-bottom: 20px; 
}

/* ==========================================
   RULES & FAQ
   ========================================== */
.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.rule-card { background: rgba(15, 15, 15, 0.9); border: 1px solid rgba(255, 0, 0, 0.1); border-radius: 15px; padding: 25px; }

.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: rgba(15, 15, 15, 0.9); border: 1px solid rgba(255, 0, 0, 0.1); border-radius: 10px; overflow: hidden; }

/* ==========================================
   WINKEL (TEBEX) WRAPPER
   ========================================== */
.tebex-wrapper {
    background: #0a0a0a;
    margin-top: 20px;
    width: 100%;
    height: 80vh;
    border-radius: 15px;
    border: 1px solid rgba(255,0,0,0.2);
    overflow: hidden;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================== */
@media screen and (max-width: 992px) {
    .staff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; }
    nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; }
    nav a { margin: 5px 10px; font-size: 11px; }

    .status-grid, .rules-grid, .staff-grid {
        grid-template-columns: 1fr !important;
    }
    
    .tebex-wrapper { height: 90vh; }
}

@media screen and (max-width: 480px) {
    .hero h1 { font-size: 32px; }
    .subtitle { letter-spacing: 3px; font-size: 10px; }
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.staff-card {
    background: #111;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #222;
}

.staff-card:hover {
    transform: translateY(-5px);
    border-color: red;
    box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.staff-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.staff-role {
    color: #aaa;
    font-size: 14px;
}