body {
    margin: 0;
    background: #05080f;
    color: #cfd8dc;
    font-family: 'Courier New', monospace;
    overflow-x: hidden;
}


body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(0,255,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 60s linear infinite;
    top: -50%;
    left: -50%;
    z-index: -1;
}

@keyframes moveGrid {
    from { transform: translate(0,0); }
    to { transform: translate(150px,150px); }
}

.container {
    width: 85%;
    max-width: 900px;
    margin: auto;
    padding-top: 80px;
    text-align: center;
}

h1 {
    color: #00f7ff;
    letter-spacing: 6px;
    font-size: 32px;
}

.warning {
    margin-top: 40px;
    border: 1px solid #ff3c3c;
    padding: 25px;
    background: rgba(255,0,0,0.05);
}

.warning h2 {
    color: #ff3c3c;
}

.section {
    margin-top: 70px;
}

.button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 35px;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    text-decoration: none;
    letter-spacing: 3px;
    transition: 0.3s;
}

.button:hover {
    background: #00f7ff;
    color: black;
}

.subtle-link {
    color: #00f7ff;
    text-decoration: none;
}

.subtle-link:hover {
    text-decoration: underline;
}

footer {
    margin-top: 100px;
    padding: 20px;
    font-size: 12px;
    color: #555;
}