:root {
  --bg: #070707;
  --card: rgba(255,255,255,.055);
  --line: rgba(255,255,255,.11);
  --muted: #8b8b8b;
  --yellow: #ffd500;
  --pink: #ff006e;
  --green: #63ff8a;
  --red: #ff4a4a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,0,110,.18), transparent 30%),
    radial-gradient(circle at 88% 0%, rgba(255,213,0,.16), transparent 28%),
    var(--bg);
  color: white;
  overflow-x: hidden;
}

button, input, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
button:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none !important;
}

.shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; gap: 18px;
}

.logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 24px; letter-spacing: -1px;
}
.logo span { color: var(--yellow); }

.live-pill {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  padding: 10px 14px;
  color: #cfcfcf;
  font-size: 12px;
  display: flex; gap: 8px; align-items: center;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }

.hero {
  text-align: center;
  padding: 34px 0 28px;
}
.kicker {
  display: inline-block;
  color: #c4c4c4;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
h1 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(54px, 9vw, 128px);
  line-height: .86;
  letter-spacing: -6px;
  text-transform: uppercase;
}
h1 .yellow {
  color: var(--yellow);
  text-shadow: 7px 7px 0 var(--pink);
}
.hero p {
  color: #a2a2a2;
  max-width: 760px;
  margin: 26px auto 0;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}
.hero strong { color: white; }

.status-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.status-box {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 20px;
  padding: 18px;
  text-align: left;
}
.status-label {
  color: #6f6f6f;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 10px;
  font-weight: 800;
}
.status-value {
  margin-top: 7px;
  font-size: 22px;
  font-weight: 900;
}
.status-sub { margin-top: 5px; color: #7e7e7e; font-size: 12px; }

.damage-card {
  margin-top: 18px;
  border: 1px solid rgba(255,213,0,.28);
  background: linear-gradient(135deg, rgba(255,213,0,.1), rgba(255,0,110,.08));
  border-radius: 26px;
  padding: 22px;
  text-align: left;
}
.damage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.damage-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.leaderboard-wrap { margin-top: 20px; }
.leaderboard {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.leader-head {
  display: grid;
  grid-template-columns: 78px 1.15fr 1.1fr 140px 130px;
  gap: 12px;
  padding: 14px 20px;
  color: #676767;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1.4px;
  border-bottom: 1px solid var(--line);
}
.leader-row {
  display: grid;
  grid-template-columns: 78px 1.15fr 1.1fr 140px 130px;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: .18s ease;
  position: relative;
}
.leader-row:hover { background: rgba(255,255,255,.03); }
.leader-row:last-child { border-bottom: 0; }
.leader-row.you {
  outline: 1px solid rgba(255,213,0,.45);
  background: rgba(255,213,0,.08);
}

/* TOP 3 — loud, cringe, unmissable */
.leader-row.top1,
.leader-row.top2,
.leader-row.top3 {
  padding: 22px 20px;
  border-bottom-width: 2px;
}
.leader-row.top1 {
  background:
    linear-gradient(90deg, rgba(255,213,0,.28), rgba(255,0,110,.08) 55%, transparent);
  box-shadow: inset 4px 0 0 var(--yellow);
  animation: thronePulse 2.4s ease-in-out infinite;
}
.leader-row.top2 {
  background: linear-gradient(90deg, rgba(200,210,230,.18), transparent 60%);
  box-shadow: inset 4px 0 0 #c0c7d4;
}
.leader-row.top3 {
  background: linear-gradient(90deg, rgba(205,127,50,.2), transparent 60%);
  box-shadow: inset 4px 0 0 #cd7f32;
}
@keyframes thronePulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

.rank {
  font-family: "Archivo Black", sans-serif;
  font-size: 19px;
  color: #666;
  display: grid;
  gap: 4px;
  justify-items: start;
}
.rank.gold { color: var(--yellow); text-shadow: 2px 2px 0 var(--pink); font-size: 26px; }
.rank.silver { color: #d7dde8; font-size: 23px; }
.rank.bronze { color: #e0a066; font-size: 22px; }
.podium-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 6px;
  transform: rotate(-3deg);
}
.podium-tag.gold {
  background: var(--yellow);
  color: #050505;
  box-shadow: 3px 3px 0 var(--pink);
}
.podium-tag.silver {
  background: #e8edf5;
  color: #222;
}
.podium-tag.bronze {
  background: #cd7f32;
  color: #120800;
}

.person { display: flex; align-items: center; gap: 14px; min-width: 0; }
.avatar-wrap {
  position: relative;
  flex: 0 0 auto;
}
.avatar {
  width: 64px; height: 64px; border-radius: 18px;
  object-fit: cover; border: 2px solid rgba(255,255,255,.22);
  background: #171717;
  display: block;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}
.avatar.placeholder {
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #888;
  font-size: 18px;
  width: 64px; height: 64px;
}
.leader-row.top1 .avatar,
.leader-row.top1 .avatar.placeholder {
  width: 92px; height: 92px; border-radius: 24px;
  border: 3px solid var(--yellow);
  box-shadow:
    0 0 0 4px rgba(255,0,110,.35),
    0 16px 40px rgba(255,213,0,.25);
  transform: rotate(-2deg);
}
.leader-row.top2 .avatar,
.leader-row.top2 .avatar.placeholder {
  width: 80px; height: 80px; border-radius: 22px;
  border: 3px solid #cfd6e2;
  box-shadow: 0 12px 32px rgba(180,190,210,.2);
  transform: rotate(1.5deg);
}
.leader-row.top3 .avatar,
.leader-row.top3 .avatar.placeholder {
  width: 76px; height: 76px; border-radius: 20px;
  border: 3px solid #cd7f32;
  box-shadow: 0 12px 30px rgba(205,127,50,.22);
  transform: rotate(-1deg);
}
.crown-badge {
  position: absolute;
  top: -14px;
  right: -10px;
  font-size: 26px;
  filter: drop-shadow(0 4px 0 rgba(255,0,110,.55));
  animation: crownBob 1.6s ease-in-out infinite;
  z-index: 2;
}
.medal-badge {
  position: absolute;
  top: -10px;
  right: -8px;
  font-size: 22px;
  z-index: 2;
}
@keyframes crownBob {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-4px) rotate(6deg); }
}

.name {
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}
.leader-row.top1 .name {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(20px, 3vw, 28px);
  letter-spacing: -1px;
  color: var(--yellow);
  text-shadow: 3px 3px 0 var(--pink);
}
.leader-row.top2 .name,
.leader-row.top3 .name {
  font-size: 18px;
}
.tiny { color: #6d6d6d; font-size: 11px; margin-top: 3px; }
.leader-row.top1 .tiny,
.leader-row.top2 .tiny,
.leader-row.top3 .tiny {
  color: #bdbdbd;
  font-weight: 700;
}
.plug { color: #cfcfcf; font-size: 13px; line-height: 1.4; }
.plug a { color: var(--yellow); font-weight: 800; }
.amount { font-weight: 900; color: var(--yellow); font-size: 18px; }
.leader-row.top1 .amount {
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0 rgba(255,0,110,.55);
}
.leader-row.top2 .amount,
.leader-row.top3 .amount {
  font-size: 22px;
}
.action-btn {
  border: 0;
  background: white;
  color: black;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  transition: .18s ease;
}
.action-btn:hover:not(:disabled) { transform: translateY(-2px); background: var(--yellow); }
.leader-row.top1 .action-btn {
  background: linear-gradient(90deg, var(--pink), #ff5a00);
  color: white;
  padding: 12px 14px;
  font-size: 12px;
  box-shadow: 0 10px 28px rgba(255,0,110,.3);
  transform: rotate(-1deg);
}
.leader-row.top1 .action-btn:hover:not(:disabled) {
  background: var(--yellow);
  color: #050505;
  transform: translateY(-2px) rotate(0deg);
}

.attack-card {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 16px;
  align-items: stretch;
}
.attack-main, .attack-side {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  padding: 26px;
}
.eyebrow {
  color: var(--pink); font-size: 11px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase;
}
.attack-main h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  line-height: .95; letter-spacing: -2px; margin: 10px 0 0;
}
.attack-main p { color: #8a8a8a; line-height: 1.6; margin: 14px 0 0; max-width: 680px; }
.big-cta {
  margin-top: 22px;
  border: 0;
  border-radius: 16px;
  padding: 16px 20px;
  background: linear-gradient(90deg, var(--pink), #ff5a00);
  color: white;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 14px 40px rgba(255,0,110,.22);
}
.rank-targets { display: grid; gap: 10px; margin-top: 14px; }
.rank-target {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
}
.rank-target:last-child { border-bottom: 0; }
.rank-target strong { color: var(--yellow); }

section { margin: 95px auto; }
.section-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(38px, 6vw, 74px);
  line-height: .95; letter-spacing: -3px; margin: 10px 0 0;
  max-width: 850px;
}
.section-copy { color: #858585; max-width: 680px; margin-top: 18px; line-height: 1.6; }

.steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px;
}
.step {
  border: 1px solid var(--line);
  border-radius: 22px; padding: 22px;
  background: rgba(255,255,255,.03);
}
.step-num { color: var(--yellow); font-weight: 900; font-size: 12px; letter-spacing: 1px; }
.step h3 { margin: 10px 0 0; font-size: 20px; }
.step p { margin: 9px 0 0; color: #777; line-height: 1.55; font-size: 13px; }

.get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.get-col {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.03);
}
.get-col.yes { border-color: rgba(99,255,138,.25); background: rgba(99,255,138,.05); }
.get-col.no { border-color: rgba(255,74,74,.28); background: rgba(255,74,74,.06); }
.get-heading {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.get-col.yes .get-heading { color: var(--green); }
.get-col.no .get-heading { color: var(--red); }
.get-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.get-list li {
  position: relative;
  padding-left: 28px;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}
.get-col.yes .get-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.get-col.no .get-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.faq {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255,255,255,.03);
}
.faq-item h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}
.faq-item p {
  margin: 8px 0 0;
  color: #858585;
  font-size: 14px;
  line-height: 1.55;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin: 82px 0;
  transform: rotate(-1.5deg) scale(1.02);
  background: var(--yellow);
  color: #050505;
}
.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  padding: 13px 0;
  animation: marquee 18s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

footer {
  border-top: 1px solid rgba(255,255,255,.08);
  color: #5d5d5d; padding: 28px 0 50px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12px;
}

.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.78);
  display: none; place-items: center; padding: 20px; z-index: 100;
  backdrop-filter: blur(10px);
}
.modal.open { display: grid; }
.modal-card {
  width: min(720px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 40px 140px rgba(0,0,0,.6);
}
.modal-top {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.modal-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
}
.close-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  background: #151515; color: white; cursor: pointer; font-weight: 900;
}

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 22px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: #9a9a9a; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #141414;
  color: white;
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}
input:focus, textarea:focus { border-color: rgba(255,213,0,.55); }
textarea { min-height: 95px; resize: vertical; }
.photo-preview {
  width: 72px; height: 72px; object-fit: cover; border-radius: 18px;
  border: 1px solid var(--line); background: #171717;
  display: none; margin-top: 8px;
}
.field-error {
  color: var(--red);
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.field-error.show { display: block; }

.rank-preview {
  border: 1px solid rgba(255,213,0,.25);
  background: rgba(255,213,0,.07);
  border-radius: 18px; padding: 15px;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  margin-top: 16px;
}
.rank-preview strong { color: var(--yellow); font-size: 20px; }

.check {
  display: flex; gap: 10px; align-items: flex-start; margin-top: 16px; color: #777; font-size: 12px; line-height: 1.5;
}
.check input { width: auto; margin-top: 2px; }

.pay-submit {
  width: 100%; margin-top: 16px; border: 0; border-radius: 15px; padding: 16px;
  background: linear-gradient(90deg, var(--pink), #ff5500);
  color: white; font-weight: 900; cursor: pointer; font-size: 16px;
}
.small-note { margin-top: 11px; color: #616161; font-size: 11px; line-height: 1.5; }
.pay-status {
  margin-top: 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  min-height: 1.2em;
}

.upi-step { margin-top: 18px; text-align: center; }
.upi-amount {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  color: var(--yellow);
  letter-spacing: -1px;
}
.upi-id { margin-top: 8px; color: #bdbdbd; font-weight: 700; font-size: 14px; }
.upi-qr {
  width: min(280px, 100%);
  margin: 18px auto 0;
  border-radius: 18px;
  border: 2px solid var(--line);
  background: white;
  display: block;
}
.upi-hint {
  margin: 14px auto 0;
  max-width: 420px;
  color: #888;
  font-size: 13px;
  line-height: 1.5;
}
.upi-step .field { text-align: left; margin-top: 16px; }

.toast {
  position: fixed; right: 18px; bottom: 18px;
  background: white; color: #050505; border-radius: 14px;
  padding: 14px 16px; font-weight: 900;
  transform: translateY(120px); opacity: 0; transition: .25s ease; z-index: 120;
  max-width: min(360px, calc(100vw - 36px));
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-sub {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 12px;
  color: #444;
}

.board-tabs {
  margin: 18px 0 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tab-btn {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  color: #9a9a9a;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
  transition: .18s ease;
}
.tab-btn.active {
  background: var(--yellow);
  color: #050505;
  border-color: var(--yellow);
  transform: rotate(-1deg);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.recent-payments {
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.035);
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}
.recent-headline {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,0,110,.12), rgba(255,213,0,.05));
}
.recent-headline h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 26px;
  letter-spacing: -1px;
}
.recent-headline p {
  margin: 7px 0 0;
  color: #808080;
  font-size: 13px;
  line-height: 1.5;
}
.recent-row {
  display: grid;
  grid-template-columns: 50px 1fr 110px 110px;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .35s ease;
}
.recent-row:last-child { border-bottom: 0; }
.recent-row.highlight {
  background: rgba(255,213,0,.14);
  animation: pulseHighlight 1.4s ease 2;
}
@keyframes pulseHighlight {
  0%, 100% { background: rgba(255,213,0,.08); }
  50% { background: rgba(255,213,0,.22); }
}
.recent-amount {
  font-weight: 900;
  color: var(--yellow);
  text-align: right;
}
.recent-time {
  color: #686868;
  font-size: 11px;
  text-align: right;
}
.recent-message {
  color: #bcbcbc;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 3px;
}
.empty-state {
  padding: 36px 24px;
  text-align: center;
  color: #7a7a7a;
  font-size: 14px;
  line-height: 1.6;
}
.empty-state strong {
  display: block;
  color: #cfcfcf;
  font-size: 16px;
  margin-bottom: 8px;
}
.loading-row {
  padding: 28px 20px;
  color: #777;
  text-align: center;
  font-size: 13px;
}
.one-rupee-cta {
  margin-top: 14px;
  border: 1px dashed rgba(255,213,0,.4);
  background: rgba(255,213,0,.06);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.one-rupee-cta strong {
  font-size: 18px;
  display: block;
}
.one-rupee-cta span {
  color: #818181;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}
.one-rupee-btn {
  border: 0;
  border-radius: 14px;
  background: var(--yellow);
  color: #050505;
  padding: 13px 16px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.success-hero {
  text-align: center;
  padding: 10px 0 6px;
}
.success-hero .modal-title {
  margin-top: 8px;
}
.success-amount {
  margin-top: 18px;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 900;
  color: var(--yellow);
}
.success-rank-box {
  margin: 22px auto 0;
  max-width: 360px;
  border: 1px solid rgba(255,213,0,.3);
  background: rgba(255,213,0,.08);
  border-radius: 18px;
  padding: 18px;
}
.success-rank-box .status-value {
  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
  color: var(--yellow);
}
.success-copy {
  color: #9a9a9a;
  margin: 16px auto 0;
  max-width: 480px;
  line-height: 1.55;
  font-size: 14px;
}
.success-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.success-actions .pay-submit { margin-top: 0; }
.secondary-btn {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 14px;
  background: #151515;
  color: white;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 900px) {
  .leader-head { display: none; }
  .recent-row {
    grid-template-columns: 46px 1fr auto;
    grid-template-areas:
      "avatar person amount"
      "avatar person time";
  }
  .recent-row .avatar { grid-area: avatar; }
  .recent-row .recent-person { grid-area: person; }
  .recent-row .recent-amount { grid-area: amount; }
  .recent-row .recent-time { grid-area: time; }
  .one-rupee-cta { align-items: flex-start; flex-direction: column; }
  .one-rupee-btn { width: 100%; }
      .leader-row {
        grid-template-columns: 64px 1fr auto;
        grid-template-areas:
          "rank person amount"
          "rank plug action";
      }
      .leader-row .rank { grid-area: rank; }
      .leader-row .person { grid-area: person; }
      .leader-row .plug { grid-area: plug; }
      .leader-row .amount { grid-area: amount; }
      .leader-row .action-btn { grid-area: action; }
      .leader-row.top1 .avatar,
      .leader-row.top1 .avatar.placeholder { width: 78px; height: 78px; }
      .leader-row.top2 .avatar,
      .leader-row.top2 .avatar.placeholder,
      .leader-row.top3 .avatar,
      .leader-row.top3 .avatar.placeholder { width: 70px; height: 70px; }
  .attack-card { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .get-grid { grid-template-columns: 1fr; }
  .status-strip, .damage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  h1 { letter-spacing: -3px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .leader-row {
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "rank person"
      "rank plug"
      "rank amount"
      "rank action";
    gap: 8px;
  }
  .action-btn { width: 100%; }
  .modal-card { padding: 18px; }
  header { flex-wrap: wrap; }
}
