/* Global Styles */
body {
    background-color: #111;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
}

/* Efek Neon */
h1, h2 {
    font-size: 3rem;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #0088ff;
}

/* Subtitle */
.subtitle {
    color: #00ffff;
    font-size: 1.2rem;
}

/* Navigation */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00ffff;
}

/* Sections */
.section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

/* Efek Glow pada Box */
.bg-glow {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

/* Grid untuk script */
.grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.box {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    padding: 20px;
    width: 200px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
}

/* Efek Neon pada Tombol */
.neon-button {
    background-color: #00ffff;
    color: black;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 10px #00ffff, 0 0 40px #00ffff;
}

.neon-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #00ffff, 0 0 50px #00ffff;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #00ffff;
    color: white;
    border-radius: 5px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    margin-top: 50px;
    box-shadow: 0 0 10px #00ffff;
}