:root {
    --bg-dark: #050505;
    --accent-cyan: #00f2ff;
    --accent-magenta: #ff00ff;
    --text-main: #ffffff;
    --text-muted: #888888;
}

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

body {
    background-color: var(--bg-dark);
    /* Pixel Grid Pattern */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px; /* Matches the JS gap */
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

#pixel-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.minimal-center {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.content-box {
    animation: fadeIn 2s ease-out;
}

.logo-main {
    font-size: clamp(2.5rem, 15vw, 8rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    padding: 0 20px;
}

.logo-main span {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: clamp(0.8rem, 4vw, 1.5rem);
    color: var(--text-muted);
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.8;
    padding: 0 20px;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    body {
        background-size: 20px 20px;
    }
    .tagline {
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .logo-main {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    .tagline {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
