        @font-face {
            font-family: 'ABBvoice';
            src: url('/font/ABBvoice_Lt.ttf') format('truetype');
            font-weight: 300;
        }

        @font-face {
            font-family: 'ABBvoice';
            src: url('/font/ABBvoice_Rg.ttf') format('truetype');
            font-weight: 400;
        }

        @font-face {
            font-family: 'ABBvoice';
            src: url('/font/ABBvoice_Md.ttf') format('truetype');
            font-weight: 500;
        }

        @font-face {
            font-family: 'ABBvoice';
            src: url('/font/ABBvoice_Bd.ttf') format('truetype');
            font-weight: 700;
        }

        :root {
            --bg: #0B0F19;
            --bg-elevated: #141925;
            --bg-card: #1A1F2E;
            --text: #E4E6EB;
            --text-muted: #9BA3AF;
            --text-dim: #6B7280;
            --accent: #3B82F6;
            --accent-bright: #60A5FA;
            --accent-dark: #2563EB;
            --accent-glow: rgba(59, 130, 246, 0.15);
            --cyan: #06B6D4;
            --purple: #8B5CF6;
            --border: rgba(255, 255, 255, 0.08);
            --shadow: rgba(0, 0, 0, 0.3);
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 64px;
        }

        body {
            font-family: 'ABBvoice', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        ::selection {
            background: var(--accent);
            color: white;
        }

        /* Grid Background */
        .grid-bg {
            position: fixed;
            inset: 0;
            background-image:
                linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: 0;
        }



        /* Hero */
        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            position: relative;
            background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.15), transparent),
                radial-gradient(ellipse 60% 40% at 80% 80%, rgba(59, 130, 246, 0.08), transparent);
        }

        /* Hero Overrides for Design Page */
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: block;
            /* Override main.css grid */
            text-align: center;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--accent-glow);
            border: 1px solid var(--border);
            color: var(--accent-bright);
            padding: 0.6rem 1.25rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            animation: labelPulse 3s infinite ease-in-out;
        }

        @keyframes labelPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            50% {
                transform: scale(1.02);
                box-shadow: 0 6px 20px var(--accent-glow);
            }
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin-bottom: 2rem;
            color: var(--text);
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent-bright) 0%, var(--purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px var(--accent-glow));
        }

        .hero-description {
            font-size: 1.25rem;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Filter Tabs */
        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            padding: 2rem 5% 4rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 10;
        }

        .filter-tab {
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text-muted);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .filter-tab:hover {
            transform: translateY(-2px);
            border-color: var(--accent);
            color: var(--accent-bright);
            box-shadow: 0 8px 25px var(--accent-glow);
        }

        .filter-tab.active {
            background: var(--accent);
            border-color: var(--accent);
            color: white;
            box-shadow: 0 8px 30px var(--accent-glow);
        }

        /* Gallery Section - More whitespace */
        .gallery-section {
            padding: 4rem 10% 5rem;
            position: relative;
        }

        .section-header {
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .section-label {
            display: inline-block;
            color: var(--accent-bright);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 1.75rem);
            font-weight: 600;
            letter-spacing: -0.02em;
            color: var(--text);
        }

        /* Gallery Container - Compact Panel with generous whitespace */
        .gallery-container {
            max-width: 1100px;
            margin: 0 auto;
            background: var(--bg-elevated);
            border-radius: 24px;
            border: 1px solid var(--border);
            padding: 3rem;
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
            position: relative;
        }

        .gallery-container::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
            pointer-events: none;
        }

        /* CSS Grid - Composed Rectangular Layout */
        .gallery-grid {
            --base-unit: 120px;
            --gap: 12px;
            display: grid;
            grid-template-columns: repeat(6, var(--base-unit));
            grid-auto-rows: var(--base-unit);
            gap: var(--gap);
            justify-content: center;
        }

        .gallery-item {
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            animation: fadeIn 0.5s ease forwards;
            /* Grid placement will be set via inline styles from JSON */
        }

        /* Stagger animation */
        .gallery-item:nth-child(1) {
            animation-delay: 0.02s;
        }

        .gallery-item:nth-child(2) {
            animation-delay: 0.04s;
        }

        .gallery-item:nth-child(3) {
            animation-delay: 0.06s;
        }

        .gallery-item:nth-child(4) {
            animation-delay: 0.08s;
        }

        .gallery-item:nth-child(5) {
            animation-delay: 0.1s;
        }

        .gallery-item:nth-child(6) {
            animation-delay: 0.12s;
        }

        .gallery-item:nth-child(7) {
            animation-delay: 0.14s;
        }

        .gallery-item:nth-child(8) {
            animation-delay: 0.16s;
        }

        .gallery-item:nth-child(9) {
            animation-delay: 0.18s;
        }

        .gallery-item:nth-child(10) {
            animation-delay: 0.2s;
        }

        .gallery-item:nth-child(11) {
            animation-delay: 0.22s;
        }

        .gallery-item:nth-child(12) {
            animation-delay: 0.24s;
        }

        .gallery-item:nth-child(13) {
            animation-delay: 0.26s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .gallery-item:hover {
            transform: translateY(-8px) scale(1.02);
            z-index: 10;
        }

        .gallery-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: var(--bg-card);
        }

        .gallery-item:hover .gallery-image-container {
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6),
                0 0 0 2px var(--accent);
        }

        .gallery-image-container img {
            width: 100%;
            height: 100%;
            padding: 1rem;
            object-fit: contain;
            /* Better for logos */
            display: block;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-section[data-category="posters"] .gallery-image-container img {
            padding: 0;
            object-fit: cover;
        }

        .gallery-item:hover .gallery-image-container img {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        /* Tooltip on hover */
        .gallery-item .gallery-tooltip {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(11, 15, 25, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: all 0.4s ease;
            pointer-events: none;
        }

        .gallery-item:hover .gallery-tooltip {
            opacity: 1;
        }

        .gallery-title {
            font-size: 1rem;
            font-weight: 700;
            color: white;
            margin: 0;
            transform: translateY(10px);
            transition: transform 0.4s ease;
        }

        .gallery-item:hover .gallery-title {
            transform: translateY(0);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(11, 15, 25, 0.98);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            max-width: 90vw;
            max-height: 85vh;
            position: relative;
        }

        .lightbox-content img {
            max-width: 100%;
            max-height: 70vh;
            object-fit: contain;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .lightbox-info {
            text-align: center;
            margin-top: 1.5rem;
        }

        .lightbox-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .lightbox-description {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .lightbox-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1001;
        }

        .lightbox-close:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: rotate(90deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--bg-card);
            border: 1px solid var(--border);
            color: var(--text);
            width: 56px;
            height: 56px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-nav:hover {
            background: var(--accent);
            border-color: var(--accent);
        }

        .lightbox-prev {
            left: 1rem;
        }

        .lightbox-next {
            right: 1rem;
        }

        /* Footer */
        footer {
            background: var(--bg-elevated);
            padding: 2rem 5%;
            text-align: center;
            border-top: 1px solid var(--border);
        }

        footer p {
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        footer a {
            color: var(--accent-bright);
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .gallery-section {
                padding: 3rem 8%;
            }

            .gallery-grid {
                --base-unit: 100px;
            }
        }

        @media (max-width: 900px) {
            .gallery-grid {
                --base-unit: 80px;
                --gap: 8px;
            }
        }

        @media (max-width: 768px) {


            .gallery-section {
                padding: 2.5rem 5%;
            }

            .gallery-container {
                padding: 1rem;
                border-radius: 16px;
                max-width: 95%;
            }

            .gallery-grid {
                --base-unit: 60px;
                --gap: 6px;
            }

            .gallery-title {
                font-size: 0.7rem;
            }

            .lightbox-nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .gallery-grid {
                --base-unit: 45px;
                --gap: 4px;
            }

            .filter-tabs {
                gap: 0.5rem;
            }

            .filter-tab {
                padding: 0.5rem 1rem;
                font-size: 0.85rem;
            }

            .gallery-tooltip {
                display: none;
            }
        }