:root {
    --bg-color: #1a1a1b;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    background-color: var(--bg-color);
}

.grain {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
    z-index: 100;
}

html {
    scroll-behavior: smooth;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    font-family: ui-monospace, monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

/* Wing Colors */
.text-dev { color: #06b6d4; }
.border-dev { border-color: #06b6d4; }

.text-studio { color: #a855f7; }
.border-studio { border-color: #a855f7; }

.text-labs { color: #f97316; }
.border-labs { border-color: #f97316; }

[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}