:root{
  --bg:#060608;
  --text:#f5f5f5;
  --muted:#b6b6b6;
  --cardBorder: rgba(255,255,255,0.18);
  --cardGlow: rgba(255,255,255,0.06);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand{
  font-size:18px;
  letter-spacing:0.5px;
  color: var(--text);
  opacity:0.9;
}

.topright-box{
  width:22px;
  height:22px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius:2px;
  opacity:0.6;
}

.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 18px 80px;
  text-align:center;
}

.kicker{
  font-size:12px;
  color: var(--muted);
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

.title{
  font-size: 52px;
  margin: 0 0 18px;
  letter-spacing: 0.2px;
}

.filters{
  display:flex;
  justify-content:center;
  margin: 14px 0 28px;
}

.dots{
  display:flex;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor:pointer;
  opacity:0.9;
}

.dot.on{
  transform: scale(1.25);
  border-color: rgba(255,255,255,0.65);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06);
}

.cards{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 240px));
  gap: 34px;
  justify-content:center;
  padding-top: 8px;
}

.card{
  position:relative;
  height: 320px;
  border-radius: 10px;
  border: 1px solid var(--cardBorder);
  background: radial-gradient(1200px 360px at 30% 0%, rgba(255,255,255,0.10), rgba(0,0,0,0.70));
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: linear-gradient(180deg, var(--accent, rgba(255,255,255,0.12)), rgba(0,0,0,0.85));
  opacity:0.55;
  pointer-events:none;
}

.card-inner{
  position:relative;
  height:100%;
  padding: 18px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
}

.card-title{
  width:100%;
  text-align:left;
  font-size:18px;
  font-weight:600;
  margin-top: 8px;
}

.thumb{
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.buy{
  margin-bottom: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.35);
  background: rgba(255,255,255,0.92);
  color: #111;
  cursor:pointer;
  font-weight:600;
}

.buy:active{ transform: translateY(1px); }
