* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #00ff9c;
    font-family: Consolas, monospace;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.container {
    z-index: 1;
    max-width: 700px;
    padding: 45px;
    border: 1px solid rgba(0,255,156,0.25);
    border-radius: 10px;
    background: rgba(0,0,0,0.85);
    box-shadow: 0 0 60px rgba(0,255,156,0.2);
    text-align: center;
}

h1 {
    font-size: 3.2em;
    letter-spacing: 4px;
    text-shadow: 0 0 15px #00ff9c;
}

.tagline {
    margin: 10px 0 30px;
    font-size: 0.9em;
    opacity: 0.7;
}

.description {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 35px;
}

.description span {
    color: #7dffd3;
}

.links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 26px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.primary {
    color: #000;
    background: #00ff9c;
}

.primary:hover {
    box-shadow: 0 0 20px #00ff9c;
}

.secondary {
    color: #00ff9c;
    border: 1px solid #00ff9c;
}

.secondary:hover {
    background: #00ff9c;
    color: #000;
}

.status {
    margin-top: 30px;
    font-size: 0.85em;
    opacity: 0.6;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}
