        @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Outfit:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

        body {
            margin: 0;
            overflow: hidden;
            background-color: #121212;
            font-family: 'Inter', sans-serif;
            user-select: none;
            -webkit-user-select: none;
        }

        #canvas-container {
            width: 100vw;
            height: 100vh;
            display: block;
        }

        /* UI Overlays */
        #ui-layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        #header {
            padding: 20px;
            pointer-events: auto;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
        }

        h1 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            margin: 0;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }

        h1 span.name {
            color: #4ade80;
            display: block;
            font-size: 0.8em;
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        p.subtitle {
            font-size: 0.9rem;
            color: #aaaaaa;
            margin-top: 8px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        /* --- MOBILE FIXES --- */
        @media (max-width: 600px) {
            #header {
                padding: 15px;
            }

            h1 {
                font-size: 1.2rem;
                max-width: 60%;
                /* Prevent overlapping buttons */
            }

            h1 span.name {
                font-size: 0.7em;
            }

            p.subtitle {
                font-size: 0.75rem;
                max-width: 70%;
            }

            #toggle-container {
                top: 15px !important;
                right: 15px !important;
                gap: 8px !important;
            }

            .mode-toggle-btn {
                width: 40px !important;
                height: 40px !important;
                font-size: 18px !important;
            }
        }

        #room-indicator {
            position: absolute;
            top: 90px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            padding: 10px 20px;
            border-radius: 30px;
            font-family: 'Press Start 2P', cursive;
            font-size: 0.7rem;
            opacity: 0;
            transition: opacity 0.5s;
            border: 1px solid #555;
            text-align: center;
        }

        #interaction-hint {
            position: absolute;
            bottom: 160px;
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            color: #000;
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: bold;
            display: none;
            animation: bounce 1s infinite;
            pointer-events: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            white-space: nowrap;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translate(-50%, 0);
            }

            50% {
                transform: translate(-50%, -8px);
            }
        }

        /* --- MODAL STYLES --- */
        #modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
            z-index: 100;
        }

        #modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        #modal-content {
            background: #ffffff;
            width: 90%;
            max-width: 400px;
            max-height: 85vh;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            border: none;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transform: scale(0.95);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            font-family: 'Inter', sans-serif;
            color: #333;
        }

        #modal-overlay.active #modal-content {
            transform: scale(1);
        }

        .modal-header {
            padding: 24px 24px 10px 24px;
            background: #fff;
            position: relative;
        }

        .modal-title {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            color: #111;
            font-size: 1.5rem;
            margin-bottom: 4px;
        }

        .modal-subtitle {
            color: #888;
            font-size: 0.95rem;
            font-weight: 400;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #999;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }

        .close-btn:hover {
            color: #333;
        }

        .modal-body {
            padding: 10px 24px 30px 24px;
            overflow-y: auto;
        }

        /* --- Scrollbar --- */
        .modal-body::-webkit-scrollbar {
            width: 6px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }

        /* --- Section Headers --- */
        .section-header {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .section-header i {
            font-size: 1.1rem;
            margin-right: 10px;
        }

        .text-blue {
            color: #2563eb;
        }

        .text-pink {
            color: #d81b60;
        }

        .text-purple {
            color: #7e57c2;
        }

        .text-brown {
            color: #795548;
        }

        .text-green {
            color: #3fbf67;
        }

        .text-green-dark {
            color: #216e39;
        }

        .text-red {
            color: #ff0000;
        }

        .text-insta {
            color: #d62976;
        }

        .text-medium {
            color: #1a8917;
        }

        /* --- Updated Resume Styles --- */
        .career-timeline {
            position: relative;
            padding-left: 20px;
            margin-top: 15px;
            border-left: 3px solid #60a5fa;
            /* Solid Blue Line */
        }

        .career-item {
            margin-bottom: 25px;
            position: relative;
        }

        .career-title {
            font-weight: 700;
            font-size: 1rem;
            color: #111;
            margin-bottom: 2px;
        }

        .career-meta {
            color: #666;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: block;
        }

        .career-desc {
            color: #444;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* --- Creator Studio Cards --- */
        .card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .pink-card {
            background: #fce4ec;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 110px;
        }

        .pink-card i {
            font-size: 2rem;
            color: #ec407a;
            margin-bottom: 10px;
        }

        .pink-card-title {
            font-weight: 700;
            font-size: 0.9rem;
            color: #333;
        }

        .pink-card-sub {
            font-size: 0.75rem;
            color: #666;
            margin-top: 4px;
        }

        .red-card {
            background: linear-gradient(135deg, #fff5f5 0%, #ffebeb 100%);
            border: 1px solid #feb2b2;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 110px;
            transition: all 0.3s ease;
        }

        .red-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(255, 0, 0, 0.1);
            border-color: #f56565;
        }

        .red-card i {
            font-size: 2rem;
            color: #ff0000;
            margin-bottom: 10px;
        }

        .green-card {
            background: linear-gradient(135deg, #f0fff4 0%, #dcffe4 100%);
            border: 1px solid #9be9a8;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 110px;
            transition: all 0.3s ease;
        }

        .green-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(94, 237, 132, 0.15);
            border-color: #40c463;
        }

        .green-card i {
            font-size: 2rem;
            color: #4bc772;
            margin-bottom: 10px;
        }

        .insta-card {
            background: linear-gradient(135deg, #fdf4ff 0%, #fff0f7 100%);
            border: 1px solid #fbcfe8;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 110px;
            transition: all 0.3s ease;
        }

        .insta-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(214, 41, 118, 0.1);
            border-color: #f472b6;
        }

        .insta-card i {
            font-size: 2rem;
            color: #d62976;
            margin-bottom: 10px;
        }

        .purple-card {
            background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
            border: 1px solid #ddd6fe;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: all 0.3s ease;
        }

        .purple-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
            border-color: #8b5cf6;
        }

        .purple-card i {
            font-size: 2.2rem;
            color: #7c3aed;
            margin-bottom: 10px;
        }

        .medium-card {
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
            border: 1px solid #e6e6e6;
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 110px;
            transition: all 0.3s ease;
        }

        .medium-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border-color: #1a8917;
        }

        .medium-card i {
            font-size: 2rem;
            color: #000;
            margin-bottom: 10px;
        }

        .medium-card i.fa-js {
            color: #f7df1e;
        }

        .medium-card i.fa-react {
            color: #61dafb;
        }

        /* --- Buttons --- */
        .btn-row {
            display: flex;
            gap: 10px;
            margin-top: 25px;
        }

        .btn-primary-blue {
            background: #2563eb;
            /* Royal Blue */
            color: white;
            border: none;
            border-radius: 8px;
            padding: 12px 20px;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            flex-grow: 1;
            justify-content: center;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
        }

        .btn-primary-blue:hover {
            background: #1d4ed8;
        }

        .btn-primary-blue i {
            margin-right: 8px;
        }

        .btn-icon-square {
            background: #f3f4f6;
            color: #0077b5;
            /* LinkedIn Blue */
            border: none;
            border-radius: 8px;
            width: 48px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
        }

        .btn-icon-square:hover {
            background: #e5e7eb;
        }

        .btn-outline-pink {
            background: transparent;
            color: #d81b60;
            border: 2px solid #f8bbd0;
            border-radius: 12px;
            padding: 12px 0;
            width: 100%;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            display: block;
            text-decoration: none;
            margin-top: 20px;
        }

        .btn-outline-pink:hover {
            background: #fce4ec;
        }

        .btn-outline-red {
            background: transparent;
            color: #ff0000;
            border: 2px solid #ff0000;
            border-radius: 12px;
            padding: 12px 0;
            width: 100%;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-outline-red:hover {
            background: #ff0000;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
        }

        .btn-outline-red i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .btn-outline-green {
            background: transparent;
            color: #216e39;
            border: 2px solid #53955e;
            border-radius: 12px;
            padding: 12px 0;
            width: 100%;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-outline-green:hover {
            background: #f0fff4;
            border-color: #2b7840;
        }

        .btn-outline-insta {
            background: transparent;
            color: #d62976;
            border: 2px solid #d62976;
            border-radius: 12px;
            padding: 12px 0;
            width: 100%;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-outline-insta:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            border-color: transparent;
            box-shadow: 0 4px 15px rgba(214, 41, 118, 0.3);
        }

        .btn-outline-insta i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .btn-outline-purple {
            background: transparent;
            color: #7c3aed;
            border: 2px solid #7c3aed;
            border-radius: 12px;
            padding: 12px 0;
            width: 100%;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-outline-purple:hover {
            background: #7c3aed;
            color: white;
            box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
        }

        .btn-outline-purple i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .btn-outline-medium {
            background: transparent;
            color: #000;
            border: 2px solid #000;
            border-radius: 12px;
            padding: 12px 0;
            width: 100%;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .btn-outline-medium:hover {
            background: #000;
            color: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-medium i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .btn-outline-green i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* --- Footer --- */
        .modal-footer-text {
            text-align: center;
            color: #bbb;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-top: 30px;
            cursor: pointer;
        }

        .modal-footer-text:hover {
            color: #888;
        }

        .tag {
            display: inline-block;
            background: #f0f0f0;
            color: #333;
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
            border: 1px solid #e0e0e0;
            font-weight: 500;
        }

        /* --- Outline Card --- */
        .outline-card {
            border: 2px solid #d4a574;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 15px;
            background: transparent;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .outline-card:hover {
            background: #fafaf8;
            border-color: #795548;
            box-shadow: 0 4px 12px rgba(121, 85, 72, 0.1);
        }

        .outline-card .card-title {
            font-weight: 700;
            font-size: 1rem;
            color: #111;
            margin-bottom: 8px;
        }

        .outline-card .card-meta {
            color: #666;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 6px;
        }

        .outline-card .card-desc {
            color: #555;
            font-size: 0.9rem;
            margin-top: 8px;
        }

        /* Joystick */
        #joystick-zone {
            position: absolute;
            bottom: 40px;
            left: 40px;
            width: 140px;
            height: 140px;
            z-index: 50;
            pointer-events: auto;
            touch-action: none;
        }

        #desktop-hint {
            position: absolute;
            bottom: 30px;
            right: 30px;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(0, 0, 0, 0.5);
            padding: 15px;
            border-radius: 10px;
            font-size: 0.9rem;
            text-align: right;
            pointer-events: none;
            font-family: 'Press Start 2P';
            line-height: 1.8;
            font-size: 0.7rem;
        }

        .mobile-only {
            display: none;
        }

        @media (min-width: 600px) {
            #joystick-zone {
                display: none;
            }

            #modal-content {
                width: 90%;
                max-width: 700px;
            }
        }

        @media (max-width: 600px) {
            #desktop-hint {
                display: block;
                top: auto;
                bottom: 60px;
                right: 20px;
                padding: 8px;
                font-size: 0.4rem;
                line-height: 2;
                text-align: left;
                background: rgba(0, 0, 0, 0.5);
                max-width: 140px;
            }

            .desktop-only {
                display: none !important;
            }

            .mobile-only {
                display: inline !important;
            }

            #joystick-zone {
                display: block;
            }
        }

        #loading {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #121212;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #4ade80;
            font-family: 'Press Start 2P';
            z-index: 999;
            transition: opacity 0.5s;
        }

        .spinner {
            width: 40px;
            height: 40px;
            border: 4px solid #4ade80;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* --- Monitor Modal (SaurabhOS Popup) --- */
        .monitor-modal {
            width: 95vw !important;
            height: 90vh !important;
            max-width: none !important;
            max-height: none !important;
            background: #1a1a2e !important;
            border-radius: 16px !important;
            border: 2px solid #333 !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8) !important;
            overflow: hidden !important;
            display: flex !important;
            flex-direction: column !important;
        }

        .monitor-screen {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #000;
            border-radius: 0 0 14px 14px;
            min-height: 0;
        }

        .monitor-screen iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            display: block;
            background: #000;
        }

        .monitor-close-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(30, 30, 50, 0.85);
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 9999;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .monitor-close-btn:hover {
            background: rgba(220, 38, 38, 0.9);
            border-color: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        @media (max-width: 600px) {
            .monitor-modal {
                width: 96vw !important;
                height: 97vh !important;
                border-radius: 12px !important;
            }

            .monitor-close-btn {
                top: 6px;
                right: 8px;
                width: 36px;
                height: 36px;
                font-size: 0.95rem;
                z-index: 99999;
            }

            /* Push iframe down so close button strip at top is clear of iframe touch area */
            .monitor-screen iframe {
                height: 100%;
                pointer-events: auto;
            }
        }

        /* --- Welcome/Introduction Modal --- */
        .welcome-modal {
            background: rgba(15, 17, 26, 0.95) !important;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
            width: 90% !important;
            max-width: 650px !important;
            max-height: 90vh !important;
            color: #e2e8f0 !important;
            border-radius: 20px !important;
            overflow-y: auto !important;
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.2) transparent;
        }

        /* Customize scrollbars inside welcome modal */
        .welcome-modal::-webkit-scrollbar {
            width: 6px;
        }
        .welcome-modal::-webkit-scrollbar-track {
            background: transparent;
        }
        .welcome-modal::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 3px;
        }

        .welcome-header {
            padding: 32px 32px 12px 32px;
            text-align: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }

        .welcome-title {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6, #a78bfa, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .welcome-subtitle {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.4;
        }

        .welcome-body {
            padding: 24px 32px 32px 32px;
        }

        .intro-text {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #cbd5e1;
            margin-bottom: 24px;
            text-align: center;
        }

        /* Room Guide Cards */
        .rooms-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 24px;
        }

        .room-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 16px;
            transition: all 0.3s ease;
        }

        .room-card:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.12);
        }

        .room-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
        }

        .room-card-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .room-card-title {
            font-weight: 700;
            font-size: 0.95rem;
        }

        .room-card-desc {
            font-size: 0.82rem;
            color: #94a3b8;
            line-height: 1.4;
        }

        /* Curated room card indicators & colors */
        .room-office {
            border-left: 3px solid #3b82f6 !important;
        }
        .room-office .room-card-icon {
            background: rgba(59, 130, 246, 0.15);
            color: #3b82f6;
            box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
        }
        .room-office .room-card-title { color: #60a5fa; }

        .room-studio {
            border-left: 3px solid #ef4444 !important;
        }
        .room-studio .room-card-icon {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
        }
        .room-studio .room-card-title { color: #f87171; }

        .room-library {
            border-left: 3px solid #f59e0b !important;
        }
        .room-library .room-card-icon {
            background: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
            box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
        }
        .room-library .room-card-title { color: #fbbf24; }

        .room-hobby {
            border-left: 3px solid #a855f7 !important;
        }
        .room-hobby .room-card-icon {
            background: rgba(168, 85, 247, 0.15);
            color: #a855f7;
            box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
        }
        .room-hobby .room-card-title { color: #c084fc; }

        .room-garden {
            grid-column: span 2;
            border-left: 3px solid #10b981 !important;
        }
        .room-garden .room-card-icon {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
            box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
        }
        .room-garden .room-card-title { color: #34d399; }

        /* Guide & Controls Section */
        .controls-section {
            background: rgba(255, 255, 255, 0.01);
            border: 1px dashed rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 28px;
        }

        .controls-title {
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #94a3b8;
            margin-bottom: 12px;
            text-align: center;
        }

        .controls-list {
            display: flex;
            justify-content: space-around;
            gap: 16px;
            font-size: 0.88rem;
            color: #cbd5e1;
        }

        .control-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .key-badge {
            background: #1e293b;
            border: 1px solid #334155;
            border-bottom: 3px solid #0f172a;
            padding: 4px 10px;
            border-radius: 6px;
            font-family: monospace;
            font-size: 0.75rem;
            font-weight: 700;
            color: #f8fafc;
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        /* Pulsing Enter Button */
        .enter-btn-container {
            display: flex;
            justify-content: center;
        }

        .enter-btn {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: #ffffff;
            border: none;
            border-radius: 12px;
            padding: 16px 36px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: pulse-glow 2s infinite;
        }

        .enter-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 0 35px rgba(139, 92, 246, 0.6);
            background: linear-gradient(135deg, #2563eb, #7c3aed);
        }

        @keyframes pulse-glow {
            0% { box-shadow: 0 0 15px rgba(139, 92, 246, 0.4); }
            50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.7); }
            100% { box-shadow: 0 0 15px rgba(139, 92, 246, 0.4); }
        }

        /* Responsiveness for welcome modal */
        @media (max-width: 600px) {
            .rooms-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .room-garden {
                grid-column: span 1;
            }
            .welcome-modal {
                width: 92% !important;
                max-height: 85vh !important;
                border-radius: 16px !important;
            }
            .welcome-title {
                font-size: 1.4rem;
            }
            .welcome-header {
                padding: 24px 20px 10px 20px;
            }
            .welcome-body {
                padding: 16px 20px 24px 20px;
            }
            .controls-list {
                flex-direction: column;
                gap: 10px;
                align-items: center;
            }
            .enter-btn {
                padding: 14px 28px;
                font-size: 0.95rem;
                width: 100%;
                justify-content: center;
            }
        }