:root {
  --bg: #0b1020;
  --panel: #121a33;
  --panel2: #0f1730;
  --text: #e9ecff;
  --muted: #a9b1d6;
  --brand: #7c5cff;
  --brand2: #25c2a0;
  --border: rgba(255, 255, 255, .08);
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(124, 92, 255, .25), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(37, 194, 160, .18), transparent 55%),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 26, 51, .65);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700
}

.badge {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted)
}

.hero {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.heroCard {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18, 26, 51, .85), rgba(15, 23, 48, .85));
  box-shadow: var(--shadow);
}

.hero h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.1
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5
}

.btnRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

button,
.btn {
  border: 0;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 12px;
}

.btnPrimary {
  background: var(--brand);
  color: white
}

.btnSecondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border)
}

.btnGreen {
  background: var(--brand2);
  color: #071316
}

button:disabled {
  opacity: .55;
  cursor: not-allowed
}

.kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kpi .box {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(18, 26, 51, .55);
}

.kpi .num {
  font-size: 22px;
  font-weight: 800
}

.kpi .lbl {
  color: var(--muted);
  font-size: 12px
}

.section {
  margin-top: 22px
}

.sectionTitle {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 10px
}

.sectionTitle h2 {
  margin: 0;
  font-size: 18px
}

.sectionTitle span {
  color: var(--muted);
  font-size: 13px
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 26, 51, .6);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.thumb {
  height: 150px;
  background: #0a0f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9
}

.playPill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: 12px;
}

.cardBody {
  padding: 14px
}

.cardBody h3 {
  margin: 0 0 6px;
  font-size: 16px
}

.cardBody p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4
}

.cardActions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.footer {
  margin: 28px 0 8px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width:900px) {
  .hero {
    grid-template-columns: 1fr
  }

  .grid {
    grid-template-columns: 1fr
  }
}