/* Basis instellingen */
body { 
    margin: 0; 
    background: #000; 
    color: #fff; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
}

.hero, .section { 
    height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
  text-align: center;
}

/* Animatie */
.fade-in { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: 1.5s ease; 
}
.fade-in.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* Logo */
.logo-container { 
    margin-bottom: 20px; 
    display: flex; 
    justify-content: center; 
}
.main-logo { 
    max-width: 250px; 
    height: auto; 
}

/* Progress Bar */
.progress-wrapper { width: 600px; max-width: 90%; margin-top: 40px; }

.stats { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.8rem; color: #888; }
.progress-track { background: #111; height: 12px; border-radius: 6px; position: relative; }

.progress-bar { 
    height: 100%; border-radius: 6px; background: #fff; 
    box-shadow: 0 0 15px #fff, 0 0 30px #fff; 
    animation: pulse 2s infinite; 
    position: relative;
}

.rocket { position: absolute; right: -10px; top: -15px; font-size: 1.2rem; }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px #fff; }
    50% { box-shadow: 0 0 25px #fff; }
}

/* Knop en Container */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.btn { 
    padding: 15px 40px; 
    background: #fff; 
    color: #000; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: #666;
    text-align: center;
}

/* Footer */
footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.8rem;
}

.footer-content p { margin-bottom: 10px; }

.footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover { color: #fff; }

@media (max-width: 480px) {
    .main-logo { max-width: 180px; }
    .btn { padding: 12px 30px; }
    .stats { font-size: 0.7rem; }