/* ═══════════════════════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  /* backgrounds */
  --bg:     #111114;
  --s1:     #1C1C21;
  --s2:     #242429;
  --s3:     #2E2E36;

  /* borders */
  --b1: rgba(255,255,255,0.07);
  --b2: rgba(255,255,255,0.11);

  /* accents — muted, warm */
  --gold:      #C9974A;
  --gold-hi:   #D9A85C;
  --gold-soft: rgba(201,151,74,0.12);
  --gold-border: rgba(201,151,74,0.22);

  --teal:      #5B9EA0;
  --teal-soft: rgba(91,158,160,0.10);

  --green:     #5A9E7A;
  --green-soft:rgba(90,158,122,0.10);

  --purple:    #8878C3;
  --purple-soft:rgba(136,120,195,0.10);

  --red:       #C07070;

  /* text */
  --t1: #E8E8EE;
  --t2: #888896;
  --t3: #505060;

  /* sizes */
  --r:    18px;
  --r-sm: 12px;
  --r-xs: 8px;
  --tab-h: 62px;

  /* shadows — depth only, no color */
  --sh-sm: 0 1px 4px rgba(0,0,0,0.35), 0 2px 10px rgba(0,0,0,0.25);
  --sh-md: 0 2px 8px rgba(0,0,0,0.40), 0 4px 20px rgba(0,0,0,0.28);
  --sh-tab: 0 -1px 0 rgba(255,255,255,0.05), 0 -4px 20px rgba(0,0,0,0.45);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }

body {
  font-family: -apple-system, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--t1);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   APP SHELL
═══════════════════════════════════════════════════════════════ */
#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px calc(var(--tab-h) + 24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 12px;
  -webkit-overflow-scrolling: touch;
}

/* ═══════════════════════════════════════════════════════════════
   BOTTOM TAB BAR
═══════════════════════════════════════════════════════════════ */
.tab-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  height: calc(var(--tab-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  align-items: stretch;
  background: rgba(20,20,24,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-top: 1px solid var(--b1);
  box-shadow: var(--sh-tab);
}

.tab-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: none;
  background: transparent;
  color: var(--t3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 0;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.tab-btn .tab-icon {
  font-size: 22px;
  line-height: 1;
  display: block;
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.tab-btn.active {
  color: var(--gold);
}

.tab-btn.active .tab-icon {
  transform: scale(1.15) translateY(-2px);
}

/* active dot */
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 7px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.tab-btn.active::after { opacity: 0.8; transform: scale(1); }

/* ═══════════════════════════════════════════════════════════════
   TAB PANELS & ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.tab-panel { display: none; flex-direction: column; gap: 12px; }
.tab-panel.active  { display: flex; }
.tab-panel.anim-in { animation: panelIn 0.30s cubic-bezier(0.22,1,0.36,1) both; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-anim {
  animation: cardUp 0.36s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes cardUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO CARD
═══════════════════════════════════════════════════════════════ */
.hero-card {
  background: linear-gradient(160deg, #222228 0%, #1A1A1F 100%);
  border: 1px solid var(--b1);
  border-radius: var(--r);
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--sh-md);
  text-align: center;
}

.avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-hi), #A87838);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  color: #111114;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.45);
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--t1);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--t2);
}
.hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--t3); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 2px;
}

.ref-card {
  background: linear-gradient(135deg, #24242B 0%, #1F1F25 100%);
  border: 1px solid var(--b2);
  border-radius: var(--r);
  padding: 14px 14px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ref-head {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
}

.ref-link-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}

.ref-link-box {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 48px;
  border-radius: 14px;
  background: #2A2A31;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ref-link-text {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #F0F0F3;
  font-size: 15px;
}

.ref-copy-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #1A84FF;
  font-size: 18px;
}

.ref-share-btn {
  min-width: 118px;
  border: 1px solid var(--gold-border);
  background: linear-gradient(135deg, #5A3A1C 0%, #3D2A16 100%);
  color: #E2B06A;
  border-radius: 14px;
  min-height: 44px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.ref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ref-label {
  color: var(--t2);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ref-value {
  color: var(--t1);
  font-size: 20px;
  font-weight: 800;
}

.ref-help-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  color: var(--teal);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.ref-help-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 12px;
  background: rgba(7, 7, 10, 0.55);
}

.ref-help-modal.show {
  display: flex;
}

.ref-help-sheet {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(170deg, #25252C 0%, #1D1D23 100%);
  border: 1px solid var(--b2);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--sh-md);
}

.ref-help-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--t1);
}

.ref-help-text {
  margin-top: 8px;
  color: var(--t2);
  font-size: 13px;
  line-height: 1.45;
}

.ref-help-close {
  margin-top: 12px;
  width: 100%;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--gold-border);
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 380px) {
  .ref-link-row { gap: 8px; }
  .ref-link-box { padding: 0 10px; }
  .ref-link-text { font-size: 14px; }
  .ref-share-btn { min-width: 108px; padding: 0 12px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════
   BALANCE CARD
═══════════════════════════════════════════════════════════════ */
.balance-card {
  background: linear-gradient(135deg, #222218 0%, #1C1C1A 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.balance-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 6px;
}

.balance-value {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}

.balance-value span {
  font-size: 20px;
  font-weight: 600;
  opacity: 0.65;
  margin-left: 5px;
}

.balance-star {
  font-size: 38px;
  opacity: 0.18;
}

.star-icon {
  color: var(--gold);
  opacity: 0.95;
}

.star-lottie {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  vertical-align: -0.15em;
}

.star-inline {
  width: 16px;
  height: 16px;
  vertical-align: -0.18em;
}

.star-balance {
  width: 22px;
  height: 22px;
  margin-left: 6px;
  vertical-align: -0.08em;
}

.star-bg {
  width: 40px;
  height: 40px;
  opacity: 0.85;
}

.tg-emoji {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.18em;
  align-items: center;
  justify-content: center;
}

.tg-emoji img {
  width: 100%;
  height: 100%;
  display: block;
}

.emoji-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.medal-lottie {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.14em;
}

.medal-badge {
  width: 16px;
  height: 16px;
}

.ui-lottie {
  display: inline-block;
  vertical-align: middle;
}

.icon-stat {
  width: 22px;
  height: 22px;
}

.icon-podium {
  width: 26px;
  height: 26px;
}

.icon-header {
  width: 20px;
  height: 20px;
  margin-right: 4px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════════ */
.section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  padding: 0 2px;
  margin-top: 4px;
}
.section-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--b1);
}

/* ═══════════════════════════════════════════════════════════════
   STAT GRID
═══════════════════════════════════════════════════════════════ */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
  padding: 16px;
  box-shadow: var(--sh-sm);
}

.stat-icon {
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
  opacity: 0.8;
}

.stat-val {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--t1);
}
.stat-val.c-green  { color: var(--green); }

.stat-lbl {
  font-size: 11px;
  color: var(--t2);
  margin-top: 4px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   WIN RATE BAR
═══════════════════════════════════════════════════════════════ */
.winrate-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
  padding: 16px;
  box-shadow: var(--sh-sm);
}

.winrate-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 11px;
}

.winrate-label { font-size: 12px; color: var(--t2); font-weight: 500; }
.winrate-pct   { font-size: 17px; font-weight: 800; color: var(--teal); }

.bar-track {
  height: 5px;
  border-radius: 999px;
  background: var(--s3);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal) 0%, #7EC0C2 100%);
  width: 0%;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}

/* ═══════════════════════════════════════════════════════════════
   TRANSACTION LIST
═══════════════════════════════════════════════════════════════ */
.tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tx-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
  padding: 12px 14px 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: background 0.14s, transform 0.14s;
  -webkit-tap-highlight-color: transparent;
}
.tx-card:active { transform: scale(0.985); background: var(--s2); }

.tx-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.tx-stripe.win     { background: var(--gold); }
.tx-stripe.loss    { background: var(--t3); }
.tx-stripe.ref     { background: var(--teal); }
.tx-stripe.jackpot { background: var(--green); }
.tx-stripe.shop    { background: var(--purple); }

.tx-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  background: var(--s2);
}
.tx-dot.win     { background: var(--gold-soft); }
.tx-dot.ref     { background: var(--teal-soft); }
.tx-dot.jackpot { background: var(--green-soft); }
.tx-dot.shop    { background: var(--purple-soft); }

.tx-body { flex: 1; overflow: hidden; min-width: 0; }
.tx-lbl {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--t1);
}
.tx-sub { font-size: 11px; color: var(--t3); margin-top: 2px; }

.tx-right { flex-shrink: 0; text-align: right; }
.tx-amt   { font-size: 14px; font-weight: 700; white-space: nowrap; }
.tx-amt.pos { color: var(--gold); }
.tx-amt.neg { color: var(--t3); }
.tx-amt.jkp { color: var(--green); font-size: 12px; }

.no-tx {
  text-align: center;
  color: var(--t3);
  font-size: 14px;
  padding: 32px 0;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
}

/* ═══════════════════════════════════════════════════════════════
   LEADERBOARD
═══════════════════════════════════════════════════════════════ */
.lb-header {
  background: linear-gradient(150deg, var(--s2) 0%, var(--s1) 100%);
  border: 1px solid var(--b2);
  border-radius: var(--r);
  padding: 20px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.lb-header-title { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.lb-header-sub   { font-size: 14px; color: var(--t2); margin-top: 5px; }

.my-place {
  background: linear-gradient(145deg, #25252C 0%, #1F1F25 100%);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
}

.my-place-title {
  font-size: 12px;
  color: var(--t2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.my-place-main {
  margin-top: 3px;
  font-size: 17px;
  font-weight: 800;
  color: var(--t1);
}

.my-place-sub {
  margin-top: 2px;
  font-size: 13px;
  color: var(--teal);
}

.lb-podium {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  gap: 8px;
  align-items: end;
}

.podium-card {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-sm);
  padding: 14px 10px 12px;
  text-align: center;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.podium-card.p1 {
  background: linear-gradient(180deg, rgba(201,151,74,0.08) 0%, var(--s1) 55%);
  border-color: var(--gold-border);
  padding-bottom: 16px;
}
.podium-card.p2 { border-color: rgba(160,162,166,0.18); }
.podium-card.p3 { border-color: rgba(180,120,60,0.18); }

.podium-medal { font-size: 28px; line-height: 1; }
.podium-card.p1 .podium-medal { font-size: 32px; }

.podium-name  {
  font-size: 12px; font-weight: 700;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%;
}
.podium-games { font-size: 15px; font-weight: 800; color: var(--t1); }
.podium-card.p1 .podium-games { color: var(--gold); font-size: 17px; }
.podium-wr    { font-size: 10px; color: var(--teal); font-weight: 600; }

.lb-list { display: flex; flex-direction: column; gap: 7px; }

.lb-row {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r-xs);
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-sm);
  transition: background 0.14s, transform 0.14s;
  -webkit-tap-highlight-color: transparent;
}
.lb-row:active { transform: scale(0.985); background: var(--s2); }

.lb-num {
  width: 30px; text-align: center;
  font-size: 18px; font-weight: 800; color: #7B7B8A; flex-shrink: 0;
}
.lb-avatar-sm {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--s3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--t2); flex-shrink: 0;
}
.lb-info  { flex: 1; min-width: 0; }
.lb-name  { font-size: 16px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-wr    { font-size: 13px; color: var(--teal); margin-top: 2px; }
.lb-right { flex-shrink: 0; text-align: right; }
.lb-games { font-size: 19px; font-weight: 800; }
.lb-glabel{ font-size: 12px; color: var(--t2); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   SKELETON
═══════════════════════════════════════════════════════════════ */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.skel {
  background: linear-gradient(90deg,
    var(--s1) 0%, var(--s2) 42%, var(--s3) 50%, var(--s2) 58%, var(--s1) 100%
  );
  background-size: 1200px 100%;
  animation: shimmer 1.7s ease-in-out infinite;
  border-radius: var(--r-xs);
}
.skel-hero { height: 172px; border-radius: var(--r); }
.skel-bal  { height: 86px;  border-radius: var(--r); }
.skel-stat { height: 84px;  border-radius: var(--r-sm); }
.skel-row  { height: 56px;  }

/* ═══════════════════════════════════════════════════════════════
   ERROR / EMPTY
═══════════════════════════════════════════════════════════════ */
.err-box {
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: var(--r);
  padding: 36px 24px;
  text-align: center;
  color: var(--t2);
  font-size: 14px;
  line-height: 1.7;
  box-shadow: var(--sh-sm);
}
.err-icon { font-size: 38px; display: block; margin-bottom: 12px; }

/* ═══════════════════════════════════════════════════════════════
   REWARD BANNER
═══════════════════════════════════════════════════════════════ */
.reward-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #1E2220 0%, #191E1C 100%);
  border: 1px solid rgba(90,158,122,0.28);
  border-radius: var(--r);
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.30);
}
.reward-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.reward-body { flex: 1; }
.reward-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 3px;
}
.reward-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   NO-TELEGRAM GUARD
═══════════════════════════════════════════════════════════════ */
/* ── Resources (Chats) tab ──────────────────────────────────── */
.res-section-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--t3);
  padding: 18px 0 8px;
}
.res-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--s1);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.res-icon {
  font-size: 30px;
  width: 44px;
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--s2);
  border-radius: 12px;
}
.res-body {
  flex: 1;
  min-width: 0;
}
.res-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.res-desc {
  font-size: 12px;
  color: var(--t3);
  margin-top: 2px;
}
.res-btn {
  background: var(--gold);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 7px 12px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.res-btn:active { opacity: .75; }

#no-tg {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 28px;
  text-align: center;
  gap: 18px;
}
#no-tg .nt-icon { font-size: 60px; }
#no-tg h2 { font-size: 21px; font-weight: 800; color: var(--t1); }
#no-tg p  { font-size: 14px; color: var(--t2); line-height: 1.8; max-width: 280px; }
