* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', monospace;
}

body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #020202;
    background: linear-gradient(270deg, #020202, #0a0d0a, #020202);
    background-size: 400% 400%;
    animation: bgMove 15s ease infinite;
    color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hidden { display: none !important; }

.overlay {
    position: fixed;
    inset: 0;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.overlay h1 {
    font-size: 2rem;
    letter-spacing: 6px;
    color: #3dfc03;
    text-shadow: 0 0 15px #3dfc03;
    animation: flicker 2s infinite;
}

.container {
    width: 90%;
    max-width: 800px;
    text-align: center;
    z-index: 10;
}

.name {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #3dfc03;
    margin-bottom: 25px;
    text-shadow: 0 0 15px #3dfc03, 0 0 30px #228b22;
}

.tag {
    margin: 20px 0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.links {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.links a {
    padding: 12px 25px;
    border: 1px solid #3dfc03;
    color: #3dfc03;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.links a:hover {
    background: #3dfc03;
    color: black;
    box-shadow: 0 0 25px #3dfc03;
}

.easter {
    margin-top: 30px;
    color: #ff3300;
    font-weight: bold;
}

@keyframes flicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
