        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
            background: linear-gradient(135deg, #d4a574 0%, #c9976d 100%);
            min-height: 100vh;
            padding: 8px;
            transition: background 0.3s ease;
        }
        @media (min-width: 768px) {
            body {
                padding: 20px;
            }
        }
        body.dark {
            background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
            color: white;
        }
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding-top: 24px;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            padding: 16px;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        @media (min-width: 768px) {
            .card {
                padding: 32px;
                margin-bottom: 20px;
            }
        }
        body.dark .card {
            background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        /* Landing page dark mode */
        body.dark #landingPage h2,
        body.dark #landingPage h3,
        body.dark #landingPage h4 {
            color: #f3f4f6;
        }
        body.dark #landingPage p,
        body.dark #landingPage li {
            color: #d1d5db;
        }
        /* OAuth buttons dark mode */
        body.dark #authModal .btn[onclick*="Google"] {
            background: #1f2937;
            color: #f3f4f6;
            border-color: #374151;
        }
        body.dark #authModal .btn[onclick*="Google"]:hover {
            background: #374151;
        }
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            gap: 12px;
            flex-wrap: wrap;
        }
        @media (min-width: 768px) {
            .header {
                margin-bottom: 32px;
                gap: 16px;
            }
        }
        .header h1 {
            font-size: 28px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 4px;
        }
        .header h1 .title-text {
            font-family: 'Courgette', cursive;
            background: linear-gradient(135deg, #92400e 0%, #78350f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .site-nav-desktop {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .site-nav-mobile {
            display: none;
        }
        @media (max-width: 600px) {
            .site-nav-desktop { display: none; }
            .site-nav-mobile { display: block; }
        }
        .site-nav-link {
            color: #fef3e2;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            padding: 5px 11px;
            border-radius: 16px;
            transition: background 0.2s;
            border: 1px solid rgba(254,243,226,0.2);
            background: rgba(255,255,255,0.08);
            white-space: nowrap;
        }
        .site-nav-link:hover {
            background: rgba(255,255,255,0.18);
            border-color: rgba(254,243,226,0.4);
        }
        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn-primary {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
        }
        .btn-danger {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
        }
        .btn-success {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }
        .btn-secondary {
            background: #e5e7eb;
            color: #374151;
        }
        body.dark .btn-secondary {
            background: #374151;
            color: #e5e7eb;
        }
        .input {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.2s ease;
        }
        .input:focus {
            outline: none;
            border-color: #f59e0b;
            box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
        }
        body.dark .input {
            background: #374151;
            border-color: #4b5563;
            color: white;
        }
        body.dark .input:focus {
            border-color: #f59e0b;
        }
        .drink-card {
            background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
            padding: 12px;
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            animation: slideIn 0.3s ease;
        }
        @media (min-width: 768px) {
            .drink-card {
                padding: 20px;
                border-radius: 16px;
                margin-bottom: 16px;
            }
        }
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        .drink-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        body.dark .drink-card {
            background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .grid {
            display: grid;
            gap: 16px;
            margin-bottom: 16px;
        }
        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }
        .grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }
        @media (max-width: 640px) {
            .grid-2 {
                grid-template-columns: 1fr;
            }
        }
        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 32px;
            overflow-x: auto;
            padding-bottom: 4px;
            scroll-behavior: smooth;
        }
        .tabs::-webkit-scrollbar {
            height: 4px;
        }
        .tabs::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 2px;
        }
        .tab {
            padding: 12px 20px;
            border-radius: 12px;
            background: #f3f4f6;
            border: none;
            cursor: pointer;
            white-space: nowrap;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }
        body.dark .tab {
            background: #374151;
            color: white;
        }
        .tab:hover {
            background: #e5e7eb;
            transform: translateY(-1px);
        }
        body.dark .tab:hover {
            background: #4b5563;
        }
        .tab.active {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }
        .stat-box {
            background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
            padding: 24px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        .stat-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border-color: #f59e0b;
        }
        body.dark .stat-box {
            background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .stat-value {
            font-size: 36px;
            font-weight: bold;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 12px 0;
        }
        .stat-label {
            font-size: 12px;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 1000;
            animation: fadeIn 0.2s ease;
        }
        .modal.show {
            display: flex;
        }
        .modal-content {
            background: white;
            border-radius: 20px;
            padding: 32px;
            max-width: 500px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: slideUp 0.3s ease;
        }
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideDown {
            from { opacity: 1; transform: translateY(0); }
            to { opacity: 0; transform: translateY(30px); }
        }
        body.dark .modal-content {
            background: #1f2937;
        }
        .preset-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
        }
        .preset-btn {
            background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
            padding: 16px;
            border-radius: 12px;
            border: 2px solid transparent;
            cursor: pointer;
            text-align: center;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .preset-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-color: #f59e0b;
        }
        body.dark .preset-btn {
            background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
            color: white;
        }
        body.dark .preset-btn:hover {
            background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
        }
        .preset-emoji {
            font-size: 40px;
            margin-bottom: 8px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }
        .hidden {
            display: none;
        }
        .view-slide {
            min-width: 100%;
            width: 100%;
            flex-shrink: 0;
        }
        label {
            display: block;
            margin-bottom: 6px;
            font-size: 13px;
            font-weight: 600;
            color: #6b7280;
        }
        body.dark label {
            color: #9ca3af;
        }
        .mb-4 {
            margin-bottom: 20px;
        }
        .flex {
            display: flex;
        }
        .flex-between {
            justify-content: space-between;
        }
        .gap-2 {
            gap: 12px;
        }
        .text-center {
            text-center: center;
        }
        /* Progress bars */
        .progress-bar {
            height: 8px;
            background: #e5e7eb;
            border-radius: 8px;
            overflow: hidden;
            margin: 12px 0;
        }
        .progress-fill {
            height: 100%;
            border-radius: 8px;
            transition: width 0.5s ease;
            background: linear-gradient(90deg, #10b981 0%, #059669 100%);
        }
        .progress-fill.warning {
            background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
        }
        .progress-fill.danger {
            background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
        }
        /* Animations */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        .coffee-icon {
            display: inline-block;
            animation: bounce 2s infinite;
        }
        /* Scrollbar styling */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: transparent;
        }
        ::-webkit-scrollbar-thumb {
            background: #d1d5db;
            border-radius: 4px;
        }
        body.dark ::-webkit-scrollbar-thumb {
            background: #4b5563;
        }
        /* Guest prompt */
        .guest-prompt {
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            padding: 16px 20px;
            border-radius: 16px;
            margin-bottom: 20px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
            border: 2px solid #93c5fd;
        }
        body.dark .guest-prompt {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            border-color: #8B4513;
        }
        .premium-badge {
            background: linear-gradient(135deg, #D2691E 0%, #f59e0b 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            margin-left: 8px;
            box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
            display: inline-block;
        }
        .premium-card {
            background: linear-gradient(135deg, #d4a574 0%, #c9976d 100%);
            border: 2px solid #f59e0b;
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 16px;
            text-align: center;
        }
        body.dark .premium-card {
            background: linear-gradient(135deg, #374151 0%, #4b5563 100%);
            border-color: #D2691E;
        }
        /* Dark mode for info cards */
        body.dark .info-card-blue {
            background: linear-gradient(135deg, #6F4E37 0%, #5D4037 100%) !important;
            border-color: #8B4513 !important;
        }
        body.dark .info-card-yellow {
            background: linear-gradient(135deg, #6F4E37 0%, #5D4037 100%) !important;
            border-color: #8B4513 !important;
        }
        body.dark
        body.dark .example-box {
            background: #374151 !important;
        }
        /* Dark mode for gradient text - make it lighter */
        body.dark .gradient-text-orange {
            background: linear-gradient(135deg, #D2691E 0%, #f59e0b 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }
        body.dark .gradient-text-green {
            background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
        }
        /* Dark mode for list items background */
        body.dark .list-item-bg {
            background: #374151 !important;
        }
        /* Helper classes for colored backgrounds */
        .info-card-blue {
            background: linear-gradient(135deg, #d4a574 0%, #c9976d 100%);
        }
        .info-card-yellow {
            background: linear-gradient(135deg, #d4a574 0%, #c9976d 100%);
        }
        .example-box {
            background: #f3f4f6;
        }
        .gradient-text-orange {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .gradient-text-green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .list-item-bg {
            background: #f9fafb;
        }
        /* Color utilities for text */
        .text-orange {
            color: #f59e0b;
        }
        .text-coffee {
            color: #8B4513;
        }
        .text-gray {
            color: #9ca3af;
        }
        /* Dark mode for text colors */
        body.dark .text-orange {
            color: #D2691E;
        }
        body.dark .text-coffee {
            color: #D2B48C;
        }
        body.dark .text-gray {
            color: #6b7280;
        }
        /* Error and success message styles */
        .error-message {
            background: #fee2e2;
            color: #991b1b;
        }
        .success-message {
            background: #d1fae5;
            color: #065f46;
        }
        body.dark .error-message {
            background: #7f1d1d;
            color: #fecaca;
        }
        body.dark .success-message {
            background: #064e3b;
            color: #a7f3d0;
        }
        /* CSS Variables for dark mode inline styles */
        :root {
            --modal-bg: white;
            --item-bg: #f3f4f6;
            --yellow-bg: #d4a574;
            --coffee-bg: #d4a574;
            --blue-light-bg: #e0e7ff;
            --purple-light-bg: rgba(147, 51, 234, 0.1);
            --text-color: inherit;
        }
        body.dark {
            --modal-bg: #1f2937;
            --item-bg: #374151;
            --yellow-bg: #6F4E37;
            --coffee-bg: #6F4E37;
            --blue-light-bg: #312e81;
            --purple-light-bg: rgba(147, 51, 234, 0.3);
            --text-color: white;
        }
        
        /* Leaflet map marker styles */
        .important-place-marker,
        .venue-marker {
            background: transparent;
            border: none;
            font-size: 24px;
            text-align: center;
            line-height: 30px;
        }

        @keyframes cookieSlideUp {
            from { transform: translateY(100%); opacity: 0; }
            to   { transform: translateY(0);    opacity: 1; }
        }
