 :root {
            --primary: #e5322d;
            --primary-dark: #c92a25;
            --bg-body: #f4f6f8;
            --bg-card: #ffffff;
            --text-main: #2d3748;
            --text-muted: #718096;
            --border: #e2e8f0;
            --shadow: 0 4px 6px rgba(0,0,0,0.05);
            --pill-bg: #edf2f7;
            --pill-active: #2d3748;
            --pill-text-active: #fff;
        }

        [data-theme="dark"] {
            --bg-body: #1a202c;
            --bg-card: #2d3748;
            --text-main: #f7fafc;
            --text-muted: #a0aec0;
            --border: #4a5568;
            --pill-bg: #4a5568;
            --pill-active: #e5322d;
            --shadow: 0 4px 6px rgba(0,0,0,0.5);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

        body {
            background: var(--bg-body);
            color: var(--text-main);
            transition: 0.3s;
        }

        /* HEADER */
        header {
            background: var(--bg-card);
            padding: 15px 20px;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .nav-flex {
            max-width: 1400px;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        
    /* ===============================
        LOGO – ATTRACTIVE DESIGN
    =============================== */
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.6rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-decoration: none;
            color: var(--text-main);
            position: relative;
            transition: all 0.3s ease;
        }
        
        /* Heart Icon */
        .logo svg {
            width: 30px;
            height: 30px;
            fill: var(--primary);
            filter: drop-shadow(0 4px 6px rgba(229, 50, 45, 0.35));
            animation: heartBeat 1.6s infinite ease-in-out;
            transition: transform 0.3s ease;
        }
        
        /* Hover effect */
        .logo:hover svg {
            transform: scale(1.2);
        }
        
        .logo:hover {
            color: var(--primary);
        }
        
        /* Subtle underline glow */
        .logo::after {
            content: "";
            position: absolute;
            left: 40px;
            bottom: -3px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), transparent);
            transition: width 0.3s ease;
        }
        
        .logo:hover::after {
            width: 80%;
        }
        
        /* Dark mode adjustment */
        [data-theme="dark"] .logo {
            color: #f7fafc;
        }
        
        /* Heart beat animation */
        @keyframes heartBeat {
            0% { transform: scale(1); }
            14% { transform: scale(1.15); }
            28% { transform: scale(1); }
            42% { transform: scale(1.15); }
            70% { transform: scale(1); }
        }

        

        /* HERO */
        .hero {
            text-align: center;
            padding: 40px 20px;
        }

        .hero h1 {
            margin-bottom: 10px;
        }

        .hero p {
            color: var(--text-muted);
        }

        /* FILTERS */
        .filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 30px auto;
            max-width: 1200px;
        }

        .pill {
            padding: 8px 16px;
            border-radius: 20px;
            background: var(--pill-bg);
            cursor: pointer;
            font-size: 0.9rem;
            transition: 0.2s;
        }

        .pill.active {
            background: var(--pill-active);
            color: var(--pill-text-active);
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* GRID */
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

        .card {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border);
            text-align: center;
            cursor: pointer;
            transition: 0.2s;
            position: relative;
            text-decoration: none;
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }

        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .card-title {
            font-weight: 700;
            font-size: 1rem;
        }

        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary);
            color: #fff;
            font-size: 0.6rem;
            padding: 3px 6px;
            border-radius: 4px;
        }

        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        
                
    /* ===============================
        SEARCH BAR – ATTRACTIVE DESIGN
    =============================== */
        
        .search-bar {
            width: 320px;
            padding: 10px 18px 10px 40px;
            border-radius: 999px;
            border: 1.5px solid var(--border);
            background-color: var(--bg-body);
            color: var(--text-main);
            font-size: 0.95rem;
            transition: all 0.3s ease;
            outline: none;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23718096'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-4.35-4.35m0 0A7.5 7.5 0 104.5 4.5a7.5 7.5 0 0012.15 12.15z' /%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: 14px center;
            background-size: 18px;
        }
        
        /* Focus Effect */
        .search-bar:focus {
            background-color: var(--bg-card);
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(229, 50, 45, 0.15);
            transform: scale(1.02);
        }
        
        /* Placeholder styling */
        .search-bar::placeholder {
            color: var(--text-muted);
            opacity: 0.9;
        }
        
        /* Dark mode tweak */
        [data-theme="dark"] .search-bar {
            background-color: #1f2937;
        }
        
        /* Mobile behavior */
        @media (max-width: 768px) {
            .search-bar {
                width: 100%;
                max-width: 240px;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        .lp-footer {
  background:#1f2025;
  color:#ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.lp-footer-container {
  max-width:1200px;
  margin:auto;
  padding:60px 20px 30px;
}

.lp-footer-grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
  gap:40px;
}

.lp-footer h4 {
  font-size:14px;
  font-weight:700;
  margin-bottom:12px;
}

.lp-footer a {
  display:block;
  color:#cfd2da;
  font-size:14px;
  margin-bottom:8px;
  text-decoration:none;
}

.lp-footer a:hover {
  color:#ffffff;
}

.lp-footer-apps .store-btn {
  display:block;
  border:1px solid #555;
  border-radius:8px;
  padding:10px 14px;
  margin-bottom:10px;
  font-size:14px;
  text-align:center;
  cursor:pointer;
}

.lp-footer-bottom {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  margin-top:40px;
  padding-top:20px;
  border-top:1px solid #3a3b40;
  gap:20px;
}

.lang {
  border:1px solid #555;
  padding:8px 14px;
  border-radius:8px;
  font-size:14px;
}

.socials span {
  margin-right:14px;
  cursor:pointer;
  font-size:16px;
}

.copyright {
  font-size:14px;
  color:#cfd2da;
}
