.hurtv-screen {
  background: linear-gradient(135deg, #0d1117, #151b23 60%, #1e2630);
  color: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hurtv-screen.is-fullscreen {
  min-height: 85vh;
}
.hurtv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.hurtv-kicker {
  opacity: .7;
  letter-spacing: .14em;
  font-size: 12px;
  margin-bottom: 6px;
}
.hurtv-header h2, .hurtv-panel h3 {
  margin: 0;
}
.hurtv-badge {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 12px;
  border-radius: 999px;
}
.hurtv-counter-wrap {
  text-align: center;
  padding: 24px 0 30px;
}
.hurtv-counter {
  font-size: clamp(56px, 10vw, 130px);
  font-weight: 800;
  line-height: .95;
}
.hurtv-subtitle {
  font-size: clamp(18px, 2vw, 28px);
  opacity: .85;
  margin-top: 10px;
}
.hurtv-delta {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s ease;
}
.hurtv-delta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hurtv-grid {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 18px;
}
.hurtv-panel {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 20px;
}
.hurtv-review-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hurtv-stars {
  font-size: 28px;
  margin-bottom: 12px;
}
.hurtv-review-text {
  font-size: clamp(24px, 2.4vw, 42px);
  line-height: 1.2;
  font-weight: 700;
}
.hurtv-review-meta {
  margin-top: 16px;
  font-size: 18px;
  opacity: .8;
}
.hurtv-store-row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hurtv-store-row:last-child {
  border-bottom: 0;
}
.hurtv-rank {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  font-weight: 700;
}
.hurtv-store-name, .hurtv-store-count { font-size: 18px; }
.hurtv-chip {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: 12px;
}
.hurtv-empty { opacity: .7; padding: 20px 0; }
.is-hidden { display: none; }
@media (max-width: 900px) {
  .hurtv-grid { grid-template-columns: 1fr; }
  .hurtv-screen { padding: 18px; border-radius: 18px; }
  .hurtv-review-card { min-height: 160px; }
}
