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

body {
    background: #05070A;
    color: #d9d9d9;
    font-family: 'Share Tech Mono', monospace;
    overflow-x: hidden;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 3px 3px;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.92)),
        url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}

.scanlines::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 20px;
}

.system-text {
    color: #7CFF7C;
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.8;
    letter-spacing: 2px;
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 110px;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 0 25px rgba(255,255,255,0.15);
    animation: flicker 4s infinite;
}

.sub-title {
    color: #7CFF7C;
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.tagline {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #d0d0d0;
}

.warning-box {
    border: 1px solid rgba(158,42,42,0.6);
    background: rgba(158,42,42,0.08);
    padding: 25px;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
    color: #ff8d8d;
}

.warning-box h3 {
    margin-bottom: 15px;
    color: #ff5e5e;
}

.warning-box ul {
    margin-left: 20px;
    line-height: 1.8;
}

.main-button {
    display: inline-block;
    margin-top: 25px;
    padding: 18px 40px;
    border: 2px solid #7CFF7C;
    color: #7CFF7C;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.main-button:hover {
    background: #7CFF7C;
    color: black;
    box-shadow: 0 0 25px rgba(124,255,124,0.5);
}

.status {
    margin-top: 50px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 2;
}

.footer-noise {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.15);
    font-size: 12px;
    letter-spacing: 3px;
}

@keyframes flicker {
    0% { opacity: 1; }
    2% { opacity: 0.92; }
    4% { opacity: 1; }
    8% { opacity: 0.95; }
    70% { opacity: 1; }
    72% { opacity: 0.88; }
    100% { opacity: 1; }
}

@media(max-width: 768px) {

    .main-title {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 20px;
    }

    .warning-box {
        padding: 18px;
    }

}