        /* ─── Light, Friendly Theme ─────────────────────────────── */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #fffbfa;
            color: #3d3336;
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: #e86c6c;
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: #d45a5a;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        /* ─── Navbar ──────────────────────────────────────────── */
        .nav {
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 0.85rem 0;
            background: linear-gradient(135deg, #e86c6c, #f2a097);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(232, 108, 108, 0.15);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .nav-brand {
            font-family: 'Outfit', sans-serif;
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-brand img {
            height: 32px;
            width: 32px;
            border-radius: 8px;
        }

        .nav-user {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nav-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .nav-username {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-left: 0.25rem;
            flex-shrink: 0;
        }

        .lang-option {
            border: none;
            background: transparent;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 4px 6px;
            border-radius: 8px;
            transition: all 0.2s;
            opacity: 0.5;
            line-height: 1;
            font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla", sans-serif;
        }

        .lang-option:hover {
            opacity: 0.85;
            background: rgba(255, 255, 255, 0.15);
        }

        .lang-option.active {
            opacity: 1;
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 2px rgba(232, 108, 108, 0.5);
        }

        /* ─── Container ──────────────────────────────────────── */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 2rem 1.5rem 4rem;
        }

        /* ─── Buttons ────────────────────────────────────────── */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            padding: 0.7rem 1.4rem;
            border: none;
            border-radius: 100px;
            font-family: 'Inter', sans-serif;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #e86c6c, #f2a097);
            color: #fff;
            box-shadow: 0 4px 16px rgba(232, 108, 108, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(232, 108, 108, 0.4);
            color: #fff;
        }

        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .btn-outline {
            background: transparent;
            color: #e86c6c;
            border: 2px solid #f5d5d0;
        }

        .btn-outline:hover {
            background: #fef0ee;
            border-color: #e8afa8;
            color: #e86c6c;
        }

        .btn-ghost {
            background: transparent;
            color: #7a6b6e;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .btn-ghost:hover {
            color: #e86c6c;
            background: #fef0ee;
        }

        .btn-danger {
            background: transparent;
            color: #ef4444;
            padding: 0.5rem 0.9rem;
        }

        .btn-danger:hover {
            background: rgba(239, 68, 68, 0.08);
        }

        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.82rem;
        }

        /* ─── Welcome Header ─────────────────────────────────── */
        .welcome-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .welcome-header h1 {
            font-size: 1.8rem;
            color: #2b2325;
        }

        .welcome-email {
            color: #9a8d8f;
            font-size: 0.88rem;
            margin-top: 0.2rem;
        }

        /* ─── Stats Grid ─────────────────────────────────────── */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .stat-card {
            background: #fff;
            border: 2px solid #f5ece9;
            border-radius: 20px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: #eddad6;
            box-shadow: 0 8px 30px rgba(232, 108, 108, 0.06);
            transform: translateY(-2px);
        }

        .stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: #e86c6c;
            margin-bottom: 0.25rem;
        }

        .stat-value.accent {
            color: #e05a5a;
        }

        .stat-value.green {
            color: #34d399;
        }

        .stat-label {
            font-size: 0.85rem;
            color: #9a8d8f;
            font-weight: 500;
        }

        /* ─── Events Grid ────────────────────────────────────── */
        .section-title {
            font-size: 1.4rem;
            color: #2b2325;
            margin-bottom: 1.5rem;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 1.25rem;
        }

        .event-card {
            background: #fff;
            border: 2px solid #f5ece9;
            border-radius: 20px;
            padding: 1.75rem;
            transition: all 0.3s ease;
        }

        .event-card:hover {
            border-color: #eddad6;
            box-shadow: 0 12px 40px rgba(232, 108, 108, 0.08);
            transform: translateY(-3px);
        }

        .event-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.25rem;
        }

        .event-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: #2b2325;
            margin-bottom: 0.25rem;
        }

        .event-date {
            font-size: 0.82rem;
            color: #9a8d8f;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 0.3rem 0.8rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .badge-active {
            background: rgba(52, 211, 153, 0.1);
            color: #10b981;
        }

        .badge-inactive {
            background: rgba(138, 135, 154, 0.1);
            color: #9a8d8f;
        }

        .badge-count {
            background: #fef0ee;
            color: #e86c6c;
        }

        .event-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.25rem;
            padding: 0.75rem 0;
            border-top: 1px solid #f5ece9;
            border-bottom: 1px solid #f5ece9;
        }

        .event-stat-value {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #2b2325;
        }

        .event-stat-label {
            font-size: 0.78rem;
            color: #9a8d8f;
        }

        .event-actions {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.25rem;
        }

        /* ─── Empty State ────────────────────────────────────── */
        .empty-state {
            text-align: center;
            padding: 4rem 2rem;
            background: #fff;
            border: 2px dashed #f5d5d0;
            border-radius: 24px;
        }

        .empty-state-icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 1rem;
        }

        .empty-state h3 {
            font-size: 1.2rem;
            color: #2b2325;
            margin-bottom: 0.5rem;
        }

        .empty-state p {
            color: #9a8d8f;
            font-size: 0.92rem;
            margin-bottom: 1.5rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ─── Modals ─────────────────────────────────────────── */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

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

        .modal {
            background: #fff;
            border-radius: 24px;
            padding: 2rem;
            width: 100%;
            max-width: 480px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            transform: translateY(10px);
            transition: transform 0.25s ease;
        }

        .modal-overlay.active .modal {
            transform: translateY(0);
        }

        .modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .modal-header h2 {
            font-size: 1.25rem;
            color: #2b2325;
        }

        .modal-close {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f5ece9;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: #7a6b6e;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .modal-close:hover {
            background: #f5d5d0;
            color: #3d3336;
        }

        .input {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 2px solid #f5ece9;
            border-radius: 14px;
            font-family: 'Inter', sans-serif;
            font-size: 0.92rem;
            background: #fef5f3;
            color: #3d3336;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .input:focus {
            border-color: #e86c6c;
            box-shadow: 0 0 0 3px rgba(232, 108, 108, 0.1);
        }

        .input::placeholder {
            color: #c4b8ba;
        }

        .form-hint {
            color: #9a8d8f;
            font-size: 0.82rem;
            margin-top: 0.4rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            color: #7a6b6e;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* ─── Detail Modal Blocks ────────────────────────────── */
        .detail-qr {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .detail-qr-wrap {
            background: #fef5f3;
            border: 2px solid #f5ece9;
            border-radius: 16px;
            padding: 12px;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .detail-qr img {
            width: 200px;
            height: 200px;
        }

        .detail-section {
            margin-bottom: 1.5rem;
        }

        .detail-label {
            display: block;
            color: #9a8d8f;
            font-size: 0.82rem;
            font-weight: 500;
            margin-bottom: 0.4rem;
        }

        .detail-row {
            display: flex;
            gap: 0.5rem;
        }

        .detail-info-card {
            background: #fef5f3;
            border: 2px solid #f5ece9;
            border-radius: 14px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .detail-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.4rem 0;
        }

        .detail-info-row+.detail-info-row {
            border-top: 1px solid #f5ece9;
        }

        .detail-info-label {
            color: #9a8d8f;
            font-size: 0.85rem;
        }

        /* ─── Toast Notifications ────────────────────────────── */
        .toast-container {
            position: fixed;
            top: 1.5rem;
            right: 1.5rem;
            z-index: 300;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .toast {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 14px;
            font-size: 0.88rem;
            font-weight: 500;
            background: #fff;
            border: 2px solid #f5ece9;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            animation: toastIn 0.3s ease;
            color: #3d3336;
        }

        .toast.success {
            border-color: rgba(52, 211, 153, 0.3);
        }

        .toast.error {
            border-color: rgba(239, 68, 68, 0.3);
        }

        .toast.info {
            border-color: rgba(232, 108, 108, 0.3);
        }

        @keyframes toastIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ─── Spinner ────────────────────────────────────────── */
        .spinner {
            width: 30px;
            height: 30px;
            border: 3px solid #f5ece9;
            border-top: 3px solid #e86c6c;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin: 0 auto;
        }

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

        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ─── Settings Panels ─────────────────────────────────── */
        .settings-section {
            background: #fef5f3;
            border: 2px solid #f5ece9;
            border-radius: 16px;
            padding: 1.25rem;
            margin-bottom: 1rem;
        }

        .settings-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .settings-title {
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: #2b2325;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .settings-body {
            display: none;
        }

        .settings-section.open .settings-body {
            display: block;
        }

        .settings-body .input {
            margin-bottom: 0.5rem;
        }

        .settings-body .form-label {
            font-size: 0.82rem;
            margin-bottom: 0.3rem;
            margin-top: 0.5rem;
        }

        /* Toggle Switch */
        .toggle {
            position: relative;
            width: 44px;
            height: 24px;
            flex-shrink: 0;
        }

        .toggle input {
            display: none;
        }

        .toggle-slider {
            position: absolute;
            inset: 0;
            background: #f5d5d0;
            border-radius: 100px;
            cursor: pointer;
            transition: 0.25s;
        }

        .toggle-slider::before {
            content: '';
            position: absolute;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: #fff;
            left: 3px;
            top: 3px;
            transition: 0.25s;
        }

        .toggle input:checked+.toggle-slider {
            background: #e86c6c;
        }

        .toggle input:checked+.toggle-slider::before {
            transform: translateX(20px);
        }

        /* Feature Badges on Event Cards */
        .feature-badges {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .feature-badge {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            font-size: 0.72rem;
            padding: 0.25rem 0.6rem;
            border-radius: 100px;
            background: #fef0ee;
            color: #e86c6c;
            font-weight: 600;
            white-space: nowrap;
        }

        .detail-modal-scroll {
            max-height: 70vh;
            overflow-y: auto;
            padding-right: 0.5rem;
        }

        .detail-modal-scroll::-webkit-scrollbar {
            width: 4px;
        }

        .detail-modal-scroll::-webkit-scrollbar-thumb {
            background: #eddad6;
            border-radius: 10px;
        }

        .settings-actions {
            display: flex;
            gap: 0.5rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .color-preview {
            display: inline-block;
            width: 20px;
            height: 20px;
            border-radius: 6px;
            border: 2px solid #f5ece9;
            vertical-align: middle;
            margin-left: 0.5rem;
        }

        /* ─── Locked Feature (Plan Gating) ──────────────────── */
        .locked-feature {
            opacity: 0.45;
            position: relative;
            pointer-events: none;
        }

        .locked-feature .settings-header {
            pointer-events: auto;
        }

        .locked-feature .toggle input:disabled+.toggle-slider {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .upgrade-badge {
            display: inline-block;
            font-size: 0.65rem;
            padding: 0.1rem 0.5rem;
            border-radius: 100px;
            background: linear-gradient(135deg, #e86c6c, #f2a097);
            color: #fff !important;
            font-weight: 700;
            letter-spacing: 0.03em;
            margin-left: 0.5rem;
            vertical-align: middle;
            pointer-events: auto;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .upgrade-badge:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 8px rgba(232, 108, 108, 0.4);
            color: #fff !important;
        }

        /* ─── Google Drive Reminder Banner ───────────────────── */
        .drive-reminder-banner {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: linear-gradient(135deg, #f0f7ff, #fef0ee);
            border: 2px solid #eddad6;
            border-left: 4px solid #e86c6c;
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInReminder 0.4s ease;
        }

        .drive-reminder-content {
            flex: 1;
        }

        .drive-reminder-content p {
            font-size: 0.9rem;
            color: #4d4345;
            line-height: 1.55;
            margin-bottom: 0.85rem;
        }

        .drive-reminder-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .drive-reminder-close {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(232, 108, 108, 0.08);
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: #9a8d8f;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .drive-reminder-close:hover {
            background: rgba(232, 108, 108, 0.15);
            color: #d45a5a;
        }

        @keyframes fadeInReminder {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .drive-reminder-banner {
                padding: 1rem;
            }

            .drive-reminder-content p {
                font-size: 0.85rem;
            }

            .drive-reminder-actions {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* ═══════════════════════════════════════════════════════════
           DESKTOP DEFAULTS — Hide mobile-only elements
           ═══════════════════════════════════════════════════════════ */
        .mobile-hero {
            display: none;
        }

        .bottom-nav {
            display: none;
        }

        .dash-tab-panel.hidden {
            display: none !important;
        }

        /* ═══════════════════════════════════════════════════════════
           MOBILE APP EXPERIENCE  (≤768px)
           ═══════════════════════════════════════════════════════════ */
        @media (max-width: 768px) {

            /* ─── Body ──────────────────────────────────────────── */
            body {
                background: #fdf6f5 !important;
                padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
                -webkit-font-smoothing: antialiased;
                -moz-osx-font-smoothing: grayscale;
            }

            /* ─── Compact App Header ────────────────────────────── */
            .nav {
                padding: 0.55rem 0 !important;
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
            }

            .nav-inner {
                padding: 0 0.75rem !important;
            }

            .nav-brand {
                font-size: 1.1rem !important;
                gap: 0.35rem !important;
            }

            .nav-brand img {
                height: 26px !important;
                width: 26px !important;
            }

            .nav-avatar {
                width: 24px !important;
                height: 24px !important;
            }

            .nav-username {
                display: none !important;
            }

            .nav-user .btn {
                padding: 0.3rem 0.55rem !important;
                font-size: 0.72rem !important;
            }

            /* ─── HIDE Desktop Welcome Header ────────────────────── */
            .welcome-header {
                display: none !important;
            }

            /* ─── SHOW Mobile Hero Greeting ───────────────────── */
            .mobile-hero {
                display: block !important;
                text-align: center;
                padding: 1.25rem 0.5rem 0.5rem;
            }

            .mobile-hero-emoji {
                font-size: 2.2rem;
                display: block;
                margin-bottom: 0.2rem;
            }

            .mobile-hero-name {
                font-family: 'Outfit', sans-serif;
                font-size: clamp(1.2rem, 5vw, 1.5rem);
                font-weight: 700;
                color: #e86c6c;
                margin-bottom: 0.15rem;
                letter-spacing: -0.02em;
                line-height: 1.2;
            }

            .mobile-hero-email {
                color: #9a8d8f;
                font-size: 0.82rem;
            }

            .mobile-hero-plan {
                display: inline-block;
                margin-top: 0.4rem;
                padding: 0.2rem 0.7rem;
                border-radius: 100px;
                font-size: 0.72rem;
                font-weight: 600;
            }

            /* ─── Container Overrides ──────────────────────────── */
            .container {
                max-width: 100% !important;
                padding: 0 0.75rem 1rem !important;
            }

            /* ─── Tab Panel Animation ─────────────────────────── */
            .dash-tab-panel {
                animation: dashTabFadeIn 0.25s ease;
            }

            .dash-tab-panel.hidden {
                display: none !important;
            }

            @keyframes dashTabFadeIn {
                from {
                    opacity: 0;
                    transform: translateY(6px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* ─── Stats Grid: Horizontal Scroll ───────────────── */
            .stats-grid {
                display: flex !important;
                gap: 0.6rem;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 0.25rem;
                margin-bottom: 1.5rem;
            }

            .stats-grid::-webkit-scrollbar {
                display: none;
            }

            .stat-card {
                min-width: 120px;
                flex-shrink: 0;
                scroll-snap-align: start;
                padding: 1rem 0.75rem;
                border-radius: 16px;
            }

            .stat-value {
                font-size: 1.6rem;
            }

            .stat-label {
                font-size: 0.78rem;
            }

            /* ─── Section Title ────────────────────────────────── */
            .section-title {
                font-size: 1.15rem;
                margin-bottom: 1rem;
            }

            /* ─── Event Cards (App-style) ─────────────────────── */
            .events-grid {
                grid-template-columns: 1fr !important;
                gap: 0.75rem;
            }

            .event-card {
                padding: 1.15rem;
                border-radius: 16px;
                border-width: 1px;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
                transition: transform 0.1s;
            }

            .event-card:hover {
                transform: none !important;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
            }

            .event-card:active {
                transform: scale(0.98) !important;
            }

            .event-card-header {
                margin-bottom: 0.75rem;
            }

            .event-title {
                font-size: 1rem;
            }

            .event-date {
                font-size: 0.75rem;
            }

            .event-stats {
                gap: 1.5rem;
                margin-bottom: 0.75rem;
                padding: 0.5rem 0;
            }

            .event-stat-value {
                font-size: 1rem;
            }

            .event-stat-label {
                font-size: 0.72rem;
            }

            .feature-badges {
                margin-bottom: 0.75rem;
            }

            .feature-badge {
                font-size: 0.68rem;
                padding: 0.2rem 0.5rem;
            }

            .event-actions {
                gap: 0.35rem;
            }

            .event-actions .btn {
                font-size: 0.78rem;
                padding: 0.45rem 0.85rem;
            }

            /* ─── Empty State ──────────────────────────────────── */
            .empty-state {
                padding: 2.5rem 1.5rem;
                border-radius: 20px;
            }

            .empty-state-icon {
                font-size: 2.5rem;
            }

            .empty-state h3 {
                font-size: 1.05rem;
            }

            .empty-state p {
                font-size: 0.85rem;
            }

            /* ─── Modals (Slide-up bottom sheet) ──────────────── */
            .modal-overlay {
                padding: 0 !important;
                align-items: flex-end !important;
            }

            .modal {
                border-radius: 20px 20px 0 0 !important;
                max-width: 100% !important;
                width: 100% !important;
                max-height: 85vh;
                overflow-y: auto;
                padding: 1.5rem !important;
                padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
                margin-bottom: 0;
                animation: slideUp 0.3s ease;
            }

            @keyframes slideUp {
                from {
                    transform: translateY(100%);
                    opacity: 0;
                }

                to {
                    transform: translateY(0);
                    opacity: 1;
                }
            }

            .modal-header h2 {
                font-size: 1.1rem;
            }

            /* ─── Toast on mobile ─────────────────────────────── */
            .toast-container {
                top: auto !important;
                bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
                right: 0.75rem !important;
                left: 0.75rem !important;
                align-items: center;
            }

            .toast {
                max-width: 100%;
                font-size: 0.82rem;
                padding: 0.65rem 1rem;
                border-radius: 12px;
            }

            /* ─── Drive reminder tweaks ───────────────────────── */
            .drive-reminder-banner {
                border-radius: 14px;
                padding: 1rem;
            }

            .drive-reminder-content p {
                font-size: 0.85rem;
            }

            .drive-reminder-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            /* ─── Lang switcher tweaks ────────────────────────── */
            .lang-switcher {
                margin-left: 0.1rem !important;
                gap: 2px !important;
            }

            .lang-option {
                font-size: 1rem !important;
                padding: 3px 4px !important;
            }

            /* ═══════════════════════════════════════════════════════
               BOTTOM NAVIGATION BAR
               ═══════════════════════════════════════════════════════ */
            .bottom-nav {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 200;
                display: flex !important;
                align-items: stretch;
                justify-content: space-around;
                height: calc(64px + env(safe-area-inset-bottom, 0px));
                padding-bottom: env(safe-area-inset-bottom, 0px);
                background: #ffffff;
                border-top: 1px solid rgba(0, 0, 0, 0.06);
                box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.06);
            }

            .bottom-nav-item {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2px;
                border: none;
                background: none;
                cursor: pointer;
                color: #aa9d9f;
                transition: all 0.2s ease;
                position: relative;
                font-family: 'Inter', sans-serif;
                -webkit-tap-highlight-color: transparent;
                padding: 6px 0;
            }

            .bottom-nav-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%) scaleX(0);
                width: 32px;
                height: 3px;
                border-radius: 0 0 4px 4px;
                background: #e86c6c;
                transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .bottom-nav-item.active::before {
                transform: translateX(-50%) scaleX(1);
            }

            .bottom-nav-item.active {
                color: #e86c6c;
            }

            .bottom-nav-icon {
                font-size: 24px;
                transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
                line-height: 1;
            }

            .bottom-nav-item.active .bottom-nav-icon {
                transform: scale(1.1);
            }

            .bottom-nav-label {
                font-size: 0.65rem;
                font-weight: 600;
                letter-spacing: 0.02em;
                line-height: 1;
            }

            /* ═══════════════════════════════════════════════════════
               ACCOUNT PANEL (mobile only)
               ═══════════════════════════════════════════════════════ */
            .account-card {
                background: #fff;
                border: 1px solid #f5ece9;
                border-radius: 16px;
                padding: 1.25rem;
                margin-bottom: 0.75rem;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
            }

            .account-header {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                margin-bottom: 1rem;
            }

            .account-avatar {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                border: 2px solid #f5d5d0;
            }

            .account-name {
                font-family: 'Outfit', sans-serif;
                font-size: 1.1rem;
                font-weight: 700;
                color: #2b2325;
            }

            .account-email {
                font-size: 0.82rem;
                color: #9a8d8f;
            }

            .account-plan-badge {
                display: inline-flex;
                align-items: center;
                gap: 4px;
                padding: 0.35rem 0.85rem;
                border-radius: 100px;
                font-size: 0.8rem;
                font-weight: 600;
                margin-bottom: 0.75rem;
            }

            .account-section-title {
                font-family: 'Outfit', sans-serif;
                font-size: 0.85rem;
                font-weight: 700;
                color: #9a8d8f;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                margin-bottom: 0.6rem;
                margin-top: 0.25rem;
            }

            .account-row {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0.75rem 0;
                border-bottom: 1px solid #f7f0ee;
            }

            .account-row:last-child {
                border-bottom: none;
            }

            .account-row-label {
                font-size: 0.88rem;
                color: #5c4d50;
            }

            .account-row-value {
                font-size: 0.88rem;
                font-weight: 600;
                color: #2b2325;
            }

            .account-actions {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                margin-top: 0.5rem;
            }

            .account-actions .btn {
                width: 100%;
                justify-content: center;
            }

            .account-logout-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                width: 100%;
                padding: 0.85rem;
                border: none;
                border-radius: 14px;
                background: rgba(239, 68, 68, 0.06);
                color: #ef4444;
                font-family: 'Inter', sans-serif;
                font-size: 0.9rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.2s;
                text-decoration: none;
                margin-top: 0.5rem;
            }

            .account-logout-btn:hover {
                background: rgba(239, 68, 68, 0.12);
            }

            /* ─── Onboarding Card (Mobile) ────────────────────── */
            .onboard-card {
                padding: 0;
            }

            .onboard-qr-img {
                width: 140px !important;
                height: 140px !important;
                border-radius: 14px !important;
            }

            .onboard-subtitle {
                font-size: 0.92rem !important;
                margin-bottom: 1rem !important;
            }

            .onboard-steps {
                gap: 0.75rem !important;
            }

            .onboard-step {
                flex-direction: column !important;
                gap: 0.5rem !important;
                align-items: center !important;
                text-align: center !important;
                padding: 1rem !important;
                border-radius: 14px !important;
            }

            .onboard-step-num {
                width: 32px !important;
                height: 32px !important;
                min-width: 32px !important;
                font-size: 0.9rem !important;
            }

            .onboard-step-body {
                width: 100%;
            }

            .onboard-step-body strong {
                font-size: 0.88rem !important;
            }

            .onboard-step-body p {
                font-size: 0.8rem !important;
                text-align: center !important;
                margin-bottom: 0.6rem !important;
            }

            .onboard-step-body .btn {
                width: 100% !important;
                justify-content: center !important;
            }

            .onboard-tip {
                padding: 0.85rem 1rem !important;
                font-size: 0.8rem !important;
                margin-top: 1rem !important;
                border-radius: 12px !important;
            }
        }

        /* ─── Extra small mobile ──────────────────────────────── */
        @media (max-width: 360px) {
            .stat-card {
                min-width: 100px;
            }

            .event-actions .btn {
                font-size: 0.72rem;
                padding: 0.4rem 0.7rem;
            }
        }

        /* ═══════════════════════════════════════════════════════
           Customization Studio
        ═══════════════════════════════════════════════════════ */
        .customize-studio {
            display: grid;
            grid-template-columns: 1fr 280px;
            gap: 2rem;
            align-items: start;
        }

        @media (max-width: 768px) {
            .customize-studio {
                grid-template-columns: 1fr;
            }

            .customize-preview {
                position: static;
                margin-bottom: 1rem;
            }

            .preview-phone {
                max-width: 220px;
                margin: 0 auto;
                min-height: auto;
            }
        }

        .customize-controls {
            min-width: 0;
        }

        /* Hero Upload Zone */
        .hero-upload-zone {
            border: 2px dashed #e8d0cb;
            border-radius: 16px;
            padding: 1rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-upload-zone:hover {
            border-color: #e86c6c;
            background: rgba(232, 108, 108, 0.04);
        }

        .hero-upload-placeholder {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            color: #9a8d8f;
            font-size: 0.85rem;
        }

        .hero-upload-placeholder span:first-child {
            font-size: 1.5rem;
        }

        .hero-preview-thumb {
            width: 100%;
            max-height: 140px;
            object-fit: cover;
            border-radius: 12px;
        }

        /* Emoji Picker */
        .emoji-picker-row {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .emoji-input {
            width: 70px;
            text-align: center;
            font-size: 1.5rem;
            padding: 0.5rem;
        }

        .emoji-suggestions {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }

        .emoji-btn {
            border: 1px solid #f5ece9;
            background: #fafafe;
            border-radius: 8px;
            font-size: 1.2rem;
            width: 36px;
            height: 36px;
            cursor: pointer;
            transition: all 0.15s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .emoji-btn:hover {
            background: #fef0ee;
            border-color: #e86c6c;
            transform: scale(1.15);
        }

        /* Live Preview */
        .customize-preview {
            position: sticky;
            top: 100px;
        }

        .preview-label {
            text-align: center;
            font-size: 0.75rem;
            color: #9a8d8f;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .preview-phone {
            border: 2px solid #e0cdca;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            min-height: 340px;
            padding-bottom: 1rem;
        }

        .preview-header {
            padding: 0.5rem 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .preview-hero-img {
            width: 100%;
            height: 80px;
            object-fit: cover;
        }

        .preview-hero-img-placeholder {
            display: none;
        }

        .preview-emoji {
            text-align: center;
            font-size: 1.5rem;
            margin-top: 0.5rem;
        }

        .preview-title {
            text-align: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 0 0.75rem;
            margin-top: 0.25rem;
            line-height: 1.2;
        }

        .preview-welcome {
            text-align: center;
            font-size: 0.7rem;
            color: #7a6b6e;
            padding: 0.25rem 0.75rem 0;
            background: #fef0ee;
            border-radius: 8px;
            margin: 0.4rem 0.75rem 0;
            padding: 0.3rem 0.5rem;
        }

        .preview-dropzone {
            margin: 0.6rem 0.75rem 0;
            border: 2px dashed #e8d0cb;
            border-radius: 12px;
            padding: 0.75rem 0.5rem;
            text-align: center;
        }

        .preview-cta {
            font-size: 0.7rem;
            font-weight: 600;
            margin-top: 0.25rem;
        }

        /* ─── Onboarding Success Card ───────────────────────── */
        .onboard-card {
            text-align: center;
            animation: onboardFadeIn 0.4s ease;
        }

        @keyframes onboardFadeIn {
            from {
                opacity: 0;
                transform: translateY(12px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .onboard-qr {
            margin-bottom: 1.25rem;
        }

        .onboard-qr-img {
            width: 180px;
            height: 180px;
            border-radius: 16px;
            border: 3px solid #f5ece9;
            box-shadow: 0 8px 30px rgba(232, 108, 108, 0.1);
        }

        .onboard-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: #5c4d50;
            margin-bottom: 1.25rem;
        }

        .onboard-steps {
            text-align: left;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .onboard-step {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            background: #fef5f3;
            border: 2px solid #f5ece9;
            border-radius: 16px;
            padding: 1.25rem;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .onboard-step:hover {
            border-color: #eddad6;
            box-shadow: 0 4px 16px rgba(232, 108, 108, 0.06);
        }

        .onboard-step-num {
            width: 36px;
            height: 36px;
            min-width: 36px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e86c6c, #f2a097);
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .onboard-step-body strong {
            display: block;
            font-size: 0.95rem;
            color: #2b2325;
            margin-bottom: 0.3rem;
        }

        .onboard-step-body p {
            font-size: 0.84rem;
            color: #7a6b6e;
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }

        .onboard-tip {
            background: #fffbeb;
            border: 2px solid #fde68a;
            border-radius: 14px;
            padding: 1rem 1.25rem;
            font-size: 0.85rem;
            color: #92400e;
            margin-top: 1.25rem;
            text-align: left;
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════════════════════════
           UPGRADE COMPONENTS (Free Plan Only)
           ═══════════════════════════════════════════════════════════ */

        /* ─── Contextual Upgrade Banner ──────────────────────── */
        .upgrade-banner {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: linear-gradient(135deg, #fff9f7, #fef0ee);
            border: 2px solid #f5d5d0;
            border-left: 5px solid #e86c6c;
            border-radius: 16px;
            padding: 1.25rem 1.5rem;
            margin-bottom: 2rem;
            animation: fadeInReminder 0.4s ease;
        }

        .upgrade-banner-content {
            flex: 1;
        }

        .upgrade-banner-content p {
            font-size: 0.92rem;
            color: #4d4345;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .upgrade-banner-content .upgrade-banner-highlight {
            font-weight: 700;
            color: #e86c6c;
        }

        .btn-upgrade-cta {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.75rem;
            border: none;
            border-radius: 100px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            background: linear-gradient(135deg, #e86c6c, #f2a097);
            color: #fff;
            box-shadow: 0 4px 20px rgba(232, 108, 108, 0.35);
        }

        .btn-upgrade-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 28px rgba(232, 108, 108, 0.45);
            color: #fff;
        }

        .upgrade-banner-close {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(232, 108, 108, 0.08);
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            color: #9a8d8f;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .upgrade-banner-close:hover {
            background: rgba(232, 108, 108, 0.15);
            color: #d45a5a;
        }

        /* ─── Event Card Upload Progress ─────────────────────── */
        .upload-progress-wrap {
            margin-top: 0.35rem;
        }

        .upload-progress-bar {
            width: 100%;
            height: 4px;
            background: #f5ece9;
            border-radius: 100px;
            overflow: hidden;
        }

        .upload-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #e86c6c, #f2a097);
            border-radius: 100px;
            transition: width 0.6s ease;
            min-width: 2px;
        }

        .upload-progress-fill.progress-warning {
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
        }

        .upload-progress-fill.progress-full {
            background: linear-gradient(90deg, #ef4444, #f87171);
        }

        .upload-plan-label {
            font-size: 0.7rem;
            color: #b09a9c;
            font-weight: 500;
            margin-top: 0.15rem;
        }

        /* ─── Inline Upgrade Button on Event Card ────────────── */
        .btn-upgrade-sm {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.4rem 0.85rem;
            border: none;
            border-radius: 100px;
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            background: linear-gradient(135deg, #e86c6c, #f2a097);
            color: #fff;
            box-shadow: 0 2px 10px rgba(232, 108, 108, 0.25);
            white-space: nowrap;
        }

        .btn-upgrade-sm:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(232, 108, 108, 0.35);
            color: #fff;
        }

        /* ─── Desktop Drive Popup ────────────────────────────── */
        .drive-popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(4px);
            z-index: 250;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .drive-popup-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .drive-popup {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            width: 100%;
            max-width: 440px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            transform: translateY(10px);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .drive-popup-overlay.active .drive-popup {
            transform: translateY(0);
        }

        .drive-popup-emoji {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        .drive-popup h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            color: #2b2325;
            margin-bottom: 0.5rem;
        }

        .drive-popup p {
            font-size: 0.9rem;
            color: #7a6b6e;
            line-height: 1.55;
            margin-bottom: 1.25rem;
        }

        .drive-popup-actions {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ─── Sticky Modal Upgrade Banner ─────────────────────── */
        .modal-upgrade-banner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            background: linear-gradient(135deg, #fff0ed, #fef5f3);
            border: 2px solid #f5d5d0;
            border-radius: 14px;
            padding: 0.85rem 1rem;
            margin-bottom: 1.25rem;
            flex-wrap: wrap;
            position: sticky;
            top: 0;
            z-index: 5;
        }

        .modal-upgrade-banner-text {
            font-size: 0.85rem;
            color: #4d4345;
            font-weight: 500;
            flex: 1;
            min-width: 180px;
        }

        .modal-upgrade-banner-text strong {
            color: #e86c6c;
            font-weight: 700;
        }

        .btn-upgrade-modal {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.5rem 1.1rem;
            border: none;
            border-radius: 100px;
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
            background: linear-gradient(135deg, #e86c6c, #f2a097);
            color: #fff;
            box-shadow: 0 2px 12px rgba(232, 108, 108, 0.3);
            white-space: nowrap;
            flex-shrink: 0;
        }

        .btn-upgrade-modal:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(232, 108, 108, 0.4);
            color: #fff;
        }

        /* ─── Mobile Responsive: Upgrade Components ──────────── */
        @media (max-width: 768px) {
            .upgrade-banner {
                padding: 1rem;
                border-radius: 14px;
                gap: 0.75rem;
            }

            .upgrade-banner-content p {
                font-size: 0.85rem;
            }

            .btn-upgrade-cta {
                width: 100%;
                justify-content: center;
                padding: 0.7rem 1.25rem;
                font-size: 0.88rem;
            }

            .btn-upgrade-sm {
                font-size: 0.7rem;
                padding: 0.35rem 0.7rem;
            }

            .modal-upgrade-banner {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                padding: 0.75rem;
                border-radius: 12px;
            }

            .modal-upgrade-banner-text {
                font-size: 0.8rem;
                min-width: auto;
            }

            .btn-upgrade-modal {
                width: 100%;
                justify-content: center;
                font-size: 0.78rem;
            }

            .drive-popup-overlay {
                display: none !important;
            }

            .upload-plan-label {
                font-size: 0.65rem;
            }
        }
/* ═══ Permanent QR Code Section ═══ */
.pqr-card {
    background: linear-gradient(135deg, rgba(232,108,108,0.04), rgba(242,160,151,0.06));
    border: 1px solid rgba(232,108,108,0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.pqr-activate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.pqr-activate-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pqr-icon {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232,108,108,0.1);
    border-radius: 14px;
    flex-shrink: 0;
}
.pqr-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem;
}
.pqr-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.pqr-header {
    margin-bottom: 1rem;
}
.pqr-target-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    display: block;
}
.pqr-target-label strong {
    color: var(--accent);
}
.pqr-no-target {
    color: #f59e0b;
}
.pqr-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
}
.pqr-qr-wrap {
    text-align: center;
}
.pqr-qr-img {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    border: 2px solid rgba(232,108,108,0.15);
}
.pqr-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}
.pqr-controls {
    min-width: 0;
}
.pqr-url-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}
.pqr-url-row .input {
    flex: 1;
    font-size: 0.8rem;
}

@media (max-width: 640px) {
    .pqr-body {
        grid-template-columns: 1fr;
    }
    .pqr-activate {
        flex-direction: column;
        text-align: center;
    }
    .pqr-activate-content {
        flex-direction: column;
    }
}
