:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-color: #bdff00; /* Neon Green */
    --grid-color: rgba(255, 255, 255, 0.1);
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-mono);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: crosshair;
}

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

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, var(--bg-color), transparent);
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -1px;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--grid-color);
}

.hero-content {
    max-width: 90%;
}

.glitch-text {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    position: relative;
}

.space-bar-graphic {
    width: 200px;
    height: 12px;
    background-color: var(--accent-color);
    margin: 1rem auto 2rem;
    position: relative;
    box-shadow: 0 0 20px rgba(189, 255, 0, 0.4);
}

.hero-sub {
    font-size: 1rem;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-text {
    font-size: 0.7rem;
    opacity: 0.5;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background-color: var(--accent-color);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections */
.section {
    padding: 8rem 2rem;
    border-bottom: 1px solid var(--grid-color);
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item.label {
    font-size: 0.8rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.grid-item.content {
    font-size: 1.5rem;
    font-weight: 300;
}

.grid-item.content p {
    margin-bottom: 2rem;
}

.grid-item.content strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Events */
.events {
    background-color: #0a0a0a;
}

.section-title {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-bottom: 4rem;
    text-align: center;
}

.event-placeholder {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.loader-bar {
    width: 100%;
    height: 2px;
    background-color: var(--grid-color);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    height: 100%;
    width: 30%;
    background-color: var(--accent-color);
    animation: loading 3s infinite linear;
}

@keyframes loading {
    0% { left: -30%; }
    100% { left: 100%; }
}

.loader-text {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Contacts */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item .label {
    font-size: 0.7rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.contact-item .value {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--grid-color);
    padding-bottom: 0.5rem;
}

/* Footer */
.footer {
    padding: 4rem 2rem;
    font-size: 0.7rem;
    opacity: 0.5;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav {
        display: none; /* Keep it simple for now */
    }
    
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .grid-item.content {
        font-size: 1.2rem;
    }
    
    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }
}
