
:root {
  --primary: #8B5CF6;
  --secondary: #EC4899;
  --dark: #0B0B0F;
  --light: #FAFAFA;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--light);
  background: linear-gradient(180deg, #0b0b0f 0%, #14121a 100%);
}
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 16px; }

.header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11,11,15,0.85); backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner { display: flex; align-items: center; gap: 16px; padding: 12px 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .3px; }
.logo-badge {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid; place-items: center; font-weight: 900;
}
.nav { margin-left: auto; display: flex; gap: 14px; flex-wrap: wrap; }
.nav a { opacity: .92; padding: 8px 10px; border-radius: 8px; }
.nav a:hover { background: rgba(255,255,255,0.06); }

.hero {
  background:
    radial-gradient(800px 400px at 20% -10%, rgba(139,92,246,.35), transparent 60%),
    radial-gradient(800px 400px at 80% -10%, rgba(236,72,153,.25), transparent 60%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; padding: 40px 16px; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.kicker { color: #cfc5ff; font-weight: 700; letter-spacing: .12em; font-size: 13px; text-transform: uppercase; }
.h1 { font-size: clamp(28px, 5vw, 46px); line-height: 1.1; margin: 10px 0 12px; font-weight: 900; }
.subtitle { color: #d9d9e3; opacity: .9; max-width: 60ch; }
.ctas { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.btn {
  padding: 12px 16px; border-radius: 12px; font-weight: 700; border: 0; cursor: pointer;
  background: var(--primary); color: white; transition: transform .05s ease, box-shadow .2s ease;
  box-shadow: 0 10px 20px rgba(139,92,246,.2);
}
.btn:hover { transform: translateY(-1px); }
.btn.alt { background: var(--secondary); box-shadow: 0 10px 20px rgba(236,72,153,.2); }
.badges { margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap; color: #cfd2da; font-size: 14px; }
.badge { padding: 6px 10px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 999px; }

.section { padding: 28px 16px; }
.section h2 { font-size: 22px; margin: 0 0 16px; }
.grid-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .grid-tiles { grid-template-columns: repeat(2, 1fr); } }
.tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  transition: transform .1s ease, border-color .2s ease;
}
.tile:hover { transform: translateY(-3px); border-color: rgba(236,72,153,.4); }
.tile img { width: 100%; height: 130px; object-fit: cover; display: block; background: #0f0f13; }
.tile .t { padding: 10px; font-weight: 700; }
.small { font-size: 13px; color: #bfc4d1; }

.cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 1100px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
.card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; overflow: hidden;
}
.card img { width: 100%; height: 180px; object-fit: cover; background: #0f0f13; }
.card .meta { padding: 10px; display:flex; justify-content: space-between; gap: 8px; }
.price { font-weight: 900; }
.buy { font-weight: 800; color: white; background: var(--secondary); padding: 8px 10px; border-radius: 10px; }

.panel {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 16px;
}
.panel table { width: 100%; border-collapse: collapse; }
.panel th, .panel td { text-align: left; padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }

.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 16px; color: #c1c6d3; font-size: 14px; }
.footer a { text-decoration: underline; }
