        :root {
            --bg-dark: #0a0806;
            --bg-mid: #1a1410;
            --stone-dark: #2a2520;
            --stone-mid: #3d352d;
            --stone-light: #4a4035;
            --lava-orange: #ff6a00;
            --lava-yellow: #ffaa00;
            --lava-red: #cc3300;
            --text-light: #e8e0d8;
            
            /* Matrix colors changed to Orange */
            --matrix-main: #ff6a00;
            --matrix-dark: #803300;

            --play-primary: #2d8a4e;
            --play-secondary: #1a5c32;
            --play-glow: rgba(45, 138, 78, 0.5);

            --achieve-primary: #c78a3c;
            --achieve-secondary: #8b5e20;
            --achieve-glow: rgba(199, 138, 60, 0.5);

            --ack-primary: #5c7a9a;
            --ack-secondary: #3a506b;
            --ack-glow: rgba(92, 122, 154, 0.5);

            --quit-primary: #a83c3c;
            --quit-secondary: #6b2222;
            --quit-glow: rgba(168, 60, 60, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            background: var(--bg-dark);
            font-family: 'Cinzel', serif;
            overflow: hidden;
            cursor: default;
        }

        /* Matrix Background */
        .dungeon-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        #bgCanvas {
            width: 100%;
            height: 100%;
        }

        /* Glitch overlay */
        .glitch-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.15;
            mix-blend-mode: screen;
        }

        .glitch-scanline {
            position: absolute;
            width: 100%;
            height: 2px;
            background: rgba(255, 106, 0, 0.3);
            animation: scanline 8s linear infinite;
        }

        @keyframes scanline {
            0% { top: -2px; }
            100% { top: 100%; }
        }

        /* Ambient overlay */
        .ambient-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(ellipse at 30% 70%, rgba(255, 106, 0, 0.05) 0%, transparent 50%),
                linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
            pointer-events: none;
            z-index: 2;
        }

        /* Main container */
        .main-container {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        /* Title Section */
        .title-section {
            text-align: center;
            margin-bottom: 2.5rem;
            position: relative;
        }

        .main-title {
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(1.2rem, 4vw, 2.2rem);
            font-weight: 400;
            color: #ffaa66;
            text-shadow: 
                0 0 8px rgba(255, 170, 102, 0.4),
                0 0 15px rgba(255, 106, 0, 0.3);
            letter-spacing: 0.08em;
            position: relative;
            line-height: 1.8;
            animation: titlePulse 4s ease-in-out infinite;
        }

        @keyframes titlePulse {
            0%, 100% { 
                text-shadow: 
                    0 0 8px rgba(255, 170, 102, 0.4),
                    0 0 15px rgba(255, 106, 0, 0.3);
            }
            50% { 
                text-shadow: 
                    0 0 12px rgba(255, 170, 102, 0.6),
                    0 0 25px rgba(255, 106, 0, 0.4);
            }
        }

        /* Glitch effect for title */
        .main-title::before,
        .main-title::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .main-title::before {
            color: #ff0066;
            animation: glitchLeft 3s infinite linear;
            clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
        }

        .main-title::after {
            color: #00ccff;
            animation: glitchRight 2s infinite linear;
            clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
        }

        @keyframes glitchLeft {
            0%, 90%, 100% { transform: translate(0); }
            92% { transform: translate(-3px, 1px); }
            94% { transform: translate(3px, -1px); }
            96% { transform: translate(-2px, 0); }
        }

        @keyframes glitchRight {
            0%, 90%, 100% { transform: translate(0); }
            91% { transform: translate(2px, -1px); }
            93% { transform: translate(-3px, 1px); }
            95% { transform: translate(1px, 0); }
        }

        .flame-container {
            position: absolute;
            top: -45px;
            left: 50%;
            transform: translateX(-50%);
            width: 120%;
            height: 50px;
            pointer-events: none;
            display: none;
        }

        .subtitle {
            font-family: 'Press Start 2P', monospace;
            font-size: clamp(0.5rem, 1.5vw, 0.7rem);
            color: #cc8855;
            opacity: 0.8;
            margin-top: 1rem;
            letter-spacing: 0.05em;
            text-shadow: 0 0 10px rgba(255, 106, 0, 0.3);
        }

        /* Content layout */
        .content-layout {
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Lava Character Container */
        .lava-character {
            position: relative;
            width: 160px;
            flex-shrink: 0;
        }

        /* Spotlight */
        .spotlight {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 250px;
            background: radial-gradient(ellipse at center, rgba(255, 170, 100, 0.15) 0%, rgba(255, 106, 0, 0.08) 30%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        /* Lava Block */
        .lava-block {
            width: 110px;
            height: 90px;
            background: linear-gradient(135deg, var(--lava-orange) 0%, var(--lava-red) 50%, var(--lava-orange) 100%);
            border-radius: 15px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
            box-shadow: 
                0 8px 30px rgba(255, 106, 0, 0.5),
                0 0 50px rgba(255, 106, 0, 0.25),
                inset 0 -15px 30px rgba(0,0,0,0.3),
                inset 0 8px 20px rgba(255, 200, 100, 0.4);
            animation: lavaGlow 2s ease-in-out infinite, lavaBob 3s ease-in-out infinite;
            will-change: transform;
            transition: all 0.3s ease;
        }

        @keyframes lavaGlow {
            0%, 100% { 
                box-shadow: 
                    0 8px 30px rgba(255, 106, 0, 0.5),
                    0 0 50px rgba(255, 106, 0, 0.25),
                    inset 0 -15px 30px rgba(0,0,0,0.3),
                    inset 0 8px 20px rgba(255, 200, 100, 0.4);
            }
            50% { 
                box-shadow: 
                    0 8px 40px rgba(255, 106, 0, 0.7),
                    0 0 70px rgba(255, 106, 0, 0.35),
                    inset 0 -15px 30px rgba(0,0,0,0.3),
                    inset 0 8px 25px rgba(255, 200, 100, 0.5);
            }
        }

        @keyframes lavaBob {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-4px); }
        }

        .lava-cracks {
            position: absolute;
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: 
                radial-gradient(circle at 15% 25%, rgba(255, 220, 150, 0.9) 2px, transparent 2px),
                radial-gradient(circle at 75% 55%, rgba(255, 220, 150, 0.7) 4px, transparent 4px),
                radial-gradient(circle at 35% 75%, rgba(255, 220, 150, 0.8) 3px, transparent 3px),
                radial-gradient(circle at 85% 20%, rgba(255, 220, 150, 0.6) 2px, transparent 2px),
                radial-gradient(circle at 25% 50%, rgba(255, 220, 150, 0.5) 3px, transparent 3px);
            border-radius: 12px;
            transition: opacity 0.3s ease;
        }

        /* Eyebrows */
        .eyebrow {
            position: absolute;
            width: 20px;
            height: 6px;
            background: #1a0800;
            border-radius: 3px;
            top: 8px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 5;
        }

        .eyebrow.left {
            left: 22px;
            transform: rotate(0deg);
        }

        .eyebrow.right {
            right: 22px;
            transform: rotate(0deg);
        }

        /* Eyes */
        .eyes-container {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
        }

        .eye {
            width: 28px;
            height: 32px;
            background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            box-shadow: 
                inset 0 3px 6px rgba(0,0,0,0.15),
                0 2px 4px rgba(0,0,0,0.2);
            will-change: transform;
            transition: all 0.3s ease;
        }

        .pupil {
            width: 16px;
            height: 16px;
            background: radial-gradient(circle at 35% 35%, #555 0%, #111 70%, #000 100%);
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            will-change: transform;
            transition: all 0.3s ease;
        }

        .pupil::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 3px;
            width: 6px;
            height: 6px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
        }

        /* Mouth */
        .mouth {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 12px;
            background: #1a0800;
            border-radius: 0 0 14px 14px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            will-change: width, height, border-radius;
        }

        /* BLUSH for happy */
        .blush {
            position: absolute;
            width: 18px;
            height: 10px;
            background: radial-gradient(ellipse, rgba(255, 100, 100, 0.6) 0%, transparent 70%);
            bottom: 28px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blush.left { left: 8px; }
        .blush.right { right: 8px; }

        /* Steam particles for angry */
        .steam-container {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 30px;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .steam {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 150, 100, 0.6);
            border-radius: 50%;
            animation: steamRise 1s ease-out infinite;
        }

        @keyframes steamRise {
            0% { transform: translateY(0) scale(1); opacity: 0.8; }
            100% { transform: translateY(-25px) scale(0.3); opacity: 0; }
        }

        /* ============ HAPPY STATE ============ */
        .lava-block.happy {
            background: linear-gradient(135deg, #ffaa00 0%, #ff6600 50%, #ffaa00 100%);
            animation: lavaGlow 1s ease-in-out infinite, lavaBob 2s ease-in-out infinite, happyBounce 0.5s ease-out;
        }

        @keyframes happyBounce {
            0% { transform: scale(1); }
            30% { transform: scale(1.15, 0.9); }
            50% { transform: scale(0.95, 1.1); }
            70% { transform: scale(1.05, 0.95); }
            100% { transform: scale(1); }
        }

        .lava-block.happy .mouth {
            width: 50px;
            height: 22px;
            border-radius: 0 0 25px 25px;
            background: #2a1000;
            bottom: 14px;
        }

        .lava-block.happy .eye {
            height: 18px;
            border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
            transform: scaleY(0.7);
        }

        .lava-block.happy .pupil {
            width: 12px;
            height: 12px;
        }

        .lava-block.happy .eyebrow {
            top: 4px;
            transform: rotate(-15deg) translateY(-2px);
            opacity: 0.5;
        }

        .lava-block.happy .eyebrow.right {
            transform: rotate(15deg) translateY(-2px);
        }

        .lava-block.happy .blush {
            opacity: 1;
        }

        .lava-block.happy .lava-cracks {
            opacity: 0.7;
        }

        /* ============ ANGRY STATE ============ */
        .lava-block.angry {
            background: linear-gradient(135deg, #cc2200 0%, #880000 50%, #cc2200 100%);
            animation: lavaAngry 0.08s ease-in-out infinite alternate, angryPulse 0.3s ease-in-out;
        }

        @keyframes lavaAngry {
            0% { transform: translateY(0) scale(1); }
            100% { transform: translateY(-2px) scale(1.03); }
        }

        @keyframes angryPulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.12, 0.92); }
            100% { transform: scale(1); }
        }

        .lava-block.angry .mouth {
            width: 35px;
            height: 6px;
            border-radius: 3px;
            background: #500000;
            transform: translateX(-50%) translateY(3px);
        }

        .lava-block.angry .eye {
            height: 28px;
            transform: scaleY(0.6);
            border-radius: 50% 50% 50% 50% / 70% 70% 30% 30%;
        }

        .lava-block.angry .pupil {
            width: 20px;
            height: 20px;
            background: radial-gradient(circle at 35% 35%, #880000 0%, #330000 70%, #000 100%);
        }

        .lava-block.angry .pupil::after {
            background: rgba(255, 100, 100, 0.9);
            width: 5px;
            height: 5px;
        }

        .lava-block.angry .eyebrow {
            top: 5px;
            height: 8px;
            background: #000;
        }

        .lava-block.angry .eyebrow.left {
            transform: rotate(35deg) translateY(4px);
        }

        .lava-block.angry .eyebrow.right {
            transform: rotate(-35deg) translateY(4px);
        }

        .lava-block.angry .steam-container {
            opacity: 1;
        }

        .lava-block.angry .lava-cracks {
            background: 
                radial-gradient(circle at 15% 25%, rgba(255, 50, 50, 1) 2px, transparent 2px),
                radial-gradient(circle at 75% 55%, rgba(255, 50, 50, 0.9) 4px, transparent 4px),
                radial-gradient(circle at 35% 75%, rgba(255, 50, 50, 0.9) 3px, transparent 3px),
                radial-gradient(circle at 85% 20%, rgba(255, 50, 50, 0.8) 2px, transparent 2px),
                radial-gradient(circle at 25% 50%, rgba(255, 50, 50, 0.7) 3px, transparent 3px);
        }

        /* Pillar */
        .pillar {
            width: 90px;
            height: 95px;
            background: linear-gradient(90deg, var(--stone-dark) 0%, var(--stone-mid) 40%, var(--stone-dark) 100%);
            margin: -12px auto 0;
            position: relative;
            border-radius: 6px 6px 0 0;
            z-index: 5;
        }

        .pillar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -6px;
            right: -6px;
            height: 16px;
            background: linear-gradient(90deg, var(--stone-dark), var(--stone-light), var(--stone-dark));
            border-radius: 4px;
            z-index: 1;
        }

        .pillar::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: -10px;
            right: -10px;
            height: 12px;
            background: var(--stone-dark);
        }

        .pillar-cracks {
            position: absolute;
            top: 20px;
            left: 10px;
            right: 10px;
            bottom: 10px;
            background: 
                linear-gradient(45deg, transparent 45%, var(--stone-dark) 45%, var(--stone-dark) 55%, transparent 55%),
                linear-gradient(-45deg, transparent 45%, var(--stone-dark) 45%, var(--stone-dark) 55%, transparent 55%);
            background-size: 18px 18px;
            opacity: 0.25;
        }

        /* Buttons container */
        .buttons-container {
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }

        /* Menu Button Base */
        .menu-btn {
            position: relative;
            padding: 1.1rem 3.5rem;
            font-family: 'Press Start 2P', monospace;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.08em;
            border: none;
            cursor: pointer;
            color: var(--text-light);
            border-radius: 8px;
            min-width: 320px;
            text-transform: uppercase;
            transition: transform 0.2s ease, box-shadow 0.3s ease;
            overflow: hidden;
            outline: none;
        }

        .menu-btn:focus-visible {
            outline: 2px solid rgba(255,255,255,0.5);
            outline-offset: 3px;
        }

        .btn-bg {
            position: absolute;
            inset: 0;
            border-radius: 8px;
            transition: opacity 0.3s ease;
        }

        .btn-border {
            position: absolute;
            inset: 0;
            border-radius: 8px;
            border: 2px solid transparent;
            transition: border-color 0.3s ease;
        }

        .btn-content {
            position: relative;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
        }

        .btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0) 40%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0) 60%,
                transparent 100%
            );
            transition: left 0s ease;
            z-index: 4;
        }

        .menu-btn:hover .btn-shine {
            animation: shineSweep 0.8s ease-out;
        }

        @keyframes shineSweep {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .btn-glow {
            position: absolute;
            inset: -4px;
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
            filter: blur(8px);
        }

        .menu-btn:hover .btn-glow {
            opacity: 1;
        }

        .btn-icon {
            width: 20px;
            height: 20px;
            opacity: 0.9;
        }

        .btn-icon svg {
            width: 100%;
            height: 100%;
        }

        /* PLAY Button */
        .menu-btn.play-btn { background: transparent; }
        .menu-btn.play-btn .btn-bg {
            background: linear-gradient(145deg, var(--play-primary) 0%, var(--play-secondary) 100%);
            box-shadow: inset 0 2px 4px rgba(255,255,255,0.15), inset 0 -2px 4px rgba(0,0,0,0.2);
        }
        .menu-btn.play-btn .btn-border { border-color: rgba(100, 200, 130, 0.3); }
        .menu-btn.play-btn .btn-glow { background: var(--play-glow); }
        .menu-btn.play-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(45, 138, 78, 0.3);
        }
        .menu-btn.play-btn:hover .btn-border { border-color: rgba(100, 200, 130, 0.6); }
        .menu-btn.play-btn:active { transform: translateY(0) scale(0.98); }

        /* ACHIEVEMENTS Button */
        .menu-btn.achievements-btn { background: transparent; }
        .menu-btn.achievements-btn .btn-bg {
            background: linear-gradient(145deg, var(--achieve-primary) 0%, var(--achieve-secondary) 100%);
            box-shadow: inset 0 2px 4px rgba(255,255,255,0.15), inset 0 -2px 4px rgba(0,0,0,0.2);
        }
        .menu-btn.achievements-btn .btn-border { border-color: rgba(220, 180, 100, 0.3); }
        .menu-btn.achievements-btn .btn-glow { background: var(--achieve-glow); }
        .menu-btn.achievements-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(199, 138, 60, 0.3);
        }
        .menu-btn.achievements-btn:hover .btn-border { border-color: rgba(220, 180, 100, 0.6); }
        .menu-btn.achievements-btn:active { transform: translateY(0) scale(0.98); }

        /* ACKNOWLEDGEMENT Button */
        .menu-btn.acknowledgement-btn { background: transparent; }
        .menu-btn.acknowledgement-btn .btn-bg {
            background: linear-gradient(145deg, var(--ack-primary) 0%, var(--ack-secondary) 100%);
            box-shadow: inset 0 2px 4px rgba(255,255,255,0.15), inset 0 -2px 4px rgba(0,0,0,0.2);
        }
        .menu-btn.acknowledgement-btn .btn-border { border-color: rgba(130, 160, 190, 0.3); }
        .menu-btn.acknowledgement-btn .btn-glow { background: var(--ack-glow); }
        .menu-btn.acknowledgement-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(92, 122, 154, 0.3);
        }
        .menu-btn.acknowledgement-btn:hover .btn-border { border-color: rgba(130, 160, 190, 0.6); }
        .menu-btn.acknowledgement-btn:active { transform: translateY(0) scale(0.98); }

        /* QUIT Button */
        .menu-btn.quit-btn { background: transparent; }
        .menu-btn.quit-btn .btn-bg {
            background: linear-gradient(145deg, var(--quit-primary) 0%, var(--quit-secondary) 100%);
            box-shadow: inset 0 2px 4px rgba(255,255,255,0.15), inset 0 -2px 4px rgba(0,0,0,0.2);
        }
        .menu-btn.quit-btn .btn-border { border-color: rgba(200, 100, 100, 0.3); }
        .menu-btn.quit-btn .btn-glow { background: var(--quit-glow); }
        .menu-btn.quit-btn:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 30px rgba(168, 60, 60, 0.3);
        }
        .menu-btn.quit-btn:hover .btn-border { border-color: rgba(200, 100, 100, 0.6); }
        .menu-btn.quit-btn:active { transform: translateY(0) scale(0.98); }

        .btn-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 5;
            overflow: visible;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            opacity: 0;
            pointer-events: none;
        }

        /* Modal styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
            border-radius: 4px;
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            transform: scale(0.9) translateY(20px);
            transition: transform 0.3s ease;
            box-shadow: 
                0 0 0 2px var(--matrix-main),
                0 0 30px rgba(255, 106, 0, 0.2),
                inset 0 1px 0 rgba(255,255,255,0.05);
            position: relative;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-title {
            font-family: 'Press Start 2P', monospace;
            font-size: 1rem;
            color: var(--matrix-main);
            text-align: center;
            margin-bottom: 1.5rem;
            text-shadow: 0 0 10px rgba(255, 106, 0, 0.5);
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 36px;
            height: 36px;
            background: rgba(0,0,0,0.5);
            border: 1px solid var(--matrix-main);
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: rgba(255, 106, 0, 0.2);
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            stroke: var(--matrix-main);
        }

        .achievement-list {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .achievement-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.8rem;
            background: rgba(255, 106, 0, 0.05);
            border: 1px solid rgba(255, 106, 0, 0.2);
            border-radius: 4px;
            opacity: 0.6;
        }

        .achievement-icon {
            width: 40px;
            height: 40px;
            background: #111;
            border: 1px solid var(--matrix-main);
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Press Start 2P', monospace;
            font-size: 0.8rem;
            color: var(--matrix-main);
        }

        .achievement-info { flex: 1; }

        .achievement-name {
            font-family: 'Press Start 2P', monospace;
            font-size: 0.6rem;
            color: var(--text-light);
            margin-bottom: 0.3rem;
        }

        .achievement-desc {
            font-family: 'Crimson Text', serif;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.5);
        }

        .achievement-locked-badge {
            font-family: 'Press Start 2P', monospace;
            font-size: 0.5rem;
            padding: 4px 8px;
            background: rgba(100,100,100,0.3);
            border-radius: 2px;
            color: #666;
            text-transform: uppercase;
        }

        .credits-list { text-align: center; }

        .credit-item {
            padding: 1rem;
            margin-bottom: 0.5rem;
            background: rgba(255, 106, 0, 0.05);
            border: 1px solid rgba(255, 106, 0, 0.15);
            border-radius: 4px;
        }

        .credit-name {
            font-family: 'Press Start 2P', monospace;
            font-size: 0.7rem;
            color: var(--text-light);
            margin-bottom: 0.3rem;
        }

        .credit-role {
            font-family: 'Crimson Text', serif;
            font-size: 0.9rem;
            color: var(--matrix-main);
            font-style: italic;
        }

        .credit-special {
            border-color: rgba(255, 106, 0, 0.3);
            background: rgba(255, 106, 0, 0.05);
        }

        .credit-special .credit-role {
            color: var(--lava-yellow);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .content-layout {
                flex-direction: column-reverse;
                gap: 2rem;
            }

            .lava-character { width: 130px; }
            .lava-block { width: 90px; height: 72px; }
            .pillar { width: 70px; height: 75px; }
            .menu-btn { min-width: 280px; padding: 0.9rem 2rem; font-size: 0.75rem; }

            .eyes-container { gap: 14px; top: 16px; }
            .eye { width: 22px; height: 26px; }
            .pupil { width: 12px; height: 12px; }
            .eyebrow { width: 16px; height: 5px; }
            .eyebrow.left { left: 18px; }
            .eyebrow.right { right: 18px; }

            .lava-block.happy .mouth { width: 40px; height: 18px; }
            .lava-block.angry .mouth { width: 28px; }
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }