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

html,
body {
    height: 100%;
}

body {
    overflow: hidden;
    background: #020403;
    font-family: "Courier New", Courier, monospace;
}

.home {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 50%, rgba(0, 255, 120, 0.08), transparent 45%),
        linear-gradient(180deg, #020403 0%, #041208 50%, #020403 100%);
}

.home__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 255, 120, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 120, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
}

.home__scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.18) 0,
        rgba(0, 0, 0, 0.18) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    opacity: 0.35;
}

.home__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 255, 120, 0.12);
    filter: blur(80px);
    animation: pulse 4s ease-in-out infinite;
}

.home__title {
    position: relative;
    z-index: 1;
    color: #39ff14;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    text-indent: 0.35em;
    text-transform: lowercase;
    text-shadow:
        0 0 8px rgba(57, 255, 20, 0.8),
        0 0 24px rgba(57, 255, 20, 0.45),
        0 0 48px rgba(57, 255, 20, 0.2);
    animation: flicker 6s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes flicker {
    0%, 18%, 22%, 55%, 100% { opacity: 1; }
    20% { opacity: 0.82; }
    57% { opacity: 0.9; }
}
