:root {
    --bg-color: #0f0f0f;
    --text-color: #f0f0f0;
    --accent-lime: #ccff00;
    --accent-purple: #9d4edd;
    --card-bg: #1a1a1a;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Space Mono', monospace;
    overflow-x: hidden;
    cursor: crosshair;
}

h1, h2, h3 {
    font-family: 'Syne', sans-serif;
}

/* Wacky Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
    border-left: 1px solid #333;
}
::-webkit-scrollbar-thumb {
    background: var(--accent-lime);
    border: 2px solid var(--bg-color);
    border-radius: 20px;
}

/* Custom Utilities */
.brutalist-border {
    border: 2px solid var(--text-color);
    box-shadow: 4px 4px 0px var(--accent-lime);
    transition: all 0.2s ease;
}

.brutalist-border:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0px var(--accent-purple);
}

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

.blob-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Marquee Styles */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: var(--accent-lime);
    color: var(--bg-color);
    padding: 10px 0;
    border-top: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
    font-weight: bold;
    text-transform: uppercase;
}
.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Grid Background */
#canvas-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}
