/* Reset the browser's ugly default spacing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
    line-height: 1.6;
}

/* Header */
header {
    background: #020617;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1e293b;
}

header h1 {
    font-size: 28px;
    color: #38bdf8;
}

/* Navigation links */
header a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.2s;
}

header a:hover {
    color: #38bdf8;
}

/* Main content */
h1, h2 {
    text-align: center;
    margin-top: 40px;
}

p {
    text-align: center;
    margin-top: 10px;
    color: #cbd5f5;
}

/* Downloads section */
#downloads {
    background: #020617;
    margin: 50px auto;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    text-align: center;
}
#login {
    background: #020617;
    margin: 50px auto;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid #1e293b;
    text-align: center;
}



/* Footer */
footer {
    margin-top: 80px;
    padding: 20px;
    text-align: center;
    background: #020617;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
}