:root {
  --bg0: #07090f;
  --bg1: #10182a;
  --panel: rgba(18, 26, 44, 0.94);
  --line: rgba(120, 150, 210, 0.2);
  --text: #eef2ff;
  --muted: #9aa8c7;
  --accent: #2f6bff;
  --accent-2: #e23b3b;
  --danger: #c45c5c;
  --radius: 16px;
  --font-display: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Segoe UI", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(47, 107, 255, 0.28), transparent 60%),
    radial-gradient(700px 380px at 0% 100%, rgba(226, 59, 59, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

#app {
  max-width: 480px;
  margin: 0 auto;
  padding: 1.1rem 1rem 2.5rem;
  position: relative;
}

.hero {
  text-align: center;
  padding: 1.25rem 0.5rem 0.75rem;
  animation: rise 0.55s ease both;
}
.brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
}
.brand-mascot {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  margin: 0 auto 0.55rem;
  border-radius: 22px;
  background: #000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
.tagline {
  margin: 0.45rem 0 0;
  color: var(--muted);
}
.disclaimer {
  margin: 0.65rem auto 0;
  max-width: 34ch;
  font-size: 0.78rem;
  color: #8ea89a;
  line-height: 1.35;
}
.wp-link-wrap { margin: 0.85rem 0 0; }
.wp-btn {
  display: inline-block;
  background: transparent;
  color: var(--accent-2);
  border: 1px solid rgba(196, 163, 90, 0.45);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}
.wp-btn:active { transform: scale(0.98); }

.wp-page { padding-bottom: 2.4rem; }
.wp-hero { padding-bottom: 0.2rem; }
.wp-badge {
  display: inline-block;
  margin: 0.55rem 0 0;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffd28a;
  background: rgba(226, 59, 59, 0.16);
  border: 1px solid rgba(226, 59, 59, 0.35);
}
.wp-toc {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  margin: 0.9rem 0 0.85rem;
}
.wp-toc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.45rem 0.2rem;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
}
.wp-toc-item span {
  font-size: 0.78rem;
  color: var(--text);
}
.wp-toc-item.c-blue { border-color: rgba(47, 107, 255, 0.4); }
.wp-toc-item.c-cyan { border-color: rgba(34, 198, 211, 0.4); }
.wp-toc-item.c-gold { border-color: rgba(212, 168, 67, 0.45); }
.wp-toc-item.c-red { border-color: rgba(226, 59, 59, 0.4); }
.wp-toc-item.c-green { border-color: rgba(46, 180, 110, 0.4); }

.wp-sec {
  position: relative;
  margin-top: 0.85rem;
  padding: 1rem 1rem 1.1rem;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  animation: rise 0.5s ease both;
}
.wp-sec::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}
.wp-sec.c-blue::before { background: #2f6bff; }
.wp-sec.c-cyan::before { background: #22c6d3; }
.wp-sec.c-gold::before { background: #d4a843; }
.wp-sec.c-red::before { background: #e23b3b; }
.wp-sec.c-green::before { background: #2eb46e; }
.wp-sec.c-blue { box-shadow: inset 0 0 40px rgba(47, 107, 255, 0.06); }
.wp-sec.c-cyan { box-shadow: inset 0 0 40px rgba(34, 198, 211, 0.06); }
.wp-sec.c-gold { box-shadow: inset 0 0 40px rgba(212, 168, 67, 0.07); }
.wp-sec.c-red { box-shadow: inset 0 0 40px rgba(226, 59, 59, 0.06); }
.wp-sec.c-green { box-shadow: inset 0 0 40px rgba(46, 180, 110, 0.06); }

.wp-sec-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.wp-num {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
}
.wp-sec.c-blue .wp-num { background: #2f6bff; }
.wp-sec.c-cyan .wp-num { background: #1aa6b3; }
.wp-sec.c-gold .wp-num { background: #c4922d; }
.wp-sec.c-red .wp-num { background: #e23b3b; }
.wp-sec.c-green .wp-num { background: #2eb46e; }
.wp-sec-head h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
}
.wp-sec > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.wp-sub {
  margin: 1rem 0 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
}

.wp-split {
  display: grid;
  gap: 0.65rem;
}
.wp-card {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
}
.wp-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.88rem;
}
.wp-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.wp-card.vision { border-color: rgba(34, 198, 211, 0.35); }
.wp-card.vision h3 { color: #5ad7e0; }
.wp-card.mission { border-color: rgba(47, 107, 255, 0.35); }
.wp-card.mission h3 { color: #7ea4ff; }
.wp-card.lock { border-color: rgba(46, 180, 110, 0.4); }
.wp-card.lock h3 { color: #5fd49a; }
.wp-card.anti { border-color: rgba(212, 168, 67, 0.4); }
.wp-card.anti h3 { color: #e2c06a; }

.wp-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.wp-fact {
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.28);
}
.wp-fact.wide { grid-column: 1 / -1; }
.wp-fact span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-bottom: 0.2rem;
}
.wp-fact strong {
  font-size: 0.95rem;
  color: #f0d48a;
}

.wp-bars { display: grid; gap: 0.7rem; }
.wp-bar-top {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.82rem;
  margin-bottom: 0.3rem;
}
.wp-bar-top span {
  color: #f0d48a;
  font-weight: 800;
}
.wp-bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.wp-bar-track i {
  display: block;
  height: 100%;
  width: var(--pct);
  border-radius: inherit;
  background: linear-gradient(90deg, #d4a843, #e23b3b);
}
.wp-bar p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.wp-timeline {
  list-style: none;
  margin: 0.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  border-inline-start: 2px solid rgba(226, 59, 59, 0.28);
  padding-inline-start: 0.95rem;
}
.wp-timeline li {
  position: relative;
  padding: 0.8rem 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
}
.wp-timeline li::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(-0.95rem - 5px);
  top: 1.15rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e23b3b;
  box-shadow: 0 0 0 3px rgba(226, 59, 59, 0.2);
}
.wp-timeline .phase-1::before { background: #2f6bff; box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.25); }
.wp-timeline .phase-2::before { background: #d4a843; box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.25); }
.wp-timeline .phase-3::before { background: #e23b3b; box-shadow: 0 0 0 3px rgba(226, 59, 59, 0.25); }
.wp-timeline .phase-4::before { background: #2eb46e; box-shadow: 0 0 0 3px rgba(46, 180, 110, 0.25); }
.wp-phase-tag {
  display: inline-block;
  margin-bottom: 0.35rem;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.phase-1 .wp-phase-tag { color: #9bbbff; background: rgba(47, 107, 255, 0.18); }
.phase-2 .wp-phase-tag { color: #f0d48a; background: rgba(212, 168, 67, 0.18); }
.phase-3 .wp-phase-tag { color: #ff9b9b; background: rgba(226, 59, 59, 0.18); }
.phase-4 .wp-phase-tag { color: #8ee0b4; background: rgba(46, 180, 110, 0.18); }
.wp-timeline h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}
.wp-timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.wp-back {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 380px) {
  .wp-toc { grid-template-columns: repeat(3, 1fr); }
  .wp-toc-item:nth-child(4),
  .wp-toc-item:nth-child(5) { grid-column: span 1; }
}

.mine-panel {
  margin-top: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem 1.25rem;
  text-align: center;
  animation: rise 0.7s ease both;
}
.mine-label {
  color: var(--muted);
  font-size: 0.85rem;
}
.mine-rate {
  margin-top: 0.25rem;
  color: var(--accent-2);
  font-weight: 650;
  font-size: 0.92rem;
}
.tap-stage {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0.35rem auto 0.15rem;
  display: grid;
  place-items: center;
  --tap-power: 0;
}
.tap-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}
.tap-glow {
  position: absolute;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 107, 255, calc(0.08 + var(--tap-power) * 0.35)) 0%,
    rgba(226, 59, 59, calc(0.04 + var(--tap-power) * 0.28)) 42%,
    transparent 72%
  );
  filter: blur(calc(6px + var(--tap-power) * 14px));
  transform: scale(calc(1 + var(--tap-power) * 0.55));
  opacity: calc(0.25 + var(--tap-power) * 0.75);
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.tap-ring {
  position: absolute;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-shadow:
    0 0 0 1px rgba(47, 107, 255, calc(0.12 + var(--tap-power) * 0.55)),
    0 0 calc(8px + var(--tap-power) * 22px) rgba(47, 107, 255, calc(var(--tap-power) * 0.65)),
    0 0 calc(16px + var(--tap-power) * 36px) rgba(226, 59, 59, calc(var(--tap-power) * 0.45));
  opacity: calc(var(--tap-power) * 0.95);
  animation: tapRingPulse calc(1.6s - var(--tap-power) * 1.05s) ease-out infinite;
}
.tap-ring.r2 {
  width: 178px;
  height: 178px;
  animation-delay: 0.12s;
  opacity: calc(var(--tap-power) * 0.7);
}
.tap-ring.r3 {
  width: 200px;
  height: 200px;
  animation-delay: 0.24s;
  opacity: calc(var(--tap-power) * 0.45);
}
.tap-spin {
  position: absolute;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(47, 107, 255, calc(var(--tap-power) * 0.85)) 50deg,
    transparent 110deg,
    rgba(226, 59, 59, calc(var(--tap-power) * 0.75)) 180deg,
    transparent 240deg,
    rgba(47, 107, 255, calc(var(--tap-power) * 0.55)) 300deg,
    transparent 360deg
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  opacity: calc(var(--tap-power) * 0.9);
  animation: tapSpin calc(2.4s - var(--tap-power) * 1.8s) linear infinite;
  filter: blur(0.2px);
}
.tap-ripple {
  position: absolute;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  border: 2px solid rgba(47, 107, 255, 0.75);
  box-shadow: 0 0 18px rgba(226, 59, 59, 0.45);
  animation: tapRipple 0.65s ease-out forwards;
  pointer-events: none;
}
@keyframes tapRingPulse {
  0% { transform: scale(1); opacity: calc(var(--tap-power) * 0.9); }
  70% { transform: scale(calc(1 + 0.08 + var(--tap-power) * 0.12)); opacity: calc(var(--tap-power) * 0.35); }
  100% { transform: scale(calc(1 + 0.14 + var(--tap-power) * 0.18)); opacity: 0; }
}
@keyframes tapSpin {
  to { transform: rotate(360deg); }
}
@keyframes tapRipple {
  from { transform: scale(1); opacity: 0.85; }
  to { transform: scale(1.55); opacity: 0; }
}
.tap-btn {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 156px;
  height: 156px;
  border: 3px solid rgba(47, 107, 255, calc(0.4 + var(--tap-power) * 0.55));
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.45),
    0 0 calc(10px + var(--tap-power) * 28px) rgba(47, 107, 255, calc(0.15 + var(--tap-power) * 0.55)),
    0 0 calc(18px + var(--tap-power) * 40px) rgba(226, 59, 59, calc(var(--tap-power) * 0.4)),
    inset 0 0 calc(12px + var(--tap-power) * 20px) rgba(47, 107, 255, calc(var(--tap-power) * 0.25));
  transition: transform 0.08s ease, border-color 0.12s ease, box-shadow 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.tap-btn:active,
.tap-btn.is-hit {
  transform: scale(0.94);
}
.tap-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.tap-stage.is-empty .tap-aura {
  opacity: 0.15;
}
.tap-mascot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  pointer-events: none;
  display: block;
}
.tap-orb {
  display: none;
}
.mine-counter {
  margin: 0.35rem 0 0.15rem;
  font-size: clamp(1.6rem, 7vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.mine-sub {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
}
.energy-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin: 0 auto 0.55rem;
  max-width: 220px;
}
.energy-fill {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f6bff, #e23b3b);
  transition: width 0.2s ease;
}
.mine-panel .primary { width: 100%; }
.hidden, [hidden] { display: none !important; }

.tap-float {
  position: absolute;
  left: 50%;
  pointer-events: none;
  color: #c4a35a;
  font-weight: 700;
  font-size: 0.95rem;
  animation: tapFloat 0.7s ease forwards;
  z-index: 5;
}
@keyframes tapFloat {
  from { opacity: 1; transform: translate(-50%, 0); }
  to { opacity: 0; transform: translate(-50%, -42px); }
}
.mine-panel { position: relative; }

.balance-panel {
  margin-top: 1rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  text-align: center;
  animation: rise 0.65s ease both;
}
.balance-label { color: var(--muted); font-size: 0.85rem; }
.balance-value {
  font-size: 2rem;
  font-weight: 750;
  margin-top: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.balance-value #balanceValue {
  display: inline-block;
  transition: transform 0.18s ease, color 0.18s ease;
}
.balance-value #balanceValue.bal-pulse {
  animation: balPulse 0.45s ease;
}
@keyframes balPulse {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-3px) scale(1.06); color: #ffd28a; }
  100% { transform: translateY(0) scale(1); }
}
.balance-value small { font-size: 0.85rem; color: var(--accent-2); font-weight: 600; }
.balance-usdt {
  margin-top: 0.35rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #7ddeb4;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}
.balance-rate {
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.user-line { margin-top: 0.45rem; color: var(--muted); font-size: 0.9rem; }

.pool-panel {
  margin-top: 0.85rem;
  background: linear-gradient(160deg, rgba(18,28,48,0.98), rgba(10,14,24,0.98));
  border: 1px solid rgba(47,107,255,0.28);
  border-radius: 18px;
  padding: 0.95rem 1rem 1.05rem;
  position: relative;
  overflow: hidden;
  animation: rise 0.6s ease both;
  box-shadow: inset 0 0 40px rgba(47,107,255,0.08), 0 10px 28px rgba(0,0,0,0.25);
}
.pool-panel::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(226,59,59,0.22), transparent 70%);
  pointer-events: none;
}
.pool-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.pool-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff8f8f;
}
.pool-title {
  margin: 0.15rem 0 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text);
}
.pool-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(226,59,59,0.14);
  border: 1px solid rgba(226,59,59,0.35);
  color: #ff9b9b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.pool-live em { font-style: normal; }
.pool-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e23b3b;
  box-shadow: 0 0 0 0 rgba(226,59,59,0.7);
  animation: poolLivePulse 1.4s ease-out infinite;
}
@keyframes poolLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(226,59,59,0.65); }
  70% { box-shadow: 0 0 0 8px rgba(226,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(226,59,59,0); }
}
.pool-track {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(140,170,210,0.18);
  overflow: hidden;
  z-index: 1;
}
.pool-fill {
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f6bff 0%, #6a8cff 40%, #e23b3b 100%);
  box-shadow: 0 0 18px rgba(47,107,255,0.45);
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}
.pool-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: poolShine 2.4s linear infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
@keyframes poolShine {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}
.pool-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.7rem;
  position: relative;
  z-index: 1;
}
.pool-stat span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.pool-stat strong {
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  color: #eef3ff;
}
.pool-stat.right { text-align: end; }
.pool-stat.right strong { color: #ffb4b4; }
.pool-sub {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  position: relative;
  z-index: 1;
}


.actions {
  margin-top: 1rem;
  text-align: center;
  animation: rise 0.75s ease both;
}
button {
  font: inherit;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  padding: 0.85rem 1.2rem;
}
button:disabled { opacity: 0.45; cursor: not-allowed; }
.primary {
  width: 100%;
  background: linear-gradient(135deg, #2f6bff, #1e4ec4);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.primary:not(:disabled):active { transform: scale(0.98); }
.secondary {
  background: #1a2438;
  color: var(--text);
  border: 1px solid var(--line);
}
.hint { color: var(--muted); font-size: 0.85rem; margin: 0.55rem 0 0; }

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin: 1.25rem 0 0.75rem;
}
.tab {
  background: transparent;
  color: var(--muted);
  border: 1px solid transparent;
  padding: 0.6rem 0.25rem;
  font-size: 0.82rem;
}
.tab.active {
  color: var(--text);
  background: rgba(47, 107, 255, 0.14);
  border-color: var(--line);
}

.tab-panel { display: none; animation: fade 0.25s ease; }
.tab-panel.active { display: block; }
.tab-panel h2 {
  font-size: 1.05rem;
  margin: 0.4rem 0 0.75rem;
  font-weight: 650;
}

.list { display: flex; flex-direction: column; gap: 0.65rem; }
.item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  display: grid;
  gap: 0.45rem;
}
.item-title { font-weight: 650; }
.item-desc { color: var(--muted); font-size: 0.85rem; }
.item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.reward { color: var(--accent-2); font-weight: 650; font-size: 0.9rem; }
.item button { padding: 0.45rem 0.75rem; font-size: 0.85rem; }

.leader-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: visible;
}
.leader-item.is-me {
  border-color: rgba(47, 107, 255, 0.45);
}
.leader-meta {
  min-width: 0;
}
.leader-name {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
  min-width: 0;
}
.leader-rank {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
}
.leader-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.leader-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2438, #0d121c);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  font-weight: 800;
  font-size: 1.05rem;
  color: #d7e3ff;
}
.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leader-avatar.is-fallback {
  background: linear-gradient(145deg, #24324d, #121826);
}
.leader-beam {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}
.leader-medal {
  position: absolute;
  right: -4px;
  bottom: -4px;
  z-index: 3;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #1a1208;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

/* #1 — strongest gold beam */
.leader-top-1 {
  border-color: rgba(255, 196, 70, 0.45);
  background:
    radial-gradient(120% 80% at 0% 50%, rgba(255, 196, 70, 0.16), transparent 55%),
    var(--panel);
  box-shadow: 0 0 24px rgba(255, 180, 40, 0.18);
}
.leader-top-1 .leader-beam {
  opacity: 1;
  background: conic-gradient(from 0deg, #ffe08a, #ff9f1a, #fff3c4, #ffb020, #ffe08a);
  filter: blur(1px);
  animation: leaderSpin 2.8s linear infinite;
  box-shadow: 0 0 18px rgba(255, 190, 60, 0.85), 0 0 36px rgba(255, 160, 20, 0.4);
}
.leader-top-1 .leader-avatar-wrap {
  animation: leaderPulse1 1.6s ease-in-out infinite alternate;
}
.leader-top-1 .leader-avatar {
  border-color: rgba(255, 220, 120, 0.85);
  box-shadow: 0 0 14px rgba(255, 190, 50, 0.55);
}
.leader-top-1 .leader-medal {
  background: linear-gradient(145deg, #ffe59a, #f0a820);
  color: #3a2808;
}
.leader-top-1 .leader-rank { color: #ffd27a; }

/* #2 — silver beam */
.leader-top-2 {
  border-color: rgba(190, 210, 235, 0.35);
  background:
    radial-gradient(120% 80% at 0% 50%, rgba(180, 200, 230, 0.12), transparent 55%),
    var(--panel);
  box-shadow: 0 0 18px rgba(170, 190, 220, 0.12);
}
.leader-top-2 .leader-beam {
  opacity: 1;
  background: conic-gradient(from 40deg, #f4f7fb, #9aadc4, #e8eef6, #b7c6d8, #f4f7fb);
  filter: blur(0.8px);
  animation: leaderSpin 3.6s linear infinite;
  box-shadow: 0 0 12px rgba(200, 215, 235, 0.55), 0 0 22px rgba(150, 170, 200, 0.25);
}
.leader-top-2 .leader-avatar-wrap {
  animation: leaderPulse2 1.8s ease-in-out infinite alternate;
}
.leader-top-2 .leader-avatar {
  border-color: rgba(220, 230, 245, 0.7);
  box-shadow: 0 0 10px rgba(180, 200, 230, 0.4);
}
.leader-top-2 .leader-medal {
  background: linear-gradient(145deg, #f2f5f8, #a8b6c8);
  color: #243040;
}
.leader-top-2 .leader-rank { color: #c9d6e8; }

/* #3 — bronze beam */
.leader-top-3 {
  border-color: rgba(210, 140, 90, 0.35);
  background:
    radial-gradient(120% 80% at 0% 50%, rgba(210, 130, 70, 0.1), transparent 55%),
    var(--panel);
  box-shadow: 0 0 14px rgba(200, 120, 60, 0.1);
}
.leader-top-3 .leader-beam {
  opacity: 1;
  background: conic-gradient(from 80deg, #f0c09a, #b86a35, #e8b088, #c67a42, #f0c09a);
  filter: blur(0.6px);
  animation: leaderSpin 4.4s linear infinite;
  box-shadow: 0 0 10px rgba(210, 130, 70, 0.45), 0 0 16px rgba(180, 100, 40, 0.2);
}
.leader-top-3 .leader-avatar-wrap {
  animation: leaderPulse3 2s ease-in-out infinite alternate;
}
.leader-top-3 .leader-avatar {
  border-color: rgba(230, 170, 120, 0.65);
  box-shadow: 0 0 8px rgba(200, 120, 60, 0.35);
}
.leader-top-3 .leader-medal {
  background: linear-gradient(145deg, #e8b07a, #b06a35);
  color: #2e1a0c;
}
.leader-top-3 .leader-rank { color: #e0a878; }

@keyframes leaderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes leaderPulse1 {
  from { filter: drop-shadow(0 0 4px rgba(255, 190, 50, 0.35)); }
  to { filter: drop-shadow(0 0 14px rgba(255, 190, 50, 0.9)); }
}
@keyframes leaderPulse2 {
  from { filter: drop-shadow(0 0 3px rgba(180, 200, 230, 0.25)); }
  to { filter: drop-shadow(0 0 10px rgba(180, 200, 230, 0.65)); }
}
@keyframes leaderPulse3 {
  from { filter: drop-shadow(0 0 2px rgba(210, 130, 70, 0.2)); }
  to { filter: drop-shadow(0 0 8px rgba(210, 130, 70, 0.55)); }
}

.ref-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
}
.ref-box code {
  word-break: break-all;
  font-size: 0.82rem;
  color: #cfe6d8;
}

.energy-cards {
  margin-top: 1rem;
}
.energy-cards-title {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}
.energy-cards-grid {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.65rem;
}
.energy-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
}
.energy-card.silver { border-color: rgba(47, 107, 255, 0.4); }
.energy-card.gold { border-color: rgba(212, 168, 67, 0.45); }
.energy-card.active {
  box-shadow: inset 0 0 0 1px rgba(46, 180, 110, 0.45);
}
.energy-card.locked { opacity: 0.78; }
.energy-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.energy-card-top strong { font-size: 0.95rem; }
.energy-card-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.energy-card.active .energy-card-badge {
  color: #8ee0b4;
  background: rgba(46, 180, 110, 0.18);
}
.energy-card.unlocked:not(.active) .energy-card-badge {
  color: #9bbbff;
  background: rgba(47, 107, 255, 0.18);
}
.energy-card-desc {
  margin: 0.45rem 0 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}
.energy-card-progress {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.energy-card-progress i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f6bff, #e23b3b);
}
.energy-card.gold .energy-card-progress i {
  background: linear-gradient(90deg, #d4a843, #e23b3b);
}
.energy-card-meta {
  margin: 0.4rem 0 0.65rem;
  font-size: 0.78rem;
  color: var(--muted);
}
.energy-card-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #2f6bff, #1e4ec4);
  color: #fff;
}
.energy-card.gold .energy-card-btn {
  background: linear-gradient(135deg, #d4a843, #b07820);
}
.energy-card-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
#energyCardTimer {
  margin-top: 0.55rem;
  color: #8ee0b4;
  font-weight: 650;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  background: #1c2c24;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  z-index: 20;
  max-width: 90vw;
}
.toast.hidden { display: none; }
.toast.error { border-color: var(--danger); }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pool-panel.pool-low .pool-fill {
  background: linear-gradient(90deg, #e23b3b, #ff8f3b);
}
.pool-panel.pool-empty .pool-fill {
  width: 0% !important;
  opacity: 0.35;
}

.wallet-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  display: grid;
  gap: 0.75rem;
}
.wallet-balances { gap: 0.55rem; }
.wallet-mined-block {
  display: grid;
  gap: 0.55rem;
}
.wallet-bal-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.wallet-bal-value {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.wallet-bal-value small {
  font-size: 0.8rem;
  color: var(--accent-2);
  font-weight: 600;
}
.wallet-bal-total {
  font-size: 1.55rem;
}
.wallet-bal-divider {
  height: 1px;
  background: var(--line);
  margin: 0.25rem 0;
}
.wallet-fx {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.wallet-fx-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(7, 9, 15, 0.55);
  border: 1px solid rgba(120, 150, 210, 0.12);
  font-size: 0.9rem;
}
.wallet-fx-row span { color: var(--muted); }
.wallet-fx-row strong { color: #7ddeb4; font-variant-numeric: tabular-nums; }
.wallet-transfer-btn,
#walletTransferBtn {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 12px;
}
.wallet-transfer-amount input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(7, 9, 15, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  outline: none;
}
.wallet-transfer-amount input:focus {
  border-color: rgba(47, 107, 255, 0.55);
}
#walletTransferBtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.wallet-field {
  display: grid;
  gap: 0.35rem;
}
.wallet-field span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.wallet-field input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(7, 9, 15, 0.85);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  outline: none;
}
.wallet-field input:focus {
  border-color: rgba(47, 107, 255, 0.55);
}
.wallet-field input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.wallet-dest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}
.wallet-dest-btn {
  background: rgba(7, 9, 15, 0.85);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.55rem;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.wallet-dest-btn:active {
  transform: scale(0.98);
}
.wallet-dest-btn.is-selected,
.wallet-dest-btn[aria-pressed="true"] {
  border-color: rgba(47, 107, 255, 0.7);
  background: rgba(47, 107, 255, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(47, 107, 255, 0.25);
}
.wallet-address-wrap.is-locked .wallet-address-hint {
  display: block;
}
.wallet-address-hint {
  display: none;
  margin: 0;
  font-style: normal;
  font-size: 0.78rem;
  color: #ffb4b4;
}
.wallet-withdraw-locked {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.25);
}
.wallet-lock-note {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.ton-connect-box {
  margin-bottom: 0.85rem;
  border-color: rgba(0, 136, 204, 0.35);
  background: linear-gradient(160deg, rgba(8, 28, 42, 0.98), rgba(10, 14, 24, 0.98));
}
.ton-connect-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.ton-connect-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6ec8ff;
}
.ton-connect-title {
  margin: 0.15rem 0 0;
  font-size: 1.02rem;
  font-weight: 800;
}
.ton-connect-badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
}
.ton-connect-badge.is-on {
  color: #7ddeb4;
  border-color: rgba(125, 222, 180, 0.35);
  background: rgba(47, 158, 107, 0.15);
}
.ton-address {
  margin: 0.55rem 0 0;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--line);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  word-break: break-all;
  color: #cfe8ff;
}
.ton-address.hidden { display: none; }
.ton-connect-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.ton-connect-actions .secondary.hidden { display: none; }
.ton-connect-root { display: none; }

/* Daily puzzle */
.puzzle-card {
  position: relative;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 210, 70, 0.55);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(70, 48, 8, 0.95), rgba(28, 22, 10, 0.98));
  color: #ffe9a8;
  overflow: hidden;
  cursor: pointer;
  text-align: start;
  box-shadow: 0 0 22px rgba(255, 190, 40, 0.35), inset 0 0 20px rgba(255, 220, 100, 0.08);
  animation: puzzleGlow 1.8s ease-in-out infinite alternate;
}
.puzzle-card.hidden { display: none !important; }
.puzzle-card-glow {
  position: absolute;
  inset: -40% auto auto 20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 220, 80, 0.35), transparent 70%);
  pointer-events: none;
}
.puzzle-card-label {
  display: block;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #ffe08a;
  position: relative;
  z-index: 1;
}
.puzzle-card-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: rgba(255, 230, 170, 0.75);
  position: relative;
  z-index: 1;
}
@keyframes puzzleGlow {
  from { box-shadow: 0 0 14px rgba(255, 180, 30, 0.25), inset 0 0 12px rgba(255, 220, 100, 0.05); }
  to { box-shadow: 0 0 28px rgba(255, 200, 50, 0.55), inset 0 0 22px rgba(255, 220, 100, 0.12); }
}

.puzzle-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: end center;
  padding: 0;
}
.puzzle-modal.hidden { display: none !important; }
.puzzle-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 12, 0.72);
  backdrop-filter: blur(4px);
}
.puzzle-modal-sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  margin: 0 auto;
  border-radius: 22px 22px 0 0;
  padding: 1.15rem 1.1rem 1.4rem;
  background: linear-gradient(180deg, #1a1430 0%, #0c101c 55%, #090d16 100%);
  border: 1px solid rgba(255, 200, 80, 0.28);
  border-bottom: 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  animation: puzzleSheetIn 0.28s ease;
}
@keyframes puzzleSheetIn {
  from { transform: translateY(24px); opacity: 0.6; }
  to { transform: translateY(0); opacity: 1; }
}
.puzzle-modal-close {
  position: absolute;
  top: 0.55rem;
  inset-inline-end: 0.65rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.puzzle-modal-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd36a;
}
.puzzle-modal-title {
  margin: 0.35rem 0 0.45rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.puzzle-modal-hint {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  min-height: 1.1em;
}
.puzzle-modal-reward {
  margin: 0 0 0.85rem;
  color: #7ddeb4;
  font-weight: 700;
  font-size: 0.92rem;
}
.puzzle-bank, .puzzle-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin-bottom: 0.85rem;
  min-height: 2.6rem;
}
.puzzle-tile {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 210, 100, 0.35);
  background: linear-gradient(160deg, #3a2a10, #1a140a);
  color: #ffe7a8;
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  transition: transform 0.12s ease, opacity 0.12s ease;
}
.puzzle-tile:active { transform: scale(0.94); }
.puzzle-tile.is-used {
  opacity: 0.25;
  pointer-events: none;
}
.puzzle-slot {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 10px;
  border: 1.5px dashed rgba(120, 160, 255, 0.45);
  background: rgba(20, 30, 55, 0.65);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.puzzle-slot.is-filled {
  border-style: solid;
  border-color: rgba(90, 140, 255, 0.65);
  background: rgba(47, 107, 255, 0.22);
}
.puzzle-solve-btn { width: 100%; }
.puzzle-modal-note {
  margin: 0.65rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
}
.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.confetti-canvas.hidden { display: none !important; }

/* —— Airdrop timer + falling parachutes —— */
.airdrop-timer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(90, 170, 255, 0.35);
  background:
    linear-gradient(135deg, rgba(40, 110, 220, 0.28), rgba(20, 40, 80, 0.55));
  box-shadow: 0 8px 24px rgba(20, 60, 140, 0.25);
  animation: rise 0.45s ease both;
}
.airdrop-timer.is-dropping {
  border-color: rgba(120, 200, 255, 0.65);
  box-shadow: 0 0 20px rgba(60, 140, 255, 0.35);
}
.airdrop-timer-icon {
  width: 40px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(20, 80, 180, 0.35));
}
.airdrop-timer-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.airdrop-timer-label {
  font-size: 0.78rem;
  color: #b8d4ff;
  line-height: 1.25;
}
.airdrop-timer-count {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.airdrop-layer {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  overflow: hidden;
}
.airdrop-chute {
  position: absolute;
  top: -110px;
  width: 78px;
  height: auto;
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
  border: 0;
  background: transparent;
  padding: 0;
  animation: airdropFall linear forwards;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  filter: drop-shadow(0 6px 10px rgba(10, 40, 120, 0.35));
}
.airdrop-chute.is-claimed,
.airdrop-chute.is-gone {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: scale(0.6);
}
.airdrop-chute img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
@keyframes airdropFall {
  0% { transform: translate3d(0, 0, 0) rotate(-5deg); opacity: 0; }
  8% { opacity: 1; }
  100% { transform: translate3d(var(--drift, 18px), 115vh, 0) rotate(7deg); opacity: 0.95; }
}

