/* assets/style.css - PREMIUM DARK THEME */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-main: #0a0a0a;
    --bg-card: #171717;
    --accent: #6366f1;
    --accent-glow: #818cf8;
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --border: #262626;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    font-size: 17px;
}

/* Navigatie */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
}

.wrapper { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }

.brand { 
    font-size: 1.5rem; font-weight: 800; color: var(--text-white); 
    text-decoration: none; text-transform: uppercase; letter-spacing: 1px; 
}
.brand span { color: var(--accent-glow); }

.nav-links a { 
    color: var(--text-gray); text-decoration: none; margin-left: 2rem; 
    font-weight: 500; transition: 0.3s; font-size: 0.95rem; 
}
.nav-links a:hover { color: var(--text-white); }
.btn-nav { 
    background: var(--text-white); color: black !important; 
    padding: 0.5rem 1.2rem; border-radius: 8px; font-weight: 700 !important; 
}

/* Hero */
.hero {
    padding: 6rem 0 4rem; text-align: center;
    background: radial-gradient(circle at top center, #1e1b4b 0%, #0a0a0a 60%);
}
.hero h1 {
    font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    color: white;
}
.hero p {
    font-size: 1.2rem; color: var(--text-gray); max-width: 600px; margin: 0 auto 3rem; font-weight: 300;
}

/* Elements */
.grid-cols-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin: 4rem 0; }

.feature-card {
    background: var(--bg-card); border: 1px solid var(--border); padding: 2rem;
    border-radius: 16px; transition: 0.4s ease; display: flex; flex-direction: column; text-decoration: none;
}
.feature-card:hover {
    transform: translateY(-8px); border-color: var(--accent);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2); background: #1f1f1f;
}
.feature-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-white); font-weight: 700; }
.feature-card p { color: var(--text-gray); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }
.icon-box { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

/* Tables & Content */
table { width: 100%; border-collapse: collapse; background: var(--bg-card); margin: 2rem 0; border-radius: 12px; overflow: hidden; }
th { background: #262626; color: white; padding: 1rem; text-align: left; }
td { padding: 1rem; border-bottom: 1px solid var(--border); color: var(--text-gray); }
tr:last-child td { border-bottom: none; }

.section-title { font-size: 1.8rem; border-left: 4px solid var(--accent); padding-left: 1rem; margin: 3rem 0 2rem; color: white; font-weight: 700; }
.ad-banner { background: #111; border: 1px dashed #333; color: #444; display: flex; align-items: center; justify-content: center; margin: 2rem auto; border-radius: 12px; height: 100px; width: 100%; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 4rem 0; margin-top: 6rem; color: var(--text-gray); text-align: center; font-size: 0.9rem; }
.footer-links a { color: var(--text-gray); margin: 0 1rem; text-decoration: none; }
.footer-links a:hover { color: var(--accent-glow); }

@media (max-width: 768px) { .hero h1 { font-size: 2.5rem; } .nav-links { display: none; } }