:root {
            --primary: #4285f4;
            --primary-dark: #3367d6;
            --secondary: #0f9d58;
            --warning: #f4b400;
            --danger: #db4437;
            --light: #f8f9fa;
            --dark: #202124;
            --gray: #5f6368;
            --light-gray: #dadce0;
            --border-radius: 12px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
            color: var(--dark);
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
        }
        
        /* 🔴 UPDATED: Disclaimer Banner */
        .disclaimer-banner {
            background: linear-gradient(135deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 15px 25px;
            border-radius: var(--border-radius);
            margin-bottom: 25px;
            box-shadow: var(--shadow);
            border-left: 6px solid #db4437;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { opacity: 0.9; }
            50% { opacity: 1; }
            100% { opacity: 0.9; }
        }
        
        .disclaimer-banner h3 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        
        .disclaimer-banner p {
            font-size: 0.95rem;
            opacity: 0.95;
            margin-bottom: 5px;
        }
        
        .premium-offer {
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 15px;
            border-radius: 8px;
            margin-top: 10px;
            font-weight: 600;
            display: inline-block;
        }
        
        /* Header */
        .demo-header {
            background: white;
            color: var(--dark);
            padding: 25px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            box-shadow: var(--shadow);
            border: 1px solid var(--light-gray);
            position: relative;
        }
        
        .demo-tag {
            position: absolute;
            top: -12px;
            right: 30px;
            background: #ff6b6b;
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
            box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
        }
        
        /* 🔴 UPDATED: Sample URL Warning */
        .sample-warning {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            color: #856404;
            padding: 12px 18px;
            border-radius: 8px;
            margin-top: 15px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* 🔴 UPDATED: Result Header */
        .results-header {
            background: #e8f4fc;
            border: 2px dashed #4285f4;
            padding: 20px;
            border-radius: var(--border-radius);
            margin: 20px 0;
            text-align: center;
        }
        
        .demo-badge {
            background: #4285f4;
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 10px;
        }
        
        /* Main Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        @media (max-width: 1024px) {
            .main-layout {
                grid-template-columns: 1fr;
            }
        }
        
        /* Cards */
        .google-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            border: 1px solid var(--light-gray);
            height: fit-content;
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        /* 🔴 UPDATED: Tooltip for Demo Info */
        .demo-info {
            background: #f1f8ff;
            border: 1px solid #c8e1ff;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            font-size: 0.9rem;
            color: #0366d6;
        }
        
        .demo-info ul {
            padding-left: 20px;
            margin-top: 10px;
        }
        
        .demo-info li {
            margin-bottom: 8px;
        }
        
        /* Buttons */
        .google-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: var(--border-radius);
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .google-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        /* 🔴 UPDATED: Result Items */
        .result-disclaimer {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
        }
        
        /* Footer Note */
        .footer-note {
            text-align: center;
            padding: 25px;
            color: var(--gray);
            font-size: 0.9rem;
            border-top: 1px solid var(--light-gray);
            margin-top: 40px;
        }
        
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .compare-table th {
            background: #f8f9fa;
            padding: 15px;
            text-align: left;
            font-weight: 600;
            color: var(--dark);
        }
        
        .compare-table td {
            padding: 15px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .compare-table tr:last-child td {
            border-bottom: none;
        }
        
        .good {
            color: var(--secondary);
            font-weight: 600;
        }
        
        .bad {
            color: var(--danger);
            font-weight: 600;
        }