:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #00ff9d; /* Neon Green/Cyan mix */
    --accent-dim: rgba(0, 255, 157, 0.1);
    --grid-color: rgba(255, 255, 255, 0.03);
    --font-main: 'Space Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Background Effects */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3) 51%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.3;
}

/* Main Content */
.container {
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.content-wrapper {
    border: 1px solid var(--grid-color);
    padding: 4rem 2rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(5px);
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Decorative Corners */
.content-wrapper::before,
.content-wrapper::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.content-wrapper::before {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.content-wrapper::after {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

/* Logo */
.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 5px var(--accent-color));
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    filter: blur(40px);
    opacity: 0.2;
    z-index: 1;
    animation: pulse 4s infinite ease-in-out;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    position: relative;
}

.tagline {
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 2rem 0;
    opacity: 0.5;
}

.line {
    height: 1px;
    width: 40px;
    background: var(--accent-color);
}

.node {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    transform: rotate(45deg);
}

/* Contact Link */
.contact-link {
    display: inline-block;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.contact-link .bracket {
    color: #555;
    transition: color 0.3s ease;
}

.contact-link:hover .bracket {
    color: #fff;
}

.contact-link:hover .text {
    text-shadow: 0 0 8px var(--accent-color);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-size: 0.6rem;
    letter-spacing: 1px;
}

.indicator {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: blink 2s infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Glitch Effect (Simple) */
.glitch {
    position: relative;
}

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

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 red;
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 blue;
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(20px, 9999px, 15px, 0); }
    20% { clip: rect(60px, 9999px, 70px, 0); }
    40% { clip: rect(20px, 9999px, 15px, 0); }
    60% { clip: rect(80px, 9999px, 50px, 0); }
    80% { clip: rect(10px, 9999px, 100px, 0); }
    100% { clip: rect(40px, 9999px, 90px, 0); }
}

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

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .content-wrapper {
        margin: 20px;
        padding: 3rem 1rem;
    }
}
