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

body {
    background-color: #050505;
    color: #e0e0e0;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
}

h1 {
    font-size: 2.4rem;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 60px;
}

.quote {
    font-size: 1.2rem;
    margin-bottom: 60px;
    line-height: 1.6;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.status {
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.footer {
    font-size: 0.8rem;
    opacity: 0.4;
}

.hidden-text {
    color: #050505;
    background-color: #050505;
    user-select: text;
}

.hidden-text::selection {
    color: #e0e0e0;
    background: #111;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.32'/%3E%3C/svg%3E");
    z-index: 9999;
}

.terminal-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.terminal-link:hover {
    text-shadow: 0 0 4px rgba(255,255,255,0.3);
}
