:root {
    --bg: #030303;
    --neon-green: #00ff41;
    --neon-pink: #ff0055;
    --neon-blue: #00f3ff;
    --font-mono: 'JetBrains Mono', monospace;
    --font-display: 'Syncopate', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    background-color: var(--bg);
    color: #e0e0e0;
    font-family: var(--font-mono);
    overflow-x: hidden;
    width: 100%;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0px, rgba(0, 0, 0, 0.3) 1px, transparent 1px, transparent 3px);
    pointer-events: none;
    z-index: 9997;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://assets.codepen.io/13471/noise.png');
    opacity: 0.06;
    animation: noiseAnim 0.2s infinite;
    pointer-events: none;
    z-index: 9998;
}

@keyframes noiseAnim {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100% 100%;
    }
}

.cursor-crosshair {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: exclusion;
    transition: width 0.2s, height 0.2s;
}

.cursor-crosshair::before,
.cursor-crosshair::after {
    content: '';
    position: absolute;
    background: var(--neon-green);
}

.cursor-crosshair::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.cursor-crosshair::after {
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
}

.text-neon {
    color: var(--neon-green);
    text-shadow: 0 0 5px var(--neon-green);
}

.text-stroke {
    -webkit-text-stroke: 1px var(--neon-green);
    color: transparent;
}

.main-wrapper {
    position: relative;
    z-index: 10;
    background-color: var(--bg);
    margin-bottom: 100vh;
}

.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #222;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: grayscale(1) contrast(1.5);
}

.marquee-container {
    padding: 20px 0;
    background: var(--neon-green);
    color: black;
    overflow: hidden;
    white-space: nowrap;
    transform: rotate(-2deg) scale(1.1);
    margin: 0;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    position: relative;
    z-index: 20;
}

.marquee-text {
    display: inline-block;
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-display);
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tunnel-wrapper {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #111 0%, #000 100%);
    perspective: 1000px;
}

.tunnel-content {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.fly-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateZ(0px);
    width: 300px;
    height: 400px;
    object-fit: cover;
    border: 1px solid var(--neon-green);
    opacity: 0;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
}

.text-block {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    position: relative;
    z-index: 10;
}

.horizontal-wrapper {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #050505;
    display: flex;
    align-items: center;
}

.horizontal-track {
    display: flex;
    gap: 100px;
    padding-left: 100px;
    width: max-content;
}

.card {
    width: 60vw;
    height: 70vh;
    flex-shrink: 0;
    position: relative;
    border: 1px solid #333;
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
}

.card:hover {
    border-color: var(--neon-blue);
}

.card:hover img {
    filter: grayscale(0);
}

.zoom-wrapper {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.zoom-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(0.5);
    opacity: 0.5;
}

.zoom-content {
    position: relative;
    z-index: 10;
    text-align: center;
    opacity: 0;
}

.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    color: #f0f;
    z-index: -1;
    clip-path: inset(0 0 50% 0);
    animation: glitch-1 0.4s infinite linear alternate-reverse;
}

.glitch-text::after {
    color: #0ff;
    z-index: -2;
    clip-path: inset(50% 0 0 0);
    animation: glitch-2 0.4s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% {
        transform: translate(-2px, 2px)
    }

    100% {
        transform: translate(2px, -2px)
    }
}

@keyframes glitch-2 {
    0% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(-2px, 2px)
    }
}