/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Press Start 2P", system-ui;
    background: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Header */
header {
    background: #1e1e1e;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}
nav a {
    color: cyan;
    text-decoration: none;
    font-weight: bold;
}
nav a:hover {
    color: white;
}

/* Sections */
.section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
}
h1, h2, h3 {
    color: cyan;
}
p {
    margin-top: 1rem;
}

/* Projects */
.project {
    background: #1e1e1e;
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,255,255,0.2);
    transition: transform 0.3s ease;
}
.project:hover {
    transform: translateY(-5px);
}

/* Contact Form */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
input, textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
}
button {
    padding: 0.8rem;
    border: none;
    background: cyan;
    color: black;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    background: white;
}

/* Footer */
footer {
    background: #1e1e1e;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
    color: #888;
}
