:root {
    --bg-color: #000000; /* Black background */
    --text-color: #e0e0e0;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Share Tech Mono', monospace;
    height: 100vh;
    overflow: hidden; /* No scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- TV STATIC NOISE EFFECT --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05; /* Adjust for more/less static */
    background: repeating-radial-gradient(
        #000 0 0.0001%,
        #fff 0 0.0002%
    ) 50% 0/2500px 2500px,
    repeating-conic-gradient(
        #000 0 0.0001%,
        #fff 0 0.0002%
    ) 50% 50%/2500px 2500px;
    background-blend-mode: difference;
    animation: static-noise 0.2s infinite alternate;
}

@keyframes static-noise {
    0% { background-position: 50% 0; }
    50% { background-position: 50% 100%; }
    100% { background-position: 50% 50%; }
}

/* --- LAYOUT --- */
.container {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* --- LOGO STYLING --- */
.logo-box img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

/* --- SLOGAN GLITCH TEXT --- */
.slogan {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

/* Creates the glitch shadow effect */
.slogan::before, .slogan::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.slogan::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.slogan::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

.status {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    opacity: 0.7;
}

/* --- GLITCH KEYFRAMES --- */
@keyframes glitch-anim {
    0% { clip: rect(12px, 9999px, 5px, 0); }
    5% { clip: rect(65px, 9999px, 80px, 0); }
    10% { clip: rect(2px, 9999px, 10px, 0); }
    15% { clip: rect(90px, 9999px, 100px, 0); }
    20% { clip: rect(10px, 9999px, 50px, 0); }
    100% { clip: rect(60px, 9999px, 70px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(5px, 9999px, 20px, 0); }
    10% { clip: rect(80px, 9999px, 90px, 0); }
    15% { clip: rect(10px, 9999px, 30px, 0); }
    20% { clip: rect(50px, 9999px, 60px, 0); }
    100% { clip: rect(20px, 9999px, 40px, 0); }
}