:root {
  --red: #EE1C25;
  --black: #000000;
  --gray: #8B8092;
  --light: #F6F6F7;
  --white: #FFFFFF;
  --border: #E7E7EA;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: #151515;
}

a { color: inherit; text-decoration: none; }

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #000 0%, #222 50%, #EE1C25 100%);
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.brand {
  font-weight: 900;
  font-size: 32px;
  letter-spacing: -1px;
}

.brand-dot { color: var(--red); }

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: var(--black);
  color: var(--white);
  padding: 24px 18px;
  position: fixed;
  top: 0;
  bottom: 0;
  overflow: auto;
}

.sidebar .brand {
  margin-bottom: 28px;
}

.nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 6px;
  color: #fff;
  opacity: .9;
}

.nav a:hover, .nav a.active {
  background: var(--red);
  opacity: 1;
}

.main {
  margin-left: 270px;
  padding: 28px;
  width: calc(100% - 270px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0 0;
}

.muted { color: #666; }

.btn {
  display: inline-block;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
  background: #111;
  color: white;
  margin: 4px 4px 4px 0;
}

.btn-red { background: var(--red); color: white; }
.btn-light { background: #efeff1; color: #111; }
.btn-outline { background: white; color: #111; border: 1px solid var(--border); }

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 15px;
  margin: 6px 0 14px;
  background: white;
}

textarea { min-height: 120px; }

label {
  font-size: 14px;
  font-weight: 700;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 12px;
  vertical-align: top;
}

th {
  color: #555;
  font-size: 13px;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  background: #eee;
}

.badge-red { background: #ffe7e8; color: #b00010; }
.badge-green { background: #e8f7ed; color: #126b2f; }
.badge-gray { background: #eeeeee; color: #444; }

.alert {
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-weight: 700;
}

.alert-success { background: #e8f7ed; color: #126b2f; }
.alert-error { background: #ffe7e8; color: #b00010; }
.alert-info { background: #eef4ff; color: #1f4b99; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 900px) {
  .layout { display: block; }
  .sidebar { position: relative; width: 100%; }
  .main { margin-left: 0; width: 100%; padding: 18px; }
  .grid, .grid-2 { grid-template-columns: 1fr; }
}


/* =========================================================
   PATCH v1.6 — VISUAL DA ÁREA DO CLIENTE
   ========================================================= */

.login-page{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(135deg, #050505 0%, #181818 44%, #7d1016 100%);
}

.login-card{
  max-width: 460px;
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.login-card .brand{
  margin-bottom: 8px;
}

.login-kicker{
  display:inline-block;
  margin: 0 0 10px;
  color: #666;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.login-card h2{
  margin: 0 0 10px;
  font-size: 18px;
}

.login-card .muted{
  margin: 0 0 18px;
  line-height: 1.45;
}

.login-divider{
  margin: 18px 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.login-helper{
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.login-helper .btn{
  width: 100%;
  text-align: center;
}

.back-site{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 700;
}

.back-site:hover{
  border-color: #d4d4d8;
}

.note-box{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid var(--border);
  color: #5a5a61;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 520px){
  .login-card{
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 18px;
  }

  .brand{
    font-size: 28px;
  }
}


/* =========================================================
   REANCORAGEM v2.0 — Plataforma, Espelho e Boost UNI
   ========================================================= */

.sidebar-caption{font-size:11px;text-transform:uppercase;letter-spacing:.14em;color:#aaa;margin:-20px 0 24px 2px}.eyebrow{font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:var(--red);margin-bottom:6px}.account-pill{display:grid;gap:3px;justify-items:end;background:#fff;border:1px solid var(--border);border-radius:999px;padding:10px 16px}.account-pill span{font-size:12px;color:#666}.hero-panel,.boost-hero{display:flex;justify-content:space-between;gap:24px;align-items:center;background:radial-gradient(circle at 80% 20%,rgba(238,28,37,.28),transparent 28%),linear-gradient(135deg,#050505,#171717 58%,#30070a);color:#fff;border-radius:24px;padding:30px;margin-bottom:18px;overflow:hidden}.hero-panel h2,.boost-hero h2{font-size:34px;line-height:1.05;margin:4px 0 10px;letter-spacing:-1px}.hero-panel p,.boost-hero p{color:#d7d7d7;max-width:720px;line-height:1.55}.hero-panel.compact{padding:26px}.live-mini{min-width:190px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.13);border-radius:20px;padding:18px;display:grid;gap:6px}.live-mini small{color:#ccc}.live-dot{display:inline-block;width:10px;height:10px;border-radius:99px;background:var(--red);box-shadow:0 0 0 6px rgba(238,28,37,.15),0 0 22px rgba(238,28,37,.8)}.grid-dashboard .card{min-height:126px}.stat-card{position:relative;overflow:hidden}.stat-card:after{content:"";position:absolute;right:-24px;top:-24px;width:80px;height:80px;border-radius:99px;background:rgba(238,28,37,.08)}.mini-label{font-size:12px;color:#777;font-weight:700}.dashboard-split{align-items:stretch}.section-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px;margin-bottom:14px}.section-head h2{margin-top:0}.campaign-stack{display:grid;gap:10px}.campaign-row{display:flex;justify-content:space-between;gap:12px;align-items:center;border:1px solid var(--border);border-radius:16px;padding:14px}.campaign-row div{display:grid;gap:4px}.campaign-row span{color:#666;font-size:13px}.empty-state{border:1px dashed #d5d5da;border-radius:16px;padding:18px;color:#666;background:#fafafa}.boost-card{background:linear-gradient(145deg,#fff,#fff4f4);position:relative;overflow:hidden}.boost-orb{width:106px;height:106px;border-radius:999px;background:radial-gradient(circle at 35% 25%,#fff,#EE1C25 42%,#111 100%);color:#fff;display:grid;place-items:center;font-weight:900;letter-spacing:.08em;box-shadow:0 20px 60px rgba(238,28,37,.25);margin:14px 0}.boost-orb.big{width:170px;height:170px;font-size:24px;flex:0 0 auto}.timeline-list{display:grid;gap:12px}.timeline-item{display:grid;grid-template-columns:14px 1fr auto;gap:12px;align-items:start}.timeline-item>span{width:10px;height:10px;border-radius:99px;background:var(--red);margin-top:5px}.timeline-item div{display:grid;gap:3px}.timeline-item small{color:#666}.timeline-item em{font-size:12px;color:#666;font-style:normal}.screen-grid,.network-grid,.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.screen-card{padding:14px}.screen-stage{aspect-ratio:9/16;background:#060606;border-radius:18px;display:grid;place-items:center;overflow:hidden;border:1px solid #161616}.screen-stage img{width:100%;height:100%;object-fit:cover;display:block}.screen-placeholder{height:100%;width:100%;display:grid;place-items:center;text-align:center;color:#fff;background:radial-gradient(circle at center,rgba(238,28,37,.2),transparent 32%),linear-gradient(145deg,#050505,#181818)}.screen-placeholder strong{font-size:22px}.screen-placeholder small{color:#bbb}.screen-meta,.asset-top{display:flex;justify-content:space-between;gap:12px;align-items:flex-start;margin-top:14px}.screen-meta div{display:grid;gap:3px}.screen-meta span,.asset-top p{font-size:13px;color:#666}.screen-contract{box-shadow:0 0 0 2px rgba(238,28,37,.16)}.asset-card h2{margin:0}.occupancy{display:grid;gap:8px;margin:18px 0}.occupancy div:first-child{display:flex;justify-content:space-between;font-size:13px;color:#666}.bar{height:10px;background:#eee;border-radius:99px;overflow:hidden}.bar i{display:block;height:100%;background:var(--red);border-radius:99px}.boost-hero{min-height:230px}.result-card{border-radius:24px;padding:28px;margin-bottom:18px;color:#fff;background:radial-gradient(circle at 80% 20%,rgba(255,255,255,.16),transparent 25%),linear-gradient(135deg,#EE1C25,#111);box-shadow:0 24px 80px rgba(238,28,37,.22)}.result-card h2{font-size:34px;margin:5px 0}.result-card strong{font-size:42px;display:block}.boost-option{position:relative;overflow:hidden}.boost-option.featured{box-shadow:0 0 0 2px rgba(238,28,37,.22)}.price{font-size:38px;font-weight:900;letter-spacing:-1px;margin:10px 0}.code-box{background:#0b0b0b;color:#fff;border-radius:14px;padding:16px;overflow:auto}button:disabled{opacity:.55;cursor:not-allowed}@media(max-width:1100px){.screen-grid,.network-grid,.grid-3{grid-template-columns:1fr 1fr}.hero-panel,.boost-hero{display:block}.boost-orb.big{margin-top:20px}}@media(max-width:700px){.screen-grid,.network-grid,.grid-3{grid-template-columns:1fr}.hero-panel h2,.boost-hero h2{font-size:28px}.account-pill{justify-items:start;border-radius:16px}.section-head{display:block}.topbar{display:block}.hero-panel,.boost-hero{padding:22px;border-radius:20px}}

/* =========================================================
   BOOST UNI v10 — reancoragem visual comercial
   ========================================================= */
.btn-dark{background:#111;color:#fff}.btn-dark:hover{filter:brightness(1.03)}
.section-head.compact{margin-bottom:12px}
.card-glow{border:1px solid rgba(238,28,37,.24);box-shadow:0 16px 50px rgba(238,28,37,.08);background:linear-gradient(180deg,#fff,#fff8f8)}
.boost-hero-v10{padding:28px 30px 24px;min-height:auto;margin-bottom:16px}.boost-hero-copy{display:grid;gap:12px}.boost-hero-v10 h2{font-size:40px;max-width:760px}.boost-hero-v10 p{margin:0}.boost-hero-cta-row{display:flex;flex-wrap:wrap;gap:8px}.boost-quick-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;max-width:720px}.quick-stat{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:14px 16px;display:grid;gap:4px}.quick-stat strong{font-size:28px;line-height:1}.quick-stat span{color:#d7d7d7;font-size:13px}
.boost-grid-v10{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin:0 0 16px}.boost-tile{background:#fff;border:1px solid var(--border);border-radius:22px;padding:20px;position:relative;overflow:hidden;display:grid;gap:10px;align-content:start;box-shadow:0 10px 28px rgba(0,0,0,.03)}.boost-tile:before{content:"";position:absolute;right:-34px;top:-34px;width:116px;height:116px;border-radius:999px;background:rgba(238,28,37,.06)}.boost-tile h3{margin:0;font-size:24px;letter-spacing:-.03em}.boost-tile p{margin:0;color:#52525b;line-height:1.45}.boost-pill{display:inline-flex;align-items:center;justify-content:center;width:max-content;padding:7px 10px;border-radius:999px;font-size:11px;font-weight:900;letter-spacing:.09em;text-transform:uppercase;background:#f1f1f3;color:#222}.boost-value-band{padding:10px 12px;border-radius:14px;background:#f7f7f8;border:1px solid #ededf0;color:#3d3d45;font-size:13px;font-weight:700;line-height:1.35;min-height:58px}.boost-main-cta{width:100%;margin-top:2px;text-align:center;justify-content:center}.tier-featured{border-color:rgba(238,28,37,.24);box-shadow:0 0 0 2px rgba(238,28,37,.08),0 16px 44px rgba(238,28,37,.10)}.tier-featured .boost-pill,.tier-premium .boost-pill,.tier-impact .boost-pill{background:#ffe8eb;color:#9f0f1a}.tier-premium{background:linear-gradient(180deg,#fff,#fff7f7)}.tier-impact{background:linear-gradient(180deg,#fff,#fff5f1)}.tier-impact .boost-value-band{background:#fff1f1;border-color:#ffe0e0}
.boost-ready-grid{display:grid;gap:10px}.ready-item{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:14px 16px;border-radius:16px;border:1px solid rgba(238,28,37,.16);background:#fff}.ready-item div{display:grid;gap:4px}.ready-item span{font-size:13px;color:#666}
.compact-grid .card{margin-bottom:0}.boost-side-summary p{margin-top:0}.rule-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:10px}.rule-mini-grid div{border:1px solid var(--border);background:#fafafa;border-radius:14px;padding:12px;display:grid;gap:4px}.rule-mini-grid strong{font-size:14px}.rule-mini-grid span{font-size:12px;color:#666}
.big-number{font-size:44px;line-height:1;font-weight:900;letter-spacing:-.05em;margin:0 0 8px}.compact-grid{margin-bottom:16px}

@media(max-width:1280px){.boost-grid-v10{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:920px){.boost-hero-v10 h2{font-size:32px}.boost-quick-stats{grid-template-columns:1fr}.ready-item{display:block}.ready-item form{margin-top:10px}}
@media(max-width:700px){.boost-grid-v10{grid-template-columns:1fr}.boost-hero-v10{padding:22px}.boost-hero-cta-row{display:grid}.rule-mini-grid{grid-template-columns:1fr}.quick-stat strong{font-size:24px}}


/* =========================================================
   ÁREA TOTAL v11 — acabamento premium e consistência uni.
   ========================================================= */
.main{padding:26px 30px 40px}
.topbar h1{margin:0 0 4px;letter-spacing:-.04em;font-size:34px}
.card h2{letter-spacing:-.03em}
.card{box-shadow:0 10px 26px rgba(0,0,0,.025)}
.nav a.active{box-shadow:0 10px 30px rgba(238,28,37,.24)}
.grid-4{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.table-wrap{width:100%;overflow:auto}
form .grid-2{align-items:end}
hr{border:0;border-top:1px solid var(--border);margin:18px 0}
.sidebar .brand{text-transform:none}
.admin-kpi{position:relative;overflow:hidden}.admin-kpi:after{content:"";position:absolute;right:-28px;top:-28px;width:92px;height:92px;border-radius:999px;background:rgba(238,28,37,.08)}
.client-profile-card{background:linear-gradient(135deg,#fff,#fff8f8)}
.form-card{background:linear-gradient(180deg,#fff,#fbfbfc)}
textarea{resize:vertical}
input[type="checkbox"]{accent-color:var(--red)}
.badge{white-space:nowrap}
td .btn, th .btn{white-space:nowrap}
@media(max-width:1180px){.grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}.main{padding:22px}}
@media(max-width:700px){.grid-4{grid-template-columns:1fr}.topbar h1{font-size:28px}.main{padding:18px}.table-wrap{margin:0 -4px}}


/* =========================================================
   AO VIVO v12 — snapshots, status e app
   ========================================================= */
.live-hero-v12{margin-bottom:16px}
.live-grid-v12 .screen-card{display:flex;flex-direction:column;gap:10px}
.live-status-row{display:flex;justify-content:space-between;gap:10px;align-items:center;border:1px solid var(--border);background:#fafafa;border-radius:14px;padding:10px 12px;color:#666;font-size:13px}
.live-status-row strong{color:#111}
.badge-red{background:#ffe7e8;color:#b00010}
.asset-admin-card{overflow:hidden}
.asset-admin-card .form-card{padding:0;margin:0;background:transparent;border:0}
.admin-snapshot-preview{max-height:360px}
.admin-snapshot-preview img{width:100%;height:100%;object-fit:cover}
@media(max-width:900px){.asset-admin-card .grid-2{grid-template-columns:1fr}}


/* =========================================================
   V13 — planos, créditos e monetização direta
   ========================================================= */
.plan-grid-v13 .boost-tile{min-height:360px}
.client-profile-card .grid-4>div{border:1px solid var(--border);border-radius:14px;background:#fafafa;padding:12px}
.client-profile-card .grid-4 strong{display:block;margin-top:4px}


/* V15 consolidado */
.screen-grid{grid-template-columns:repeat(auto-fit,minmax(250px,1fr))}
.live-screen-card .screen-stage{min-height:340px}
@media(max-width:900px){.live-screen-card .screen-stage{min-height:260px}}
@media print{.sidebar,.topbar .account-pill,.btn,.actions{display:none!important}.layout{display:block}.main{padding:0}.card{box-shadow:none;border:1px solid #ddd}}


/* V19 comercial reancorada — área do cliente */
.in-app-section-head{margin:28px 0 14px}
.plan-grid-v13 .boost-tile h3{text-transform:none}
.plan-grid-v13 .boost-value-band{min-height:52px}
.client-profile-card .grid-4>div{border:1px solid var(--border);border-radius:14px;background:#fafafa;padding:12px}


/* V26 — Ao vivo / espelho operacional */
.live-hero-v17 .actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.live-mini{
  min-width:180px;
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}
.live-mini strong,
.live-mini small{
  display:block;
}
.live-dot{
  display:inline-block;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#ee1c25;
  box-shadow:0 0 0 6px rgba(238,28,37,.16);
  margin-right:8px;
}
.live-grid-v17{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.live-screen-v17 .screen-stage{
  min-height:310px;
  border-radius:20px;
  overflow:hidden;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
}
.live-screen-v17 .screen-stage img{
  width:100%;
  height:100%;
  min-height:310px;
  object-fit:cover;
  display:block;
}
.premium-placeholder{
  color:#fff;
  width:100%;
  min-height:310px;
  background:
    radial-gradient(circle at 50% 42%, rgba(238,28,37,.16), transparent 22%),
    linear-gradient(135deg,#08080b,#181820 58%,#30070b);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.premium-placeholder strong{
  font-size:26px;
  letter-spacing:-.04em;
}
.premium-placeholder small{
  color:#d0d0d3;
}
.live-status-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:12px 0;
  color:#777;
  font-size:13px;
}
.code-box{
  background:#111;
  color:#fff;
  border-radius:16px;
  padding:16px;
  overflow:auto;
}
@media(max-width:980px){
  .live-grid-v17{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   PATCH v54 — ADMIN OPERACIONAL
   ========================================================= */
.nav-group-label{
  color: rgba(255,255,255,.48);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 18px 12px 8px;
  font-weight: 800;
}
.sidebar-caption{
  color: rgba(255,255,255,.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: -20px 0 18px;
}
.account-pill{
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  min-width: 150px;
}
.account-pill span{display:block;color:#777;font-size:12px;margin-top:2px}
.admin-toolbar{display:flex;flex-wrap:wrap;gap:8px;align-items:center;justify-content:space-between;margin-bottom:14px}
.admin-toolbar form{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin:0}
.admin-toolbar input,.admin-toolbar select{width:auto;min-width:170px;margin:0}
.kpi-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:18px}
.kpi-card{background:#fff;border:1px solid var(--border);border-radius:18px;padding:18px}
.kpi-card .label{color:#666;font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.kpi-card .value{font-size:26px;font-weight:900;margin-top:8px}
.kpi-card.danger{background:#fff5f5;border-color:#ffd3d3}.kpi-card.success{background:#f1fff5;border-color:#cdeed6}
.form-inline{display:inline-block;margin:0}.form-inline button{margin:0}
.danger-zone{border-color:#ffd0d0;background:#fff8f8}.danger-zone h2{color:#b00010}
.compact-table td,.compact-table th{padding:9px 10px;font-size:13px}
.row-actions{display:flex;flex-wrap:wrap;gap:6px}.row-actions .btn{padding:8px 10px;border-radius:10px;font-size:13px}
.status-dot{display:inline-block;width:10px;height:10px;border-radius:50%;margin-right:7px;background:#aaa}.status-dot.ok{background:#15a34a}.status-dot.warn{background:#f59e0b}.status-dot.off{background:#b91c1c}
.live-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:16px}.live-status{background:linear-gradient(135deg,#050505,#181818 60%,#3f0508);color:white;border-radius:22px;padding:24px;margin-bottom:18px}.live-status h2{margin:4px 0 8px;font-size:30px}.live-status .muted{color:rgba(255,255,255,.72)}
@media(max-width:1100px){.kpi-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.live-grid{grid-template-columns:1fr}}
@media(max-width:700px){.kpi-grid{grid-template-columns:1fr}.admin-toolbar form{display:grid;width:100%}.admin-toolbar input,.admin-toolbar select{width:100%}}
.uni-code{background:#111;color:#fff;border-radius:10px;padding:12px;display:block;overflow:auto;font-size:12px;line-height:1.45}
