* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #000;
    color: #ff0;
    overflow: hidden;
    height: 100vh;
}

.landing-container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
    overflow: hidden;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(255, 255, 0, 0.03) 50%
    );
    background-size: 100% 4px;
    z-index: 1;
    pointer-events: none;
    animation: scanlines 10s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.glitch-container {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        0.05em 0 0 rgba(255, 0, 0, 0.75),
        -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
        0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 5s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    opacity: 0.8;
}

.glitch::after {
    animation: glitch-2 3s infinite;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    opacity: 0.8;
}

@keyframes glitch {
    0%, 14%, 15%, 49%, 50%, 99%, 100% {
        text-shadow: 
            0.05em 0 0 rgba(255, 0, 0, 0.75),
            -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15%, 49% {
        text-shadow: 
            -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50%, 99% {
        text-shadow: 
            0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
            0.05em 0 0 rgba(0, 255, 0, 0.75),
            0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

.glitch-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    margin-top: 1rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.terminal {
    width: 90%;
    max-width: 800px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid #ff0;
    border-radius: 8px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 0, 0.1);
}

.terminal-header {
    background: linear-gradient(90deg, #222, #111);
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #ff0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.terminal-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.terminal-title {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    line-height: 1.8;
}

.terminal-line {
    margin-bottom: 0.5rem;
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
}

.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0.3; }
}

.access-prompt {
    position: relative;
    margin: 3rem 0;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 2px solid #ff0;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        width: 180px;
        height: 180px;
        opacity: 1;
    }
    100% {
        width: 250px;
        height: 250px;
        opacity: 0;
    }
}

.cyber-button {
    position: relative;
    padding: 1.2rem 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.cyber-button:hover {
    transform: scale(1.05);
}

.cyber-button-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 2;
}

.cyber-button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ff0;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

.cyber-button:hover .cyber-button-glow {
    opacity: 0.3;
}

.cyber-button-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #ff0;
    clip-path: polygon(
        0 0, 
        calc(100% - 10px) 0,
        100% 10px,
        100% 100%,
        10px 100%,
        0 calc(100% - 10px)
    );
}

.hint {
    margin-top: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    opacity: 0.7;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 90%;
    max-width: 800px;
}

.status-item {
    background: rgba(20, 20, 20, 0.7);
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.status-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: #aaa;
}

.status-bar {
    height: 6px;
    background: rgba(255, 255, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.status-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff0, #ffaa00);
    box-shadow: 0 0 10px #ff0;
}