/* Neo Bauhaus 2050 Styles */
:root {
    --color-primary: #FF0000;
    --color-secondary: #0000FF;
    --color-accent: #FFFF00;
    --color-neon: #00FF9C;
    --color-chrome: #E8E8E8;
    --color-dark: #000000;
    --grid-size: 30px;
}

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

body {
    background: var(--color-dark);
    color: var(--color-chrome);
    font-family: 'Futura', sans-serif;
    overflow: hidden;
    line-height: 1;
}

.neo-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#mainCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--color-dark);
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: 
        linear-gradient(to right, rgba(232, 232, 232, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(232, 232, 232, 0.05) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    pointer-events: none;
}

/* Logo Container */
.logo-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}

.logo-text {
    font-size: 8vw;
    font-weight: bold;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-chrome);
    letter-spacing: 0.1em;
    text-transform: lowercase;
    mix-blend-mode: difference;
}

/* Chrome Effect */
.chrome-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 4;
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text {
        font-size: 12vw;
    }
}

/* Hardware Acceleration */
.neo-container,
.logo-text {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
}