:root {
  --bg: #07060b;
  --card: #14121c;
  --text: #f4f1ff;
  --muted: #b8b0c8;
  --purple: #8b5cf6;
  --pink: #e879f9;
  --grad: linear-gradient(90deg, #7c3aed, #db2777 55%, #f97316);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--text); font-family: "Segoe UI", "PingFang SC", "Noto Sans", sans-serif; }
body { min-height: 100vh; }
.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 18px; position: sticky; top: 0; z-index: 10;
  background: rgba(7,6,11,.75); backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--grad); position: relative;
}
.logo:after {
  content: ""; position: absolute; inset: 10px 9px 10px 12px;
  border-style: solid; border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
}
.lang-wrap { position: relative; }
.lang-pills {
  display: flex; align-items: center; gap: 6px;
  background: #1c1826; border-radius: 999px; padding: 4px 6px;
}
.lang-pills a, .lang-pills .more {
  color: var(--muted); text-decoration: none; font-size: 12px;
  padding: 6px 10px; border-radius: 999px; border: 0; background: none; cursor: pointer;
}
.lang-pills a.on { background: var(--purple); color: #fff; font-weight: 700; }
.lang-menu {
  position: absolute; right: 0; top: 44px; margin: 0; padding: 8px 0;
  list-style: none; background: #2b2b2b; border-radius: 12px; min-width: 180px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45); max-height: 70vh; overflow: auto; z-index: 20;
}
[dir="rtl"] .lang-menu { right: auto; left: 0; }
.lang-menu a { display: block; padding: 10px 16px; color: #cfcfcf; text-decoration: none; }
.lang-menu a.active, .lang-menu a:hover { color: #fff; background: #3a3a3a; }
.hero { text-align: center; padding: 28px 20px 40px; position: relative; }
.glow {
  position: absolute; inset: -40px 10% auto; height: 220px;
  background: radial-gradient(ellipse, rgba(124,58,237,.35), transparent 70%);
  pointer-events: none;
}
.badge {
  display: inline-block; background: #4c1d95; color: #f3e8ff;
  border-radius: 999px; padding: 7px 14px; font-size: 12px; font-weight: 700;
}
h1 { font-size: clamp(26px, 7vw, 42px); line-height: 1.25; margin: 18px 0 12px; }
h1 span { color: #f0abfc; }
.desc { color: var(--muted); max-width: 520px; margin: 0 auto 28px; line-height: 1.6; }
.cta {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: #fff;
  background: var(--grad); border-radius: 18px; padding: 14px 22px 14px 14px;
  box-shadow: 0 12px 40px rgba(219,39,119,.35); min-width: min(92vw, 360px); text-align: start;
}
.cta.disabled { opacity: .55; pointer-events: none; }
.cta-ico {
  width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.18);
  display: grid; place-items: center; font-size: 22px;
}
.cta strong { display: block; font-size: 18px; }
.cta small { opacity: .9; }
.social { color: #d6d0e6; font-size: 13px; margin-top: 18px; }
.shows, .feats { padding: 10px 18px 36px; max-width: 920px; margin: 0 auto; }
h2 { font-size: 20px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card {
  border-radius: 16px; min-height: 140px; padding: 14px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; position: relative; overflow: hidden;
}
.card span {
  align-self: flex-start; background: rgba(0,0,0,.35); font-size: 11px;
  padding: 4px 8px; border-radius: 999px; margin-bottom: 8px;
}
.card b { font-size: 16px; }
.c1 { background: linear-gradient(160deg, #7c3aed, #1e1b4b); }
.c2 { background: linear-gradient(160deg, #db2777, #4c0519); }
.c3 { background: linear-gradient(160deg, #0ea5e9, #0f172a); }
.c4 { background: linear-gradient(160deg, #f59e0b, #7c2d12); }
.feat-grid { display: grid; gap: 12px; }
.feat-grid div { background: var(--card); border-radius: 16px; padding: 16px; }
.feat-grid h3 { margin: 0 0 6px; }
.feat-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
footer { text-align: center; color: #6b6478; padding: 24px; font-size: 12px; }
@media (min-width: 800px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
}
