        :root {
            --bg-color: #0f0f12;
            --text-color: #e0e0e0;
            --text-muted: #999;
            --primary-color: #d97447;
            --primary-hover: #e08457;
            --primary-glow: rgba(217, 116, 71, 0.2);
            --card-bg: rgba(30, 30, 35, 0.6);
            --card-border: rgba(217, 116, 71, 0.15);
            --card-hover-bg: rgba(40, 40, 45, 0.8);
            --card-hover-border: rgba(217, 116, 71, 0.4);
            --glass-blur: 12px;
            --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
            --nav-height: 70px; /* Define nav height for consistent spacing */
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--nav-height); /* Add padding to prevent content overlap */
            /* Keep default cursor visible - paw cursor will accompany it */
        }

        /* Page layout (sticky footer) */
        #pageContent {
            min-height: calc(100vh - var(--nav-height));
            display: flex;
            flex-direction: column;
        }

        .page-body {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Enhanced Background with gradient mesh */
        body::before { 
            content: ''; 
            position: fixed; 
            top: 0; left: 0; right: 0; bottom: 0; 
            background: 
                radial-gradient(ellipse at top left, rgba(217, 116, 71, 0.06) 0%, transparent 40%),
                radial-gradient(ellipse at bottom right, rgba(50, 60, 70, 0.08) 0%, transparent 50%),
                radial-gradient(circle at center, rgba(20, 20, 25, 0.4) 0%, transparent 70%);
            z-index: -3;
        }

        /* Animated gradient orbs */
        .gradient-orb {
            position: fixed;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: floatOrb 20s infinite ease-in-out;
            z-index: -2;
            pointer-events: none;
        }
        
        .gradient-orb:nth-child(1) {
            width: 400px; height: 400px;
            background: radial-gradient(circle, var(--primary-color), transparent);
            top: -200px; left: -200px;
            animation-duration: 25s;
        }
        
        .gradient-orb:nth-child(2) {
            width: 300px; height: 300px;
            background: radial-gradient(circle, #4a5568, transparent);
            bottom: -150px; right: -150px;
            animation-duration: 30s;
            animation-delay: -10s;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Combined Particle & Icon System */
        .particle-canvas {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        /* Floating Icons Container */
        .floating-icons-container {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            font-size: 20px;
            opacity: 0;
            animation: floatIcon 18s infinite linear;
            will-change: transform;
        }

        .floating-icon.bone { color: rgba(217, 116, 71, 0.2); }
        .floating-icon.ball { color: rgba(150, 180, 100, 0.2); }
        .floating-icon.paw { color: rgba(160, 160, 160, 0.15); }
        .floating-icon.heart { color: rgba(220, 100, 100, 0.2); }

        @keyframes floatIcon {
            0% { 
                transform: translateY(110vh) rotate(0deg); 
                opacity: 0;
            }
            10% { 
                opacity: 1;
            }
            90% { 
                opacity: 1;
            }
            100% { 
                transform: translateY(-10vh) rotate(360deg); 
                opacity: 0;
            }
        }

        /* Modern Card Styles */
        .glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(var(--glass-blur)) saturate(120%);
            -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(120%);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s var(--transition-smooth);
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, 
                rgba(255,255,255,0.05) 0%, 
                transparent 50%, 
                rgba(255,255,255,0.02) 100%);
            pointer-events: none;
        }

        .glass-card:hover {
            background: var(--card-hover-bg);
            border-color: var(--card-hover-border);
            transform: translateY(-2px);
            box-shadow: 
                0 10px 30px -10px rgba(0,0,0,0.5),
                0 0 0 1px var(--card-hover-border),
                inset 0 1px 0 rgba(255,255,255,0.1);
        }

        /* Enhanced Avatar */
        .avatar-glow {
            position: relative;
            display: inline-block;
        }

        .avatar-glow::before {
            content: '';
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, var(--primary-glow), transparent 70%);
            animation: pulse 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; transform: scale(0.9); }
            50% { opacity: 0.8; transform: scale(1); }
        }

        /* Typography Improvements */
        h1, h2, h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        /* Smooth Transitions */
        a, button {
            transition: all 0.2s var(--transition-smooth);
        }

        /* Enhanced Animations */
        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s var(--transition-smooth) forwards;
        }

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

        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }
        .delay-600 { animation-delay: 0.6s; }
        .delay-700 { animation-delay: 0.7s; }
        .delay-800 { animation-delay: 0.8s; }
        .delay-900 { animation-delay: 0.9s; }
        .delay-1000 { animation-delay: 1s; }
        .delay-1100 { animation-delay: 1.1s; }
        .delay-1200 { animation-delay: 1.2s; }
        .delay-1300 { animation-delay: 1.3s; }

        /* IMPROVED Navigation Bar with auto-hide and proper centering */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--nav-height);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 50;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .nav-wrapper.scrolled {
            transform: translateY(-10px);
        }

        .nav-bar {
            display: flex;
            gap: 12px;
            padding: 12px;
            background: rgba(30, 30, 35, 0.9);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(217, 116, 71, 0.3);
            border-radius: 20px;
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
            pointer-events: auto;
            transition: all 0.3s ease;
        }

        .nav-wrapper.scrolled .nav-bar {
            background: rgba(30, 30, 35, 0.95);
            padding: 10px;
            gap: 10px;
        }

        .nav-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text-color);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .nav-button:hover {
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px -5px var(--primary-glow);
        }

        .nav-button:hover::before {
            width: 100px;
            height: 100px;
        }

        .nav-button span {
            position: relative;
            z-index: 1;
        }

        .nav-button i {
            position: relative;
            z-index: 1;
            font-size: 1.1rem;
        }

        .nav-button.back-button {
            background: rgba(217, 116, 71, 0.1);
            border-color: rgba(217, 116, 71, 0.3);
        }

        .nav-button.back-button:hover {
            background: var(--primary-color);
        }

        /* Language Toggle */
        .lang-toggle {
            position: relative;
            width: 100px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            cursor: pointer;
            overflow: hidden;
        }

        .lang-toggle-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            width: 32px;
            height: 32px;
            background: var(--primary-color);
            border-radius: 16px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.75rem;
        }

        .lang-toggle.es .lang-toggle-slider {
            left: calc(100% - 36px);
        }

        .lang-toggle::before,
        .lang-toggle::after {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--text-muted);
            pointer-events: none;
        }

        .lang-toggle::before {
            content: 'EN';
            left: 12px;
        }

        .lang-toggle::after {
            content: 'ES';
            right: 12px;
        }

        /* PAW CURSOR SYSTEM - Companion to default cursor */
        .paw-trail-cursor {
            position: fixed;
            width: 28px;
            height: 28px;
            color: rgba(217, 116, 71, 0.7);
            font-size: 22px;
            pointer-events: none;
            z-index: 999; /* Lower z-index to not interfere with nav */
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.8) rotate(0deg);
            transition: opacity 0.3s ease-out, transform 0.25s ease-out;
            will-change: transform, opacity;
            filter: drop-shadow(0 2px 8px rgba(217, 116, 71, 0.3));
        }

        .paw-trail-cursor.active {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
        }

        /* Hide paw cursor on touch devices */
        body.touch-detected .paw-trail-cursor {
            display: none;
        }

        /* Touch paw prints for mobile - improved for scroll compatibility */
        .touch-paw-print {
            position: fixed;
            width: 22px;
            height: 22px;
            color: rgba(217, 116, 71, 0.6);
            font-size: 20px;
            pointer-events: none;
            z-index: 998; /* Lower z-index to not interfere with nav */
            opacity: 1;
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
            animation: fadeOutPaw 1s ease-out forwards;
            will-change: transform, opacity;
            filter: drop-shadow(0 2px 6px rgba(217, 116, 71, 0.4));
        }

        @keyframes fadeOutPaw {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1) rotate(var(--r, 0deg));
            }
            70% {
                opacity: 0.4;
                transform: translate(-50%, -50%) scale(0.8) rotate(var(--r, 0deg));
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.4) rotate(var(--r, 0deg));
            }
        }

        /* Enhanced paw cursor on hover over interactive elements */
        .glass-card:hover ~ .paw-trail-cursor,
        .nav-button:hover ~ .paw-trail-cursor {
            color: rgba(217, 116, 71, 0.9);
            transform: translate(-50%, -50%) scale(1.2) rotate(0deg);
            filter: drop-shadow(0 4px 12px rgba(217, 116, 71, 0.5));
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            :root {
                --nav-height: 60px;
            }
            
            .nav-bar {
                padding: 8px;
                gap: 8px;
            }
            
            .nav-wrapper.scrolled .nav-bar {
                padding: 6px;
                gap: 6px;
            }
            
            .nav-button {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
            
            .nav-button span {
                display: none;
            }
            
            .nav-button i {
                margin: 0;
            }
            
            .lang-toggle {
                width: 80px;
                height: 36px;
            }
            
            .lang-toggle-slider {
                width: 28px;
                height: 28px;
                font-size: 0.7rem;
            }
            
            .lang-toggle.es .lang-toggle-slider {
                left: calc(100% - 32px);
            }

            .paw-trail-cursor {
                font-size: 20px;
                width: 24px;
                height: 24px;
            }

            .touch-paw-print {
                font-size: 18px;
                width: 20px;
                height: 20px;
            }
        }

        /* Focus Styles */
        *:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        *:focus:not(:focus-visible) {
            outline: none;
        }

        /* ===== Y2K THEME OVERRIDES ===== */
        body[data-theme="y2k"] {
            --bg-color: #050510;
            --text-color: #e0eaff;
            --text-muted: #8b9bb4;
            --primary-color: #ff00ff;
            --primary-hover: #ff66ff;
            --primary-glow: rgba(255, 0, 255, 0.6);
            --card-bg: rgba(10, 10, 35, 0.7);
            --card-border: #00ffff;
            --card-hover-bg: rgba(20, 20, 50, 0.8);
            --card-hover-border: #ff00ff;
            --glass-blur: 4px;
            --y2k-cyan: #00ffff;
            --y2k-pink: #ff00ff;
            --y2k-lime: #39ff14;
            --y2k-yellow: #fffb00;
            --y2k-purple: #b026ff;
            
            /* Custom sparkly cursor */
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text x="0" y="20" font-size="20">✨</text></svg>'), auto;
        }

        body[data-theme="y2k"] a, 
        body[data-theme="y2k"] button,
        body[data-theme="y2k"] .nav-button,
        body[data-theme="y2k"] .glass-card,
        body[data-theme="y2k"] .filter-tab,
        body[data-theme="y2k"] .oc-filter-btn {
            cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><text x="0" y="20" font-size="20">💖</text></svg>'), pointer;
        }

        /* Fonts: Legible pixel/tech fusion */
        body[data-theme="y2k"],
        body[data-theme="y2k"] *:not(.fa-solid):not(.fa-regular):not(.fa-light):not(.fa-thin):not(.fa-duotone):not(.fa-brands):not([class*="fa-"]) {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important;
            color: var(--text-color);
        }

        body[data-theme="y2k"] h1,
        body[data-theme="y2k"] h2,
        body[data-theme="y2k"] h3,
        body[data-theme="y2k"] .y2k-title-text,
        body[data-theme="y2k"] .y2k-section-title {
            font-family: 'Arial Black', Impact, sans-serif !important;
            text-transform: uppercase;
            font-style: italic;
            color: #ffffff;
            text-shadow: 2px 2px 0px var(--y2k-pink), 4px 4px 0px var(--y2k-cyan);
            letter-spacing: 1px;
        }

        /* Animated Grid & Scanlines Background */
        body[data-theme="y2k"]::before {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background-color: #050510;
            background-image: 
                linear-gradient(rgba(0, 255, 255, 0.15) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.15) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: -3;
            transform: perspective(600px) rotateX(60deg) translateY(-100px) translateZ(-200px);
            animation: grid-move 4s linear infinite;
        }

        body[data-theme="y2k"]::after {
            content: '';
            position: fixed;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(circle at center, transparent 20%, #050510 90%);
            z-index: -2;
            pointer-events: none;
        }

        /* Scanline overlay (Web 1.0 aesthetic) */
        body[data-theme="y2k"] .page-body::before {
            content: " ";
            display: block;
            position: fixed;
            top: 0; left: 0; bottom: 0; right: 0;
            background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
            z-index: 100;
            background-size: 100% 4px, 6px 100%;
            pointer-events: none;
        }

        @keyframes grid-move {
            0% { background-position: 0 0; }
            100% { background-position: 0 30px; }
        }

        /* Holographic CD / Lava Lamp Blobs */
        body[data-theme="y2k"] .gradient-orb {
            border-radius: 50%;
            background: conic-gradient(#ff00ff, #00ffff, #39ff14, #00ffff, #ff00ff) !important;
            opacity: 0.1;
            animation: cd-spin 15s linear infinite !important;
            filter: blur(35px);
        }

        @keyframes cd-spin {
            100% { transform: rotate(360deg); }
        }

        /* Glass cards - Cyberpunk / Winamp style */
        body[data-theme="y2k"] .glass-card {
            background: linear-gradient(180deg, rgba(15, 15, 45, 0.8) 0%, rgba(5, 5, 20, 0.9) 100%);
            border: 1px solid var(--y2k-cyan);
            border-top: 2px solid var(--y2k-cyan);
            border-left: 2px solid var(--y2k-cyan);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 255, 255, 0.15), inset 0 1px 10px rgba(0, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            color: #ffffff;
            transition: all 0.3s ease;
        }

        body[data-theme="y2k"] .glass-card:hover {
            box-shadow: 0 6px 20px var(--primary-glow), inset 0 1px 15px rgba(255, 0, 255, 0.4);
            border-color: var(--y2k-pink);
            transform: translateY(-3px);
        }

        /* Avatar glow - MySpace style neon */
        body[data-theme="y2k"] .avatar-glow img {
            border: 3px solid #fff;
            border-radius: 10px; /* Squircle */
            box-shadow: 0 0 15px var(--y2k-cyan), 0 0 30px var(--y2k-pink);
        }
        body[data-theme="y2k"] .avatar-glow::before {
            display: none;
        }

        /* Navigation Bar - Mac OS Aqua / Glossy metallic */
        body[data-theme="y2k"] .nav-bar {
            background: linear-gradient(180deg, rgba(30, 30, 60, 0.9) 0%, rgba(10, 10, 30, 0.95) 50%, rgba(5, 5, 20, 0.98) 51%, rgba(15, 15, 35, 0.9) 100%);
            border: 1px solid #444488;
            border-bottom: 2px solid var(--y2k-cyan);
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.7), inset 0 1px 1px rgba(255,255,255,0.3);
            padding: 8px 15px;
        }

        /* Fixed buttons: legible text, glossy dark backgrounds */
        body[data-theme="y2k"] .nav-button,
        body[data-theme="y2k"] .filter-tab,
        body[data-theme="y2k"] .oc-filter-btn {
            background: linear-gradient(180deg, #333366 0%, #111133 50%, #05051a 51%, #1a1a40 100%);
            border: 1px solid #555599;
            border-radius: 8px;
            color: #ffffff !important;
            text-shadow: 1px 1px 2px #000000, 0 0 5px var(--y2k-cyan);
            font-weight: bold;
            box-shadow: inset 0 1px 2px rgba(255,255,255,0.3), 0 2px 4px rgba(0,0,0,0.5);
            transition: all 0.15s ease;
        }

        body[data-theme="y2k"] .nav-button span,
        body[data-theme="y2k"] .nav-button i {
            color: #ffffff !important;
        }

        body[data-theme="y2k"] .nav-button:hover,
        body[data-theme="y2k"] .filter-tab:hover,
        body[data-theme="y2k"] .oc-filter-btn:hover {
            background: linear-gradient(180deg, #ff00ff 0%, #aa00aa 50%, #660066 51%, #990099 100%);
            transform: translateY(-1px);
            box-shadow: inset 0 1px 2px rgba(255,255,255,0.5), 0 0px 10px var(--y2k-pink);
            border-color: #ffffff;
            color: #ffffff !important;
            text-shadow: 1px 1px 1px #000;
        }

        body[data-theme="y2k"] .filter-tab.active,
        body[data-theme="y2k"] .oc-filter-btn.is-active {
            background: linear-gradient(180deg, #00ffff 0%, #008888 50%, #004444 51%, #00aaaa 100%);
            border-color: #ffffff;
            box-shadow: 0 0 10px var(--y2k-cyan), inset 0 2px 5px rgba(0,0,0,0.5);
            text-shadow: 1px 1px 1px #000;
            transform: translateY(1px);
            color: #ffffff !important;
        }

        body[data-theme="y2k"] .nav-button::before { display: none; }

        body[data-theme="y2k"] .lang-toggle {
            background: #000000;
            border: 2px inset #444444;
            border-radius: 12px;
        }

        body[data-theme="y2k"] .lang-toggle-slider {
            background: linear-gradient(180deg, #00ffff, #005555);
            border: 1px solid #ffffff;
            border-radius: 8px;
            box-shadow: inset 0 1px 2px rgba(255,255,255,0.8), 0 0 5px var(--y2k-cyan);
            color: #ffffff !important;
            text-shadow: 1px 1px 1px #000;
        }

        /* Floating Icons - MSN Emoticons & Bling */
        body[data-theme="y2k"] .floating-icon.bone { color: #ffffff; text-shadow: 0 0 10px var(--y2k-cyan); }
        body[data-theme="y2k"] .floating-icon.ball { color: var(--y2k-pink); text-shadow: 0 0 10px var(--y2k-pink); }
        
        body[data-theme="y2k"] .paw-trail-cursor {
            color: var(--y2k-lime);
            text-shadow: 0 0 10px #ffffff;
            animation: bling-blink 0.5s infinite alternate;
            z-index: 10000;
        }
        
        @keyframes bling-blink {
            from { filter: brightness(1) drop-shadow(0 0 5px var(--y2k-cyan)); }
            to { filter: brightness(1.5) drop-shadow(0 0 15px var(--y2k-lime)); }
        }

        /* Blinking / Marquee elements */
        .y2k-marquee {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            background: #000000;
            color: var(--y2k-lime);
            font-family: 'Courier New', Courier, monospace !important;
            padding: 5px;
            border: 1px solid #333;
            border-left: 3px solid var(--y2k-lime);
            border-right: 3px solid var(--y2k-lime);
            margin: 10px 0;
            box-shadow: inset 0 0 10px rgba(0,255,0,0.2);
        }

        .y2k-marquee span {
            display: inline-block;
            animation: marquee 10s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        @keyframes y2k-marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* FIXED IBERCON SPLASH: Highly legible with high contrast */
        body[data-theme="y2k"] .ibercon-splash {
            background: var(--y2k-pink);
            color: #ffffff !important;
            padding: 4px 12px;
            border: 2px solid var(--y2k-cyan);
            border-radius: 4px;
            transform: rotate(-10deg);
            font-family: 'Arial Black', Impact, sans-serif !important;
            font-size: 1rem;
            text-shadow: 2px 2px 0px #000000;
            box-shadow: 4px 4px 0px var(--y2k-cyan), 0 0 15px var(--y2k-pink);
            animation: wiggle 1.5s infinite alternate;
        }

        @keyframes wiggle {
            0% { transform: rotate(-10deg) scale(1); }
            100% { transform: rotate(-5deg) scale(1.1); }
        }

        /* Specific Page overrides */
        body[data-theme="y2k"] .gallery-item {
            border: 2px solid #444488;
            padding: 4px;
            background: rgba(10, 10, 30, 0.6);
            transition: all 0.2s ease;
        }
        
        body[data-theme="y2k"] .gallery-item:hover {
            border-color: var(--y2k-cyan);
            background: rgba(20, 20, 60, 0.8);
            box-shadow: 0 0 15px var(--y2k-cyan);
        }

        body[data-theme="y2k"] .modal-content,
        body[data-theme="y2k"] .character-display,
        body[data-theme="y2k"] .character-info {
            background: linear-gradient(180deg, #0a0a1a 0%, #050510 100%);
            border: 2px solid var(--y2k-cyan);
            border-top: 4px solid var(--y2k-pink);
            border-radius: 12px;
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
            color: #ffffff;
        }

        body[data-theme="y2k"] .modal-overlay {
            background: rgba(0, 0, 10, 0.85);
            backdrop-filter: blur(5px);
        }

        /* Text highlighting MySpace style */
        body[data-theme="y2k"] ::selection {
            background: var(--y2k-pink);
            color: #ffffff;
            text-shadow: none;
        }
        
        body[data-theme="y2k"] footer {
            border-top: 2px dotted #444488;
            background: rgba(0, 0, 0, 0.5);
            padding: 20px;
            color: var(--y2k-cyan);
            text-shadow: 1px 1px 0px #000;
        }
        
        /* 2000s Button links */
        body[data-theme="y2k"] a:hover {
            color: var(--y2k-lime);
            text-shadow: 0 0 5px var(--y2k-lime);
            text-decoration: underline;
        }

        /* Remove default tailwind rounded */
        body[data-theme="y2k"] .rounded-2xl,
        body[data-theme="y2k"] .rounded-3xl {
            border-radius: 12px !important;
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
