:root {
    --bg-color: #050505;
    --text-color: #f0f0f0;
    --accent-color: #ff3300;
}

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

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

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    opacity: 0.05;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    mix-blend-mode: difference;
}

.cursor.hover {
    width: 60px;
    height: 60px;
    background-color: var(--text-color);
    border: none;
}

.nav-bar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    text-transform: uppercase;
    z-index: 10;
    mix-blend-mode: difference;
    border-bottom: 2px solid var(--text-color);
}

.container {
    padding-top: 8rem;
}

.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.marquee {
    width: 100vw;
    overflow: hidden;
    white-space: nowrap;
    border-top: 4px solid var(--text-color);
    border-bottom: 4px solid var(--text-color);
    padding: 1rem 0;
    background: var(--text-color);
    color: var(--bg-color);
    font-size: 3rem;
}

.marquee.reverse {
    background: transparent;
    color: var(--text-color);
    border-top: 4px dashed var(--text-color);
    border-bottom: none;
}

.marquee-inner {
    display: inline-block;
    animation: marquee 20s linear infinite;
    will-change: transform;
}

.marquee.reverse .marquee-inner {
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.central-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    perspective: 1000px;
}

.glitch-text {
    font-size: 12vw;
    text-transform: uppercase;
    margin: -1rem 0;
    cursor: none;
    position: relative;
    display: inline-block;
    transition: transform 0.1s ease-out;
}

.glitch-text.outline {
    -webkit-text-stroke: 2px var(--text-color);
    color: transparent;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    border-top: 4px solid var(--text-color);
}

.info-block {
    border: 2px solid var(--text-color);
    padding: 2rem;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.info-block:hover {
    transform: translateY(-10px) translateX(10px);
    box-shadow: -10px 10px 0 var(--accent-color);
    background-color: var(--text-color);
    color: var(--bg-color);
}

.info-block h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid currentColor;
    display: inline-block;
}

.info-block p {
    font-family: monospace;
    font-size: 1rem;
    line-height: 1.5;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .nav-bar {
        font-size: 0.9rem;
        padding: 1rem;
    }
    .marquee {
        font-size: 2rem;
    }
    .info-section {
        grid-template-columns: 1fr;
    }
}
