        :root {
            --bg-color: #0a0a0f;
            --text-color: #ffffff;
            --input-bg: rgba(255, 255, 255, 0.08);
            --input-border: rgba(255, 255, 255, 0.15);
            --panel-bg: rgba(15, 15, 20, 0.9);
            --panel-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
            --muted-text-color: rgba(255, 255, 255, 0.8);
            --subtle-text-color: rgba(255, 255, 255, 0.6);
            --surface-color: rgba(255, 255, 255, 0.1);
            --surface-hover-color: rgba(255, 255, 255, 0.2);

            /* Default brand gradient */
            --brand-gradient: linear-gradient(90deg, #00d4ff 0%, #0066ff 30%, #8800ff 65%, #ff0055 100%);
            --current-gradient: var(--brand-gradient);
        }

        body[data-theme="light"] {
            --bg-color: #f5f7fb;
            --text-color: #111827;
            --input-bg: rgba(255, 255, 255, 0.92);
            --input-border: rgba(148, 163, 184, 0.45);
            --panel-bg: rgba(243, 244, 246, 0.95);
            --panel-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
            --muted-text-color: rgba(17, 24, 39, 0.82);
            --subtle-text-color: rgba(17, 24, 39, 0.62);
            --surface-color: rgba(15, 23, 42, 0.06);
            --surface-hover-color: rgba(15, 23, 42, 0.12);
        }

        body[data-theme="light"] .tagline-display {
            font-weight: 700;
        }

        body[data-theme="light"] a[title="Browse Google Fonts"] {
            color: #111827 !important;
            opacity: 1 !important;
        }

        body[data-theme="light"] a[title="Browse Google Fonts"] img {
            filter: none !important;
        }

        body[data-theme="light"] #add-brand-modal .share-modal-content {
            background: rgba(243, 244, 246, 0.98);
            border: 1px solid rgba(148, 163, 184, 0.3);
        }

        body[data-theme="light"] .share-modal .share-modal-content {
            background: rgba(243, 244, 246, 0.98);
            border: 1px solid rgba(148, 163, 184, 0.3);
        }

        body[data-theme="light"] #add-brand-modal h2 {
            color: #111827 !important;
        }

        body[data-theme="light"] #add-brand-modal #new-brand-input {
            background: rgba(15, 23, 42, 0.06) !important;
            border: 1px solid rgba(148, 163, 184, 0.4) !important;
            color: #111827 !important;
        }

        body[data-theme="light"] #add-brand-modal #new-brand-input::placeholder {
            color: rgba(17, 24, 39, 0.55);
        }

        body[data-theme="light"] #add-brand-modal #new-brand-input:focus {
            background: #ffffff !important;
            border-color: rgba(99, 102, 241, 0.55) !important;
            box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.14);
            outline: none;
        }

        body[data-theme="light"] #add-brand-modal .share-modal-close {
            color: #374151;
            background: rgba(15, 23, 42, 0.05);
            border: 1px solid rgba(148, 163, 184, 0.35);
        }

        body[data-theme="light"] #add-brand-modal .share-modal-close:hover {
            color: #111827;
            background: rgba(15, 23, 42, 0.1);
        }

        html {
            overflow: hidden;
            height: 100%;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* justify-content: center; removed to allow footer at bottom */
            overflow: hidden;
        }

        /* Controls Panel */
        .controls {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 100;
            background: var(--panel-bg);
            backdrop-filter: blur(12px);
            padding: 24px;
            border-radius: 16px;
            border: 1px solid var(--input-border);
            box-shadow: var(--panel-shadow);
            width: 360px;
            max-height: 90vh;
            overflow-y: auto;
            transition: transform 0.3s ease, opacity 0.3s ease, background 0.8s ease, backdrop-filter 0.8s ease, border-color 0.8s ease, box-shadow 0.8s ease;
        }

        /* Add smooth transition for children when returning from peek mode */
        .controls>* {
            transition: opacity 0.8s ease;
        }

        .controls.hidden {
            transform: translateX(-400px);
            opacity: 0;
        }

        /* Peek mode: transparent to see through */
        .controls.peek-mode {
            background: rgba(15, 15, 20, 0.0);
            /* Fully transparent */
            backdrop-filter: none;
            box-shadow: none;
            border-color: transparent;
            opacity: 1;
            /* Container visible */
            pointer-events: none;
            /* Pass clicks on empty space */
        }

        /* Make all direct children invisible but clickable in peek mode */
        .controls.peek-mode>* {
            opacity: 0.1;
            /* Faint hint */
            transition: opacity 0.3s;
            pointer-events: auto;
        }

        /* The element that becomes temporarily visible */
        .controls.peek-mode .temp-visible {
            opacity: 1 !important;
            background: var(--panel-bg);
            /* Opaque background for active item */
            box-shadow: var(--panel-shadow);
            border-radius: 8px;
            transition: opacity 0.2s;
            z-index: 10;
        }

        /* Ensure we can see inside temp-visible elements */
        .controls.peek-mode .temp-visible * {
            opacity: 1;
        }

        /* Restore opacity on hover for desktop */
        @media (min-width: 769px) {
            .controls.peek-mode:hover {
                background: var(--panel-bg);
                backdrop-filter: blur(12px);
                box-shadow: var(--panel-shadow);
                border-color: var(--input-border);
                pointer-events: auto;
            }

            .controls.peek-mode:hover>* {
                opacity: 1;
            }
        }

        .controls::-webkit-scrollbar {
            width: 6px;
        }

        .controls::-webkit-scrollbar-thumb {
            background: var(--surface-hover-color);
            border-radius: 3px;
        }

        .controls-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .controls h3 {
            margin: 0;
            font-weight: 500;
            font-size: 1rem;
            color: var(--muted-text-color);
            letter-spacing: 0.5px;
        }

        textarea,
        input[type="text"] {
            width: 100%;
            background: var(--input-bg);
            border: 1px solid var(--input-border);
            color: var(--text-color);
            padding: 14px;
            border-radius: 10px;
            font-family: 'Outfit', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s, background 0.3s;
        }

        textarea {
            height: 100px;
            resize: vertical;
            margin-bottom: 14px;
        }

        textarea:focus,
        input[type="text"]:focus {
            outline: none;
            border-color: #0066ff;
            background: var(--input-bg);
        }

        /* Section labels */
        .section-label {
            font-size: 0.85rem;
            color: var(--subtle-text-color);
            margin-bottom: 10px;
            margin-top: 20px;
            display: block;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-label:first-of-type {
            margin-top: 0;
            padding-top: 0;
            border-top: none;
        }

        /* Tagline section */
        .tagline-section {
            margin-bottom: 18px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .toggle-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }

        .toggle-switch {
            position: relative;
            width: 44px;
            height: 24px;
            background: var(--surface-color);
            border-radius: 12px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: var(--brand-gradient);
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 18px;
            height: 18px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }

        .toggle-switch.active::after {
            transform: translateX(20px);
        }

        .tagline-input {
            margin-top: 10px;
        }

        .tagline-input.hidden {
            display: none;
        }

        /* Size Controls */
        .size-controls {
            display: flex;
            gap: 8px;
            margin-left: auto;
            /* Push to the right */
            align-items: center;
        }

        .size-controls.hidden {
            display: none;
        }

        .size-btn {
            width: 24px;
            height: 24px;
            background: var(--surface-color);
            border: 1px solid var(--input-border);
            border-radius: 6px;
            color: var(--text-color);
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            padding: 0;
        }

        .size-btn:hover {
            background: var(--surface-hover-color);
            border-color: rgba(255, 255, 255, 0.4);
        }

        /* Menu Toggle Button */
        .menu-toggle {
            width: 32px;
            height: 32px;
            background: var(--surface-color);
            border: 1px solid var(--input-border);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--muted-text-color);
            font-size: 16px;
        }

        .menu-toggle:hover {
            background: var(--surface-hover-color);
            color: var(--text-color);
        }

        .theme-toggle-btn {
            position: fixed;
            top: 20px;
            right: 120px;
            z-index: 10000;
            min-width: 92px;
            height: 33px;
            padding: 0 12px;
            background: var(--surface-color);
            border: 1px solid var(--input-border);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--muted-text-color);
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            backdrop-filter: blur(8px);
        }

        .theme-toggle-btn:hover {
            background: var(--surface-hover-color);
            color: var(--text-color);
        }

        .theme-toggle-btn .theme-toggle-icon {
            font-size: 14px;
            line-height: 1;
        }

        .header-add-brand-btn {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #00d4ff, #8800ff);
            border: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: white;
            box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
        }

        .header-add-brand-btn:hover {
            transform: scale(1.1);
            background: linear-gradient(135deg, #33dcff, #a541ff);
            box-shadow: 0 6px 18px rgba(0, 212, 255, 0.4);
        }

        .header-add-brand-btn svg {
            stroke-width: 2.5;
        }

        /* External Menu Open Button */
        .menu-open-btn {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            width: 48px;
            height: 48px;
            background: var(--panel-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--input-border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-color);
            font-size: 20px;
            opacity: 0;
            pointer-events: none;
        }

        .menu-open-btn.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .menu-open-btn:hover {
            background: var(--surface-hover-color);
            transform: scale(1.05);
        }

        /* Font Selector */
        .font-list {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 18px;
        }

        .font-option {
            padding: 6px 12px;
            background: var(--input-bg);
            border: 2px solid transparent;
            border-radius: 6px;
            color: var(--muted-text-color);
            font-size: 12px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .font-option:hover {
            background: var(--surface-hover-color);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .font-option.selected {
            background: rgba(136, 0, 255, 0.3);
            border-color: white;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
            color: white;
        }

        /* Color Selector */
        .color-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
        }

        .color-option {
            width: 44px;
            height: 28px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
            position: relative;
        }

        .color-option:hover {
            transform: scale(1.1);
        }

        .color-option.selected {
            border-color: white !important;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
        }

        /* Color Picker Button */
        .color-picker {
            position: relative;
            overflow: hidden;
            background: conic-gradient(from 0deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
            border: 2px solid #333333 !important;
        }

        .color-picker.selected {
            border-color: white !important;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
        }

        .color-picker input[type="color"] {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
            border: none;
            margin: 0;
            padding: 0;
        }

        .color-picker span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 16px;
            font-weight: bold;
            pointer-events: none;
            text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
        }

        /* Radio buttons for gradient/color selection */
        .style-selector {
            margin-bottom: 16px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .radio-group {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .radio-option input[type="radio"] {
            width: 16px;
            height: 16px;
            accent-color: #8800ff;
        }

        .radio-option:hover {
            color: white;
        }

        /* Gradient Selector */
        .gradient-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
        }

        .gradient-option {
            width: 44px;
            height: 28px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            border: 2px solid transparent;
            position: relative;
        }

        .gradient-option:hover {
            transform: scale(1.1);
        }

        .gradient-option.selected {
            border-color: white;
            box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
        }

        /* Carousel Display */
        .carousel-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            z-index: 10;
        }

        .carousel-track {
            position: relative;
            height: 500px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-word {
            position: absolute;
            text-align: center;
            line-height: 1;
            letter-spacing: -0.02em;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            left: 50%;
            transform: translateX(-50%);
        }

        .carousel-word.center {
            font-size: clamp(4rem, 15vw, 12rem);
            font-weight: 500;
            opacity: 1;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .carousel-word.adjacent {
            font-size: clamp(2rem, 6vw, 5rem);
            font-weight: 400;
            opacity: 0.35;
        }

        .carousel-word.adjacent.above {
            top: 10%;
        }

        .carousel-word.adjacent.below {
            top: 90%;
        }

        .carousel-word.far {
            font-size: clamp(1rem, 3vw, 2.5rem);
            font-weight: 400;
            opacity: 0.18;
        }

        .carousel-word.far.above {
            top: 0%;
        }

        .carousel-word.far.below {
            top: 100%;
        }

        .carousel-word.hidden {
            font-size: 1rem;
            opacity: 0;
        }

        /* Tagline display */
        .tagline-display {
            position: absolute;
            text-align: center;
            font-size: clamp(1rem, 2.5vw, 1.8rem);
            font-weight: 400;
            color: var(--text-color);
            margin: 0;
            padding: 0;
            letter-spacing: 0.02em;
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            top: calc(50% + 80px);
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
        }

        .tagline-display.visible {
            opacity: 1;
        }

        /* Navigation arrows */
        .nav-arrows {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 50;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            color: white;
            font-size: 20px;
        }

        .nav-arrow:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }

        /* Progress indicator */
        .progress {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .progress-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s;
        }

        .progress-dot.active {
            background: var(--current-gradient);
            transform: scale(1.3);
        }

        /* Export Button */
        .export-button {
            width: 100%;
            padding: 12px 20px;
            margin-top: 32px;
            background: linear-gradient(135deg, #8800ff 0%, #ff0055 100%);
            border: none;
            border-radius: 10px;
            color: white;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(136, 0, 255, 0.3);
            letter-spacing: 0.5px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 12px;
            height: 48px;
            box-sizing: border-box;
        }

        .export-button:first-of-type {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 12px;
            margin-top: 32px;
        }

        .export-button+.export-button {
            margin-top: 32px;
            margin-left: 10px;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 12px;
            padding-left: 12px;
        }

        .export-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(136, 0, 255, 0.5);
            background: linear-gradient(135deg, #9933ff 0%, #ff3377 100%);
        }

        .export-button:active {
            transform: translateY(0);
        }

        /* ========================================
           Menu Hint Tooltip
           ======================================== */
        .menu-hint {
            position: fixed;
            top: 80px;
            left: 50%;
            transform: translateX(-50%) translateY(-20px);
            z-index: 999;
            padding: 12px 20px;
            background: rgba(15, 15, 20, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
            opacity: 0;
            pointer-events: none;
            transition: all 0.5s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .menu-hint.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
            animation: pulseNW 1.5s ease-in-out 0.5s infinite;
        }

        .menu-hint.hide {
            opacity: 0;
            transform: translateX(-50%) translateY(-20px);
        }

        @keyframes pulseNW {
            0%, 100% {
                margin-top: 0;
                margin-left: 0;
            }
            50% {
                margin-top: -6px;
                margin-left: -6px;
            }
        }


        /* ========================================
           Pulse Animation for Menu Button
           ======================================== */
        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }
        }

        .menu-open-btn.pulse {
            animation: pulse 2s ease-in-out 3;
        }

        /* ========================================
           Mobile Optimizations (< 768px)
           ======================================== */
        @media (max-width: 767px) {

            /* Controls panel: reduce width and padding */
            .controls {
                width: calc(100vw - 40px);
                max-width: 320px;
                padding: 16px;
            }

            /* Textarea: reduce height and padding */
            textarea {
                height: 80px;
                padding: 10px;
                font-size: 14px;
            }

            /* Input fields: reduce padding */
            input[type="text"] {
                padding: 10px;
                font-size: 14px;
            }

            /* Section labels: reduce spacing */
            .section-label {
                margin-top: 12px;
                padding-top: 12px;
                margin-bottom: 8px;
            }

            /* Tagline section: reduce spacing */
            .tagline-section {
                padding-bottom: 12px;
                margin-bottom: 12px;
            }

            /* Font, gradient, and color lists: reduce gaps */
            .font-list,
            .gradient-list,
            .color-list {
                gap: 4px;
                margin-bottom: 12px;
            }

            /* Font options: smaller padding and font size */
            .font-option {
                padding: 4px 8px;
                font-size: 11px;
            }

            /* Color and gradient options: smaller dimensions */
            .color-option,
            .gradient-option {
                width: 36px;
                height: 24px;
            }

            /* Style selector: reduce spacing */
            .style-selector {
                margin-bottom: 12px;
                padding-bottom: 12px;
            }

            /* Radio group: reduce gap */
            .radio-group {
                gap: 12px;
                margin-bottom: 8px;
            }

            /* Export buttons: stack vertically with reduced spacing */
            .export-button {
                padding: 10px 16px;
                height: 40px;
                font-size: 13px;
                margin-top: 16px;
            }

            .export-button:first-of-type {
                margin-top: 16px;
                padding-top: 10px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }

            /* Force vertical layout for export buttons container */
            .export-actions {
                flex-direction: column !important;
                gap: 8px !important;
            }

            .export-button+.export-button {
                margin-top: 8px;
                margin-left: 0;
                border-left: none;
                padding-left: 16px;
            }

            /* Toggle switch: slightly smaller */
            .toggle-switch {
                width: 40px;
                height: 22px;
            }

            .toggle-switch::after {
                width: 16px;
                height: 16px;
            }

            .toggle-switch.active::after {
                transform: translateX(18px);
            }

            /* Controls header: reduce spacing */
            .controls-header {
                margin-bottom: 12px;
            }

            .controls h3 {
                font-size: 0.95rem;
            }

            /* Menu open button: add pulse animation on mobile */
            .menu-open-btn.pulse {
                animation: pulse 2s ease-in-out 3;
            }

            /* 1. Navigation FAB - Global styles apply now.
               Only minor mobile tweaks if needed for spacing */

            .nav-dock {
                bottom: 24px;
                right: 24px;
            }

            .theme-toggle-btn {
                top: auto;
                bottom: 32px;
                right: 92px;
                min-width: 32px;
                width: 32px;
                height: 32px;
                padding: 0;
                border-radius: 8px;
                gap: 0;
                font-size: 0.72rem;
            }

            .theme-toggle-btn #theme-toggle-label {
                display: none;
            }

            .theme-toggle-btn .theme-toggle-icon {
                font-size: 13px;
            }

            .nav-toggle {
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
            }



            /* 2. Compact Bottom Action Bar */
            /* Removed .floating-dock */


            /* 3. Existing overrides */
            .controls {
                width: calc(100vw - 32px);
                max-width: 360px;
                left: 16px;
                top: 16px;
            }

            .nav-arrows {
                display: none;
            }
        }

        .footer {
            text-align: center;
            padding: 30px 20px 20px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
            width: 100%;
            z-index: 10;
        }

        .footer a {
            color: #00d4ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .footer .footer-links {
            margin-top: 15px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
