:root{
  --bg:#070A0F;
  --panel:#0B1020;
  --panel2:#0E1630;
  --text:#EAF0FF;
  --muted:#8EA0C7;
  --stroke: rgba(255,255,255,.08);

  --accent:#35F2C8;     /* “impacto” neon */
  --accent2:#7C5CFF;    /* roxo */
  --danger:#FF4D6D;
  --warn:#FFD166;
}

*{ box-sizing:border-box; }
/*html,body{ height:100%; }*/
body{
  margin:0;
  background: radial-gradient(1200px 700px at 70% 30%, rgba(124,92,255,.15), transparent 55%),
              radial-gradient(900px 600px at 30% 20%, rgba(53,242,200,.12), transparent 60%),
              var(--bg);
  color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.frame{
  width: 1180px;
  height: 720px;
  margin: 18px auto;
  border: 1px solid var(--stroke);
  /*border-radius: 18px;*/
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  overflow:hidden;
  position:relative;
}

.topbar{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--stroke);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{ width:38px; height:38px; object-fit:contain; }
.brand__name{ font-weight:800; letter-spacing:.12em; }
.brand__sub{ color:var(--muted); font-size:12px; margin-top:2px; }

.topbar__right{ display:flex; align-items:center; gap:10px; }

.pill{
  display:flex; align-items:center; gap:10px;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(0,0,0,.25);
}
.dot{ width:10px; height:10px; border-radius:999px; display:inline-block; }
.dot--ok{ background: var(--accent); box-shadow: 0 0 18px rgba(53,242,200,.5); }
.dot--warn{ background: var(--warn); box-shadow: 0 0 18px rgba(255,209,102,.35); }
.dot--bad{ background: var(--danger); box-shadow: 0 0 18px rgba(255,77,109,.35); }
.pill__text{ font-size:13px; color: #DCE6FF; }

.windowBtns{ display:flex; gap:6px; }
.winBtn{
  width:38px; height:32px;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
}
.winBtn:hover{ border-color: rgba(255,255,255,.18); }

.content{ display:flex; height: calc(720px - 64px - 92px); }

.side{
  width: 240px;
  padding: 12px;
  border-right: 1px solid var(--stroke);
  background: rgba(0,0,0,.25);
}

.navBtn{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  cursor:pointer;
  font-weight:600;
}
.navBtn:hover{ background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.06); }
.navBtn--active{
  background: rgba(53,242,200,.08);
  border-color: rgba(53,242,200,.22);
  box-shadow: 0 0 26px rgba(53,242,200,.09);
}
.navIcon{ width:22px; text-align:center; }

.side__spacer{ height: 12px; }
.miniStats{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,.22);
}
.miniStats__row{
  display:flex; justify-content:space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.miniStats__row:last-child{ border-bottom:0; }

.muted{ color:var(--muted); }
.small{ font-size:12px; }

.main{ flex:1; padding: 12px; }

.hero{
  position:relative;
  height: 320px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,.25);
}
.hero__bg{
  position:absolute; inset:0;
  background: radial-gradient(800px 420px at 70% 30%, rgba(53,242,200,.18), transparent 60%),
              radial-gradient(700px 380px at 30% 30%, rgba(124,92,255,.18), transparent 55%);
  z-index:0;
}
.hero__img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  opacity:.86;
  transform: scale(1.03);
}
.hero__overlay{
  position:absolute; inset:0;
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75));
}

.hero__tag{
  display:inline-flex;
  align-self:flex-start;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(53,242,200,.25);
  background: rgba(0,0,0,.35);
  font-weight:800;
  letter-spacing:.1em;
  font-size:11px;
  margin-bottom: 10px;
}
.hero__title{
  margin:0;
  font-size: 32px;
  letter-spacing: .02em;
}
.hero__desc{
  margin: 8px 0 0 0;
  color: #D7E3FF;
  max-width: 560px;
  line-height: 1.35;
}

.hero__ctaRow{
  display:flex;
  gap:10px;
  margin-top: 14px;
}

.cta{
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight:800;
  letter-spacing:.08em;
  cursor:pointer;
  padding: 0 16px;
}
.cta--primary{
  border-color: rgba(53,242,200,.35);
  background: linear-gradient(90deg, rgba(53,242,200,.28), rgba(124,92,255,.18));
  box-shadow: 0 0 28px rgba(53,242,200,.14);
}
.cta--ghost:hover{ border-color: rgba(255,255,255,.18); }

.grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 12px;
}

.card{
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  overflow:hidden;
}
.card__title{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-weight:900;
  letter-spacing:.06em;
  font-size:12px;
  text-transform:uppercase;
}
.card__body{ padding: 12px; overflow-y: auto;}

.list{ display:flex; flex-direction:column; gap:10px; max-height: 200px; overflow:auto; padding-right:6px; }
.item{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  cursor:pointer;
}
.item:hover{
  border-color: rgba(53,242,200,.25);
  box-shadow: 0 0 22px rgba(53,242,200,.08);
}
.item__title{ font-weight:900; }
.item__meta{ margin-top: 6px; color:var(--muted); font-size:12px; }
.item__summary{ margin-top: 8px; color:#D7E3FF; font-size:13px; line-height:1.35; }

.skeleton{
  height: 72px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,.05), rgba(255,255,255,.02));
  animation: shimmer 1.1s infinite linear;
  background-size: 200% 100%;
}
@keyframes shimmer{
  0%{ background-position: 0% 0; }
  100%{ background-position: 200% 0; }
}

.highlight{
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  margin-bottom: 10px;
}
.highlight__k{ color: var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.highlight__v{ margin-top:6px; font-weight:900; }

.divider{ height:1px; background: rgba(255,255,255,.08); margin: 12px 0; }

.bottombar{
  height: 92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px;
  border-top: 1px solid var(--stroke);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

.progressWrap{ display: none; flex:1; margin-right: 12px; }
.progressText{ display:flex; gap:10px; align-items:baseline; margin-bottom: 8px; }
.progress{
  height: 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  overflow:hidden;
}
.progress__bar{
  height:100%;
  background: linear-gradient(90deg, rgba(53,242,200,.85), rgba(124,92,255,.65));
  box-shadow: 0 0 24px rgba(53,242,200,.22);
}

.playBig{
  display: none;
  width: 220px;
  height: 66px;
  border-radius: 18px;
  border: 1px solid rgba(53,242,200,.30);
  background: linear-gradient(90deg, rgba(53,242,200,.26), rgba(124,92,255,.20));
  color: var(--text);
  cursor:pointer;
  box-shadow: 0 0 34px rgba(53,242,200,.18);
  text-align:left;
  padding: 10px 14px;
}
.playBig:hover{ border-color: rgba(53,242,200,.45); }
.playBig__label{ font-weight:1000; letter-spacing:.14em; font-size:16px; display:block; }
.playBig__sub{ color:#D7E3FF; font-size:12px; display:block; margin-top:4px; }

.modal{ position:absolute; inset:0; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
}
.modal__panel{
  position:absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  width: 860px;
  height: 560px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,14,26,.92);
  overflow:hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
}
.modal__head{
  height: 56px;
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.modal__title{ font-weight:1000; letter-spacing:.06em; }
.modal__close{
  width: 42px; height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
}
.modal__body{
  height: calc(560px - 56px);
  overflow:auto;
  padding: 14px;
  color:#D7E3FF;
  line-height:1.45;
}
.modal__body h1,.modal__body h2,.modal__body h3{ color:var(--text); }
.modal__body a{ color: var(--accent); }

