/* Modern, clean CSS for the Looveli Variant project */
:root{
  --bg:#f7f9fb;
  --card:#ffffff;
  --accent:#1fb6ff;
  --muted:#6b7280;
  --text:#0f172a;
  --radius:14px;
}
*{box-sizing:border-box}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; margin:0; color:var(--text); background:var(--bg); -webkit-font-smoothing:antialiased}
.container{max-width:1100px;margin:0 auto;padding:24px}
.site-header{background:linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.4));backdrop-filter:blur(6px);position:sticky;top:0;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 24px}
.logo{font-weight:700;text-decoration:none;color:var(--text)}
.main-nav a{margin-left:18px;text-decoration:none;color:var(--muted)}
.hero{display:flex;align-items:center;gap:28px;padding:48px 24px;background:linear-gradient(180deg, rgba(31,182,255,0.06), transparent)}
.hero-img{max-width:40%;border-radius:12px;box-shadow:0 10px 30px rgba(15,23,42,0.06);object-fit:cover}
.hero-copy{max-width:720px}
.hero h1{font-size:34px;margin:0 0 10px}
.hero p{color:var(--muted);margin:0 0 18px}
.btn{display:inline-block;padding:10px 16px;border-radius:10px;text-decoration:none;border:1px solid transparent}
.btn.primary{background:var(--accent);color:white;font-weight:600}
.btn.ghost{background:transparent;color:var(--accent);border:1px solid rgba(31,182,255,0.14)}
.btn.sm{padding:8px 12px;font-size:14px;border-radius:8px}
.cta .btn{margin-right:10px}

/* Features */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:28px}
.card{background:var(--card);padding:18px;border-radius:12px;box-shadow:0 6px 20px rgba(12,18,34,0.04)}
.card h3{margin:0 0 8px}
.card p{margin:0;color:var(--muted)}

/* Creators */
.creators h2{margin-top:36px}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:16px}
.creator-card{background:var(--card);border-radius:12px;padding:12px;text-align:center;box-shadow:0 6px 20px rgba(12,18,34,0.04)}
.creator-card .thumb{height:160px;border-radius:10px;overflow:hidden;background:#f1f5f9;display:flex;align-items:center;justify-content:center}
.creator-card img{width:100%;height:100%;object-fit:cover}
.creator-card h4{margin:12px 0 6px}
.creator-card .meta{color:var(--muted);font-size:13px;margin:0 0 8px}

/* How section */
.how ol{padding-left:18px}
.how li{margin-bottom:8px}

/* Footer */
.site-footer{background:#020617;color:#cbd5e1;margin-top:40px;padding:28px 0}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.footer-nav a{color:#9ca3af;margin-left:12px;text-decoration:none}

/* Responsive */
@media (max-width:900px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .features{grid-template-columns:repeat(1,1fr)}
  .hero{flex-direction:column}
  .hero-img{max-width:100%}
}
@media (max-width:520px){
  .grid{grid-template-columns:1fr}
  .header-inner{flex-direction:column;gap:8px}
}
