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

body {
    font-family: 'Courier New', Courier, monospace;
    background: #050505;
    color: #00ff41;
    min-height: 100vh;
    overflow-y: auto;           /* Fixed: Allows scrolling */
    position: relative;
    line-height: 1.6;
}

/* Optional: Remove flex centering so content can grow naturally */
.container {
    max-width: 760px;
    width: 100%;
    margin: 40px auto;          /* Centered with spacing */
    border: 2px solid #00ff41;
    padding: 45px 55px;
    background: rgba(5, 5, 5, 0.97);
    box-shadow:
        0 0 40px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
}

body::before {
    content: "";
    position: fixed;            /* Changed to fixed for better effect */
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        transparent 0px,
        transparent 2px,
        rgba(0, 255, 65, 0.04) 2px,
        rgba(0, 255, 65, 0.04) 4px
    );
    pointer-events: none;
    z-index: -1;
}

h1 {
    font-size: 3rem;
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blink {
    animation: blink 0.8s step-start infinite;
}

.tagline {
    color: #00cc33;
    font-size: 1.15rem;
    margin-bottom: 50px;
    opacity: 0.85;
}

h2 {
    color: #ffffff;
    font-size: 1.45rem;
    margin-bottom: 25px;
    letter-spacing: 4px;
    border-left: 4px solid #00ff41;
    padding-left: 15px;
}

.content {
    margin-top: 30px;
}

.link {
    display: block;
    padding: 18px 24px;
    color: #00ff41;
    text-decoration: none;
    border: 1px solid #00ff4122;
    margin-bottom: 12px;
    transition: all 0.3s;
    font-size: 1.15rem;
}

.link:hover {
    background: #00ff41;
    color: #000;
    border-color: #00ff41;
    padding-left: 40px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

footer {
    margin-top: 60px;
    text-align: center;
    opacity: 0.7;
    font-size: 0.95rem;
}

@keyframes blink {
    50% { opacity: 0; }
}