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

body {
    font-family: 'Courier New', 'Consolas', monospace;
    background: #000;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

#rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
}

.ast {
    color: #ef4444;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ef4444;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero {
    text-align: center;
    max-width: 700px;
}

.label {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
}

.sub {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    font-family: inherit;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #fff;
    background: #ef4444;
    padding: 0.8rem 2rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn:hover {
    opacity: 0.7;
}



footer {
    text-align: center;
    padding: 1.5rem;
    font-size: 0.7rem;
    color: #444;
    border-top: 1px solid rgba(239, 68, 68, 0.1);
}
