        html,
        body {
            overflow-x: hidden;
        }

        body {
            background: #0a0a0a;
            color: #e5e7eb;
            font-family: Inter, sans-serif;
        }

        .card {
            background: #111111;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
            min-width: 0;
        }

        .card-label {
            color: rgb(156 163 175);
            font-size: 0.875rem;
            line-height: 1.25rem;
        }

        .social-btn {
            transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.16);
            background: #181818;
            box-shadow: 0 14px 24px rgba(0, 0, 0, 0.28);
        }

        .project-card {
            transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
        }

        .project-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.14);
            background: #151515;
        }

        .spotify-live-dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            background: #22c55e;
            box-shadow: 0 0 0 rgba(34, 197, 94, 0.6);
            animation: pulseDot 1.4s infinite;
        }

        @keyframes pulseDot {
            0% {
                transform: scale(1);
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
            }

            70% {
                transform: scale(1.08);
                opacity: .9;
                box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
            }

            100% {
                transform: scale(1);
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
            }
        }

        .plate-highlight {
            display: inline-flex;
            align-items: center;
            padding: 0.12rem 0.45rem;
            border-radius: 0.45rem;
            background: rgba(234, 179, 8, 0.16);
            color: #f5e6a8;
            border: 1px solid rgba(234, 179, 8, 0.12);
            font-weight: 600;
            letter-spacing: .04em;
        }

        .tool-chip {
            min-width: 180px;
            margin-block: 6px;
            transition: border-color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
        }

        .tool-chip:hover {
            transform: translateY(-2px) scale(1.03);
            border-color: rgba(255, 255, 255, 0.08);
            background: #171717;
            box-shadow: 0 16px 24px rgba(0, 0, 0, 0.28);
        }

        .tool-track {
            display: flex;
            width: max-content;
            animation: marqueeLeft 22s linear infinite;
        }

        @keyframes marqueeLeft {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .tailwind-svg {
            width: 20px;
            height: 20px;
            flex: 0 0 auto;
        }

        .stat-badge {
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.03);
        }

        .meta-key {
            color: #9ca3af;
        }

        .meta-value {
            color: #f3f4f6;
        }

        .steam-ambient {
            position: absolute;
            inset: 0;
            overflow: hidden;
            border-radius: 1rem;
            pointer-events: none;
        }

        .steam-ambient::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to bottom right, rgba(10, 10, 10, 0.22), rgba(10, 10, 10, 0.78)),
                radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 40%);
        }

        .steam-ambient img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(24px);
            transform: scale(1.14);
            opacity: 0.3;
        }

        .steam-panel {
            position: relative;
            z-index: 1;
        }

        button.project-card {
            appearance: none;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        button.project-card:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.18);
            outline-offset: 2px;
        }