/* ===== Global ===== */
body {
    margin: 0;
    padding: 0;
    background: url('assets/lan-background.png') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Courier New', Courier, monospace;
    color: #00ffff;
    text-align: center;
}

/* ===== Logo ===== */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 200px;
    z-index: 10;
}
.logo {
    width: 100%;
    height: auto;
}

/* ===== Hero Section ===== */
.hero-text {
    position: relative;
    margin: 80px auto 60px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 20px #00ffff;
    max-width: 800px;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3em;
    margin: 0;
    color: #ff6600;
    text-shadow: 0 0 10px #ff6600;
}

.hero-text p {
    font-size: 1.5em;
    margin-top: 15px;
}

.countdown {
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.8em;
    color: #ffffff;
}

/* ===== Sign-up Button ===== */
.signup-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.2em;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 0 10px #ff6600;
    position: relative;
    z-index: 2;
}

/* ===== Info Section ===== */
.info-section {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    margin: 0 auto 20px;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 0 10px #00ffff;
}

/* ===== Form Section ===== */
.form-section {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    margin: 0 auto 40px;
    max-width: 700px;
    border-radius: 15px;
    box-shadow: 0 0 10px #00ffff;
    z-index: 1;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section input,
.form-section textarea {
    padding: 12px;
    font-size: 1em;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 100%;
    box-sizing: border-box;
}

.form-section button {
    padding: 12px;
    font-size: 1.1em;
    background: #00ffff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

/* ===== Footer ===== */
footer {
    margin: 40px auto;
    padding: 20px 0;
    font-size: 0.9em;
    color: #ccc;
    max-width: 700px;
}

/* ===== Responsive ===== */
/* Tablets */
@media (max-width: 768px) {
    .logo-container {
        top: 15px;
        left: 15px;
        max-width: 150px;
    }
    .hero-text {
        margin: 60px auto 40px;
        padding: 30px;
        max-width: 90%;
    }
    .hero-text h1 {
        font-size: 2.5em;
    }
    .hero-text p {
        font-size: 1.3em;
    }
    .signup-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .info-section,
    .form-section {
        padding: 30px 15px;
        max-width: 90%;
    }
    .form-section input,
    .form-section textarea {
        padding: 10px;
        font-size: 0.95em;
    }
}

/* Mobiel */
@media (max-width: 480px) {
    .logo-container {
        position: relative;
        m
