:root {
    --bg-color: #050505;
    --text-color: #d1d1d1;
    --accent-color: #8b0000;
    --secondary-color: #444;
    --glitch-color: rgba(139, 0, 0, 0.5);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 999;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

header {
    text-align: center;
    margin-bottom: 6rem;
}

.logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo img {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 10px rgba(139, 0, 0, 0.5));
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    letter-spacing: 0.5rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    position: relative;
}

.subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    color: var(--secondary-color);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

section {
    margin-bottom: 5rem;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.status-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-left: 2px solid var(--accent-color);
}

.label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.value {
    font-size: 1.1rem;
    font-weight: 600;
}

.log-list {
    list-style: none;
}

.log-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 300;
}

.log-list li::before {
    content: "> ";
    color: var(--accent-color);
}

footer {
    text-align: center;
    margin-top: 10rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: var(--secondary-color);
}

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

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

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

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9, 2px 2px #ff00c1;
    animation: glitch-anim2 1s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    10% { clip: rect(112px, 9999px, 34px, 0); }
    /* ... more frames ... */
    100% { clip: rect(67px, 9999px, 62px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    /* ... more frames ... */
    100% { clip: rect(12px, 9999px, 115px, 0); }
}

@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }
}
