
:root{
  --bg:#070a10;
  --bg2:#0b0f17;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.10);
  --text:#ffffff;
  --muted:#a8b0bf;

  --blue:#0b63ff;
  --blue2: rgba(11,99,255,.75);
  --red:#ff3b30;
  --good:#34c759;

  --shadow: 0 26px 90px rgba(0,0,0,.70);
  --r16:16px;
  --r20:20px;
}

*{box-sizing:border-box;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif}
html,body{height:100%}
body{
  margin:0; color:var(--text);
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(11,99,255,.18), transparent 62%),
    radial-gradient(900px 520px at 10% 10%, rgba(255,59,48,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.wrap{
  max-width:980px; margin:0 auto;
  padding:14px 14px calc(150px + env(safe-area-inset-bottom));
}

.topbar{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:6px 2px 10px;
}
.brand{
  display:flex; align-items:center; gap:10px; min-width:0;
}
.brand img{
  width:40px;height:40px;border-radius:12px;object-fit:cover;
  box-shadow:0 0 24px rgba(11,99,255,.38);
  border:1px solid rgba(255,255,255,.10);
}
.brandTitle{min-width:0}
.brandTitle h1{margin:0;font-size:15px;font-weight:950;letter-spacing:.2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.brandTitle p{margin:3px 0 0;font-size:12px;color:var(--muted)}

.navTabs{
  display:flex; gap:8px; align-items:center; flex-wrap:wrap; justify-content:flex-end;
}
.tab{
  font-size:12px; color:var(--text);
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  user-select:none;
  text-decoration:none;
}
.tab.active{
  border-color: rgba(11,99,255,.45);
  box-shadow: 0 0 0 3px rgba(11,99,255,.12);
}

.controls{
  display:grid; gap:10px;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,.035);
  border:1px solid var(--stroke);
  border-radius: var(--r20);
  padding:12px;
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
}

.searchWrap{display:flex; gap:10px; align-items:center}
.searchWrap input{
  flex:1; height:44px; padding:0 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline:none;
  font-size:16px;
}
.searchWrap input::placeholder{color:var(--muted)}
.iconBtn{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-size:18px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.iconBtn:active{transform:scale(.98)}

.sectionHead{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:12px 2px 8px;
}
.sectionHead h2{margin:0;font-size:14px;font-weight:950;letter-spacing:.2px}
.small{font-size:12px;color:var(--muted)}

.pager{
  display:flex; align-items:center; gap:10px;
  padding:10px;
  background: rgba(255,255,255,.035);
  border:1px solid var(--stroke);
  border-radius: 16px;
  margin: 0 0 10px;
}
.pagerCenter{flex:1; min-width:0}
.pagerTitle{font-size:12px; font-weight:950; margin:0 0 6px; color:var(--muted)}
.pagerMeta{display:flex; gap:8px; flex-wrap:wrap}
.pagerBtn{
  width:42px; height:42px; border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size:22px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.pagerBtn:active{transform:scale(.98)}
.pagerBtn[disabled]{opacity:.45; cursor:not-allowed;}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}

.station{
  display:flex; align-items:center; gap:12px;
  padding:10px;
  border-radius: 18px;
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  cursor:pointer;
  user-select:none;
}
.station:active{transform:scale(.99)}
.station.active{border-color: rgba(11,99,255,.45); box-shadow: 0 0 0 3px rgba(11,99,255,.12);}

.logo{
  width:54px;height:54px;border-radius:16px;overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  flex:0 0 auto;
}
.logo img{width:100%;height:100%;object-fit:cover;display:block}
.info{flex:1; min-width:0}
.name{margin:0;font-size:14px;font-weight:950;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.meta{margin:5px 0 0;display:flex;gap:8px;align-items:center;flex-wrap:wrap}
.tag{
  font-size:11px;padding:5px 8px;border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
}

.actions{display:flex; align-items:center; gap:8px; flex:0 0 auto;}
.favBtn{
  width:42px;height:42px;border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-size:18px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.favBtn.on{
  border-color: rgba(255,214,10,.35);
  box-shadow: 0 0 0 3px rgba(255,214,10,.10);
}
.playchip{
  width:42px;height:42px;border-radius:14px;
  border:1px solid rgba(11,99,255,.25);
  background: rgba(11,99,255,.12);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;
}

mark.hl{
  background: rgba(255, 214, 10, .20);
  color: var(--text);
  border: 1px solid rgba(255, 214, 10, .25);
  padding: 0 4px;
  border-radius: 8px;
}

/* Dial */
.dialWrap{
  border-radius: 16px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.28);
  padding:10px;
}
.dialTop{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  margin-bottom:8px;
}
.dialLabel{font-size:12px;font-weight:950;letter-spacing:.2px;color:var(--muted)}
.dialValue{font-size:12px;font-weight:950}
.dialUnit{margin-left:6px;color:var(--muted);font-weight:800}

.tunerSvg{
  width:100%;
  height: clamp(62px, 14vw, 98px);
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  position:relative;
  overflow:hidden;
  touch-action:none;
  background: rgba(0,0,0,.35);
}
.tunerSvgInner{position:absolute; inset:0; width:100%; height:100%; display:block;}

.needle{
  position:absolute; top:6px; bottom:6px;
  width:3px;
  background: linear-gradient(180deg, rgba(255,80,80,.0), rgba(255,80,80,.98), rgba(255,80,80,.0));
  box-shadow: 0 0 18px rgba(255,60,60,.65);
  border-radius:99px;
  transform: translateX(-50%);
  left: 12px;
  pointer-events:none;
}
.needle::after{
  content:"";
  position:absolute; left:50%; top:50%;
  transform: translate(-50%,-50%);
  width:10px; height:10px; border-radius:999px;
  background: rgba(255,60,60,.92);
  box-shadow: 0 0 14px rgba(255,60,60,.75);
}
.dialHint{margin-top:8px;font-size:11px;color:var(--muted)}

/* Top Stations layout */
.topGrid{display:grid; grid-template-columns:1fr; gap:10px;}
.heroCard{
  border-radius: var(--r20);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  padding:12px;
  margin: 6px 0 12px;
}
.heroRow{display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap}
.heroRow h2{margin:0;font-size:14px;font-weight:950}
.heroRow p{margin:6px 0 0;color:var(--muted);font-size:12px}
.heroHint{font-size:12px;color:var(--muted)}

/* Bottom player */
.player{
  position:fixed;left:0;right:0;bottom:0;
  padding:10px 12px calc(14px + env(safe-area-inset-bottom));
  background: rgba(8,12,20,.88);
  backdrop-filter: blur(10px);
  border-top:1px solid rgba(255,255,255,.10);
}
.playerInner{
  max-width:980px;margin:0 auto;
  border-radius: 20px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding:12px;
  display:flex; align-items:center; gap:12px;
  box-shadow: var(--shadow);
}
.pLogo{width:54px;height:54px;border-radius:16px;overflow:hidden;border:1px solid rgba(255,255,255,.12);background:rgba(0,0,0,.25)}
.pLogo img{width:100%;height:100%;object-fit:cover}
.pInfo{flex:1; min-width:0}
.pTitle{margin:0;font-size:14px;font-weight:950;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.pSub{margin:5px 0 0;display:flex;align-items:center;gap:8px;color:var(--muted);font-size:12px}
.dot{width:8px;height:8px;border-radius:50%;background:var(--red);box-shadow:0 0 0 4px rgba(255,59,48,.12)}
.dot.on{background:var(--good);box-shadow:0 0 0 4px rgba(52,199,89,.14)}

.controlsRight{display:flex; gap:10px; align-items:center}
.btnPlay{
  width:54px;height:54px;border-radius:18px;
  background: linear-gradient(180deg, rgba(11,99,255,.95), rgba(11,99,255,.70));
  border:0;color:#fff;font-size:20px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.btnPlay:active{transform:scale(.98)}

.volWrap{display:flex; align-items:center; gap:10px; min-width:160px}
.volWrap span{font-size:12px;color:var(--muted)}
input[type=range]{flex:1; accent-color: var(--blue);}

/* Responsive */
@media (min-width: 820px){
  .controls{grid-template-columns: 1.2fr .8fr; align-items:start;}
  .grid, .topGrid{grid-template-columns: repeat(2, minmax(0, 1fr));}
}
@media (max-width: 420px){
  .volWrap{min-width:120px}
}
@media (max-width: 360px){
  .playerInner{flex-wrap:wrap}
  .controlsRight{width:100%}
  .btnPlay{flex:1}
  .volWrap{width:100%}
}


/* ===== Discover Banner ===== */
.discoverBanner{
  border-radius: var(--r20);
  border:1px solid var(--stroke);
  background:
    radial-gradient(600px 260px at 10% 10%, rgba(11,99,255,.18), transparent 60%),
    radial-gradient(520px 240px at 80% 10%, rgba(255,59,48,.10), transparent 60%),
    rgba(255,255,255,.03);
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin: 6px 0 12px;
  overflow:hidden;
}
.discoverKicker{
  display:inline-flex;
  font-size:11px;
  padding:5px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  margin-bottom:8px;
}
.discoverTitle{
  margin:0;
  font-size:18px;
  font-weight:950;
  letter-spacing:.2px;
}
.discoverText{
  margin:8px 0 0;
  font-size:12px;
  color: var(--muted);
}
.discoverActions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:10px;
}
.ctaBtn{
  text-decoration:none;
  color:#fff;
  font-size:12px;
  font-weight:950;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(11,99,255,.35);
  background: rgba(11,99,255,.16);
}
.ctaBtn:active{transform:scale(.99)}
.ctaBtn.ghost{
  border-color: var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.discoverRight{
  position:relative;
  width:150px;
  height:92px;
  flex:0 0 auto;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  overflow:hidden;
}
.pulseRing{
  position:absolute;
  left:50%; top:50%;
  width:120px; height:120px;
  transform: translate(-50%,-50%);
  border-radius:999px;
  border:1px solid rgba(11,99,255,.35);
  box-shadow: 0 0 24px rgba(11,99,255,.18);
  opacity:.7;
}
.pulseRing.r2{width:92px;height:92px;opacity:.85}
.pulseRing.r3{width:64px;height:64px;opacity:1}
.needleMini{
  position:absolute; top:10px; bottom:10px; left:50%;
  width:3px; transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,80,80,.0), rgba(255,80,80,.95), rgba(255,80,80,.0));
  box-shadow: 0 0 16px rgba(255,60,60,.55);
  border-radius:99px;
}
.freqMini{
  position:absolute; left:10px; right:10px; bottom:10px;
  font-size:11px; font-weight:950;
  color: rgba(11,99,255,.95);
  text-align:center;
  text-shadow: 0 0 10px rgba(11,99,255,.25);
}

/* ===== Category chips ===== */
.chipRow{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding: 2px 2px 10px;
}
.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
  user-select:none;
}
.chip.on{
  border-color: rgba(11,99,255,.45);
  box-shadow: 0 0 0 3px rgba(11,99,255,.12);
  background: rgba(11,99,255,.12);
}

/* ===== Mini favorites strip ===== */
.miniSection{
  border-radius: var(--r20);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  padding:12px;
  margin: 6px 0 12px;
}
.miniHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.miniTitle{font-size:14px;font-weight:950;margin:0}
.miniSub{font-size:12px;color:var(--muted);margin-top:4px}
.miniLink{
  text-decoration:none;
  font-size:12px;
  font-weight:950;
  color:#fff;
  padding:8px 10px;
  border-radius:14px;
  border:1px solid rgba(11,99,255,.35);
  background: rgba(11,99,255,.14);
}
.miniRow{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:2px;
}
.miniCard{
  min-width:220px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  cursor:pointer;
  user-select:none;
}
.miniCard:active{transform:scale(.99)}
.miniCard .logo{width:44px;height:44px;border-radius:14px}
.miniCard .name{font-size:13px}
.miniCard .meta{margin-top:4px}


/* ===== Station Details ===== */
.detailCard{
  border-radius: var(--r20);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  padding:14px;
  margin: 8px 0 12px;
}
.detailHero{
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
}
.detailLogo{
  width:84px;height:84px;border-radius:22px;overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  box-shadow: 0 0 34px rgba(11,99,255,.22);
}
.detailLogo img{width:100%;height:100%;object-fit:cover;display:block}
.detailMain{flex:1; min-width:220px}
.detailName{margin:0;font-size:18px;font-weight:950;letter-spacing:.2px}
.detailMeta{margin-top:8px;display:flex;gap:8px;flex-wrap:wrap}
.detailActions{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  margin-top:12px;
}
.bigPlay{
  text-decoration:none;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background: linear-gradient(180deg, rgba(11,99,255,.95), rgba(11,99,255,.70));
  color:#fff;
  font-weight:950;
  border:0;
  cursor:pointer;
  min-width: 180px;
}
.bigPlay:active{transform:scale(.99)}
.bigFav{
  width:54px;height:54px;border-radius:18px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  font-size:20px;
  display:inline-flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.bigFav.on{
  border-color: rgba(255,214,10,.35);
  box-shadow: 0 0 0 3px rgba(255,214,10,.10);
}
.detailDesc{
  margin:12px 0 0;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size:13px;
  line-height:1.55;
}
.detailDescHead{
  display:flex; align-items:center; gap:8px;
  font-weight:950;
  color:#fff;
  margin-bottom:8px;
  font-size:12px;
  letter-spacing:.2px;
  opacity:.95;
}
.detailDescBody p{margin:0}
.detailDescBody p + p{margin-top:8px}
.linkRow{
  display:flex; gap:8px; flex-wrap:wrap;
  margin-top:12px;
}
.linkBtn{
  text-decoration:none;
  font-size:12px;
  font-weight:950;
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}
.linkBtn:active{transform:scale(.99)}


/* ===== Share + Related ===== */
.shareBtn{
  text-decoration:none;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  color:#fff;
  font-weight:950;
  border:1px solid var(--stroke);
  cursor:pointer;
  min-width: 180px;
}
.shareBtn:active{transform:scale(.99)}
.toast{
  position:fixed;
  left:50%;
  bottom: calc(120px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(0,0,0,.78);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  padding:10px 12px;
  border-radius: 14px;
  font-size:12px;
  box-shadow: 0 18px 70px rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.show{
  opacity:1;
  transform: translateX(-50%) translateY(-6px);
}

.relatedWrap{
  margin-top:12px;
}
.relatedHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}
.relatedHead h3{
  margin:0;
  font-size:14px;
  font-weight:950;
}
.relatedRow{
  display:flex;
  gap:10px;
  overflow:auto;
  padding-bottom:2px;
}
.relatedCard{
  min-width:240px;
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  cursor:pointer;
  user-select:none;
}
.relatedCard:active{transform:scale(.99)}
.relatedCard .logo{width:44px;height:44px;border-radius:14px}
.relatedCard .name{font-size:13px}
.relatedCard .meta{margin-top:4px}


.hbMain{width:100%;}



/* =====================
   Mobile App UI Upgrade (v1.0.7)
   ===================== */
@media (max-width: 560px){
  .wrap{ padding: 14px 14px 110px; }
  .topbar{ gap: 10px; padding: 10px 10px 12px; border-radius: 22px; }
  .brand{ gap: 10px; }
  .brand img{ width: 42px; height: 42px; border-radius: 16px; }
  .brandTitle h1{ font-size: 14px; }
  .brandTitle p{ font-size: 11px; }

  .navTabs{
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 50;
    padding: 8px;
    border-radius: 22px;
    background: rgba(10,14,24,.78);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 18px 60px rgba(0,0,0,.55);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    backdrop-filter: blur(10px);
  }
  .navTabs .tab{
    padding: 10px 8px;
    border-radius: 18px;
    font-size: 11px;
    text-align: center;
  }

  .discoverBanner{ padding: 14px; border-radius: 22px; }
  .discoverTitle{ font-size: 18px; }
  .discoverText{ font-size: 12px; }
  .discoverActions{ width: 100%; }
  .ctaBtn{ width: 100%; justify-content: center; padding: 12px 14px; border-radius: 18px; }

  .heroCard{ border-radius: 22px; padding: 14px; }
  .heroRow h2{ font-size: 15px; }
  .heroRow p{ font-size: 12px; }

  .controls{ gap: 10px; }
  .searchWrap input{ height: 46px; border-radius: 18px; }
  .iconBtn{ width: 46px; height: 46px; border-radius: 18px; }

  .tunerSvg{ border-radius: 22px; }
  .dialWrap{ border-radius: 22px; padding: 12px; }

  .grid{ grid-template-columns: 1fr; gap: 10px; }
  .card{ border-radius: 22px; padding: 12px; }
  .card .logo{ width: 52px; height: 52px; border-radius: 18px; }
  .actions .favBtn, .actions .playchip{ width: 46px; height: 46px; border-radius: 16px; }
  .tag{ border-radius: 999px; padding: 7px 10px; font-size: 11px; }

  .pager{ border-radius: 22px; padding: 10px; }
  .pagerBtn{ width: 46px; height: 46px; border-radius: 18px; }
  .pagerTitle{ font-size: 12px; }
  .pagerMeta .pill{ font-size: 11px; }

  .detailCard{ border-radius: 22px; }
  .detailLogo{ width: 76px; height: 76px; border-radius: 22px; }
  .bigPlay, .shareBtn{ width: 100%; min-width: unset; }
  .bigFav{ width: 56px; height: 56px; }
  .relatedCard{ min-width: 220px; }
}

/* Player: more app-like + safe-area */
.player{
  padding-bottom: env(safe-area-inset-bottom);
}
.playerInner{
  border-radius: 22px;
}
.btnPlay{
  width: 52px;
  height: 52px;
  border-radius: 18px;
}
.volWrap input[type="range"]{
  width: 110px;
}
@media (max-width: 560px){
  .player{ left: 0; right:0; bottom: calc(78px + env(safe-area-inset-bottom)); }
  .playerInner{ margin: 0 12px; }
  .volWrap{ display:none; } /* cleaner mobile player; user uses device volume */
}

.navTabs .tab i{margin-right:8px}
@media (max-width:560px){.navTabs .tab i{margin:0; display:block; font-size:14px} .navTabs .tab span{display:block; margin-top:4px;}}



/* ===== Social icon buttons (Station page) ===== */
.socialRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.socialIcon{
  width:46px;height:46px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-size:16px;
}
.socialIcon:active{transform:scale(.99)}
@media (max-width:560px){
  .socialIcon{ width:52px; height:52px; border-radius:18px; font-size:18px; }
}


/* ===== Data load error banner ===== */
.hbErr{
  margin: 12px 0;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,59,48,.10);
  color: #fff;
  font-size: 12px;
}
.hbErr code{
  display:inline-block;
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.10);
}
