* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: monospace;
}

body {
    background: #000;
    color: #0f0;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav a {
    color: #0f0;
    margin: 0 15px;
    text-decoration: none;
    transition: color 0.3s;
}

header nav a:hover {
    color: #ffcc00;
}

h1, h2 {
    color: #ffcc00;
    margin-bottom: 15px;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

footer {
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #777;
}

/* Background Grid Animation */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
