* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', cursive;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f1115;
    color: #eaeaea;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(15,17,21,0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
}

.logo {
    font-size: 12px;
    color: #2ecc71;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.navbar a {
    text-decoration: none;
    color: #eaeaea;
}

.navbar a:hover {
    color: #2ecc71;
}

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 70px;
    color: #0f1115;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.hero p {
    font-size: 0.9rem;
}

.container {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 20px;
}

.build {
    margin-bottom: 120px;
}

.build h2 {
    font-size: 1.4rem;
    margin-bottom: 25px;
}

.build img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.build p {
    font-size: 0.8rem;
    color: #bdbdbd;
    line-height: 1.8;
}

.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

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

footer {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 0.7rem;
}
