        :root {
            --primary-color: #6366f1;
            --primary-hover: #5b21b6;
            --secondary-color: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-color: #e2e8f0;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --page-max-width: 1200px;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: #ffffff;
        }

        /* Top Right Icon - Hidden when header is present */
        .top-right-icon {
            display: none;
        }

        /* Mobile Menu Toggle - Hidden on desktop */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }

        .mobile-menu-toggle:hover {
            background-color: var(--secondary-color);
        }

        /* Mobile Menu Overlay - Hidden by default */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu {
            background: white;
            width: 90%;
            max-width: 400px;
            border-radius: 12px;
            padding: 24px;
            transform: translateY(-20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid var(--border-color);
        }

        .mobile-menu-close {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-secondary);
            padding: 4px;
        }

        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .mobile-menu-nav a {
            padding: 12px 16px;
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-primary);
            font-weight: 500;
            transition: background 0.2s;
        }

        .mobile-menu-nav a:hover,
        .mobile-menu-nav a.active {
            background: var(--secondary-color);
            color: var(--primary-color);
        }

        .mobile-menu-auth {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Main Container */
        .main-container {
            min-height: calc(100vh - 80px);
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 24px;
            margin-top: 80px;
        }

        .login-container {
            background: white;
            max-width: 500px;
            width: 100%;
            text-align: center;
        }

        .login-header {
            margin-bottom: 48px;
        }

        .login-header h1 {
            color: #6366f1;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .login-header p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.5;
        }

        .login-section {
            margin-bottom: 48px;
        }

        .login-title {
            color: var(--text-primary);
            font-size: 32px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .login-subtitle {
            color: var(--text-secondary);
            margin-bottom: 32px;
            line-height: 1.6;
            font-size: 15px;
        }

        .terms-checkbox {
            margin-bottom: 20px;
            text-align: left;
        }

        .terms-checkbox label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            font-size: 14px;
            color: var(--text-primary);
            font-weight: 400;
        }

        .terms-checkbox input[type="checkbox"] {
            margin-top: 2px;
            accent-color: var(--primary-color);
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .terms-checkbox a {
            color: #6366f1;
            text-decoration: none;
            font-weight: 500;
        }

        .terms-checkbox a:hover {
            text-decoration: underline;
        }

        .google-login-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            padding: 14px 24px;
            font-size: 15px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.2s;
            width: 100%;
            font-weight: 500;
            margin-top: 8px;
        }

        .google-login-btn:hover {
            border-color: #9ca3af;
            background: #f9fafb;
        }

        .google-login-btn:disabled,
        .google-login-btn[style*="opacity: 0.5"] {
            opacity: 0.5;
            pointer-events: none;
            cursor: not-allowed;
        }

        .google-icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-size: 14px;
            display: inline-block;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
        }

        /* Login Free Trial Section */
        .login-free-trial-wrapper {
            position: relative;
            margin-top: 48px;
        }

        .login-free-trial-header {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: #6366f1;
            color: white;
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 10;
            white-space: nowrap;
        }

        .login-free-trial-icon {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            object-fit: contain;
        }

        .login-free-trial {
            background: #f5f3ff;
            border: 1px solid #e0e7ff;
            border-radius: 12px;
            padding: 40px 32px;
            text-align: center;
            margin-top: 8px;
        }

        .login-free-trial-title {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 16px;
        }

        .login-free-trial-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .login-free-trial-btn {
            background: #6366f1 !important;
            color: white !important;
            border: none !important;
            font-weight: 600;
            padding: 12px 32px;
            border-radius: 8px;
            font-size: 15px;
            text-decoration: none;
            display: inline-block;
        }

        .login-free-trial-btn:hover {
            background: #5b21b6 !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
        }

        .footer {
            margin-top: 40px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 14px;
        }

        .footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

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

        .dev-reconnect {
            margin-top: 20px;
            padding: 16px;
            background: #fef3c7;
            border: 2px solid #fcd34d;
            border-radius: 12px;
            display: none;
        }

        .dev-reconnect p {
            margin: 0;
            font-size: 14px;
            color: #92400e;
            font-weight: 500;
        }

        .dev-reconnect a {
            color: var(--primary-color);
            text-decoration: underline;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .main-container {
                padding: 40px 16px;
            }
            
            .login-header h1 {
                font-size: 36px;
            }

            .login-title {
                font-size: 28px;
            }

            .login-free-trial {
                padding: 32px 24px;
            }

            .login-free-trial-header {
                font-size: 12px;
                padding: 6px 16px;
            }
        }
        /* Footer */
        .footer-simple {
            background: var(--text-primary);
            color: white;
            padding: 20px 24px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .disclaimer {
            text-align: center;
            margin-bottom: 16px;
        }

        .disclaimer p {
            margin: 0;
            font-size: 14px;
            color: #94a3b8;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #374151;
            padding-top: 16px;
        }

        .footer-left p,
        .footer-right p {
            margin: 0;
            font-size: 14px;
            color: #94a3b8;
        }

        .footer-right a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-right a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                display: none;
            }

            .auth-buttons {
                display: none;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }
