:root{
  --bg1:#120031;
  --bg2:#2a005b;
  --primary-color:#ff3aa7;
  --secondary-color:#7a3cff;
  --pink:var(--primary-color);
  --violet:var(--secondary-color);
  --card:#2a1a6a;
  --card2:#3a2aa0;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --shadow:0 18px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 80% 10%, color-mix(in srgb, var(--primary-color) 35%, transparent), transparent 60%),
    radial-gradient(900px 500px at 20% 20%, color-mix(in srgb, var(--secondary-color) 35%, transparent), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
  min-height:100vh;
}

a{color:inherit; text-decoration:none}
.container{max-width:1180px; margin:0 auto; padding:0 18px}

.topbar{
  background: rgba(0,0,0,.12);
  padding:10px 0;
  font-size:13px;
  color:var(--muted);
}
.topbar .row{display:flex; align-items:center; justify-content:space-between; gap:12px}

.nav{
  position:sticky; top:0; z-index:50;
  background: rgba(18,0,49,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav .row{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:16px 0;
}
.brand{display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.4px}
.brand img{width:44px; height:44px; object-fit:contain}
.menu{display:flex; gap:20px; font-weight:600; font-size:14px; color:rgba(255,255,255,.85)}
.menu a{opacity:.9}
.menu a:hover{opacity:1}
.nav-cta{display:flex; align-items:center; gap:10px}

.badge-pill{
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  color:rgba(255,255,255,.85);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border:none; cursor:pointer;
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  box-shadow: var(--shadow);
}
.btn-primary{
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  color:#160027;
}
.btn-soft{
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  box-shadow:none;
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}

.upload-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.25);
  background: rgba(255,255,255,.05);
  cursor:pointer;
}
.upload-box input{display:none}
.upload-title{font-weight:800}
.upload-sub{color:rgba(255,255,255,.7); font-size:12px}

.input, select, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color:#fff;
  outline:none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.input::placeholder, textarea::placeholder{
  color:rgba(255,255,255,.55);
}
.input:focus, select:focus, textarea:focus{
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary-color) 35%, transparent);
  background: rgba(0,0,0,.28);
}
select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.7) 50%),
    linear-gradient(135deg, rgba(255,255,255,.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 1px),
    calc(100% - 12px) calc(50% + 1px);
  background-size:6px 6px;
  background-repeat:no-repeat;
}
textarea{min-height:110px; resize:vertical}

.img-preview{
  display:none;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  border:1px dashed rgba(255,255,255,.18);
}
.img-preview.show{display:flex}
.img-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero{padding:54px 0 26px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:30px;
  align-items:center;
}
.hero h1{font-size:58px; line-height:1.02; margin:10px 0 12px}
.hero p{color:var(--muted); max-width:520px}
.hero-img{
  width:100%;
  border-radius:24px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  min-height:320px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-img img{width:100%; height:100%; object-fit:cover}

.stats{
  margin-top:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  padding:18px;
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:14px;
  box-shadow: var(--shadow);
}
.stat{
  display:flex; gap:12px; align-items:center;
  padding:10px 12px;
}
.stat strong{font-size:34px}
.stat span{display:block; color:rgba(255,255,255,.65); font-size:13px}

.section{padding:44px 0}
.section-title{
  text-align:center;
  margin-bottom:20px;
}
.section-title .small{
  color:#ffc86a; font-weight:800; letter-spacing:.6px; font-size:13px;
}
.section-title h2{margin:10px 0 0; font-size:44px}
.section-title p{margin:10px auto 0; max-width:720px; color:rgba(255,255,255,.7)}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
}

.card{
  background: linear-gradient(180deg, rgba(122,60,255,.25), rgba(255,58,167,.08));
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card .thumb{
  background: rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.10);
  height:170px;
  display:flex; align-items:center; justify-content:center;
}
.card .thumb img{max-width:100%; max-height:100%; object-fit:contain}
.card .body{padding:14px 14px 16px}
.card h3{margin:4px 0 6px; font-size:18px}
.card .meta{display:flex; justify-content:space-between; color:rgba(255,255,255,.7); font-size:13px}
.pill{
  display:inline-block;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,58,167,.18);
  border:1px solid rgba(255,58,167,.35);
  font-weight:800;
  font-size:12px;
}

.footer{
  margin-top:40px;
  padding:28px 0 40px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.75);
}
.footer .row{
  display:flex; flex-wrap:wrap; gap:16px;
  align-items:center; justify-content:space-between;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero h1{font-size:44px}
  .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .menu{display:none}
}
@media (max-width: 560px){
  .grid{grid-template-columns: 1fr}
  .stats{grid-template-columns:1fr}
}
