:root {
    --deep-red: #660000;
    --light-red: #990000;
    --white: #ffffff;
    --black: #000000;
}

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

body {
    background-color: var(--black);
    color: var(--white);
    font-family: "Courier New", monospace;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    animation: noise 0.5s steps(10) infinite;
}

.content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.glitch-text {
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    letter-spacing: clamp(0.3rem, 1.5vw, 0.8rem);
    color: var(--white);
    text-shadow: 
        2px 0 var(--deep-red),
        -2px 0 var(--deep-red),
        0 0 8px var(--deep-red);
    opacity: 0.9;
    text-align: center;
    padding: 0 1rem;
}

.minimal-nav {
    margin-top: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 2rem;
    border: 1px solid var(--deep-red);
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--deep-red);
    color: var(--white);
}

.company-info {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    z-index: 3;
    border-top: 1px solid var(--deep-red);
}

.company-info p {
    margin: 0.5rem 0;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    letter-spacing: 0.1rem;
    color: var(--white);
    opacity: 0.8;
    padding: 0 1rem;
    word-wrap: break-word;
}

.company-info a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: var(--light-red);
}

@keyframes noise {
    0%, 100% { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAG1BMVEVHcEz///////////////////////////8b+j/VAAAACHRSTlMAECAwQGBwgOC5JYAAAABJSURBVDjLY2AQhAIG4QgQxQgWYIYwGNihDAFWKJuBhQnKZxDghAsIC4EFCE6AsFhBkIGBk4EBwmBgZICwGQTYoQIMrFAGA4sQAM8KCxB4ExrEAAAAAElFTkSuQmCC"); }
    10% { opacity: 0.8; }
    20% { opacity: 0.95; }
    30% { opacity: 0.85; }
    40% { opacity: 0.9; }
    50% { opacity: 0.8; }
    60% { opacity: 0.95; }
    70% { opacity: 0.85; }
    80% { opacity: 0.9; }
    90% { opacity: 0.95; }
}

.noise::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
        transparent 0%,
        rgba(102, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
}
