body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: #0a0a0a;
    border-bottom: 2px solid #00aaff;
}

.navbar a {
    margin-left: 20px;
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
}

.logo {
    height: 50px;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(#000, #001a33);
}

.hero-logo {
    width: 500px;
    align-items: center;
}

.hero h1 {
    font-size: 60px;
    color: #00aaff;
}

.hero h2 {
    font-size: 24px;
    color: #ffd43b;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffd43b;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

/* SECTIONS */
.section {
    padding: 80px 20px;
    text-align: center;
}

.section.dark {
    background: #001a33;
}

.project-img {
    width: 70%;
    max-width: 600px;
    margin: 20px 0;
    border: 3px solid #00aaff;
}

#license {
    background: #0a0a0a;
    border-top: 2px solid #00aaff;
    border-bottom: 2px solid #00aaff;
}

#license p {
    max-width: 800px;
    margin: 10px auto;
    font-size: 18px;
    color: #ccc;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0a0a0a;
    color: #888;
}

/* SOON PAGE */
.soon-body {
    background: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.soon-container h1 {
    font-size: 60px;
    color: #ffd43b;
}

.soon-container p {
    font-size: 22px;
    margin-bottom: 30px;
    color: #00aaff;
}

