:root {
  color-scheme: dark;
  --bg: #07101b;
  --bg-2: #0d1726;
  --panel: rgba(8, 16, 29, 0.92);
  --panel-2: rgba(10, 19, 33, 0.98);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f1e8;
  --muted: #9aa8bf;
  --gold: #d4b06d;
  --silver: #b8c6d7;
  --prismatic: #d6a6ff;
  --good: #7fe2b6;
  --bad: #ff9a86;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --card-radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(157, 112, 235, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(15, 21, 31, 0.75), rgba(5, 10, 18, 0.92)),
    url("https://raw.communitydragon.org/latest/game/assets/maps/map12/mapskins/base/particles/howlingabyssmap11_skybox.dds") center/cover no-repeat fixed,
    linear-gradient(180deg, #0a1320, #050a12);
}
button { font: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.app-shell {
  width: min(1080px, calc(100vw - 20px));
  margin: 0 auto;
  padding: 12px 0 42px;
}

.hero-card, .panel, .choice-card, .synergy-chip, .summary-card, .warning-modal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.simple-hero {
  padding: 14px 16px;
  margin-bottom: 12px;
}

.simple-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.simple-hero h1 {
  margin: 0 0 2px;
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: -0.02em;
}

.hero-desc,
.panel-subtitle,
.note,
.footer-note,
.choice-meta,
.synergy-chip span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-desc,
.panel-subtitle { margin: 0; font-size: 13px; }
.footer-note { margin-top: 8px; font-size: 12px; }

.panel {
  padding: 14px;
  margin-bottom: 12px;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-title {
  margin: 0;
  font-size: 20px;
}

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

.btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  transition: transform 0.16s ease, border-color 0.16s ease, opacity 0.16s ease;
}

.btn:hover { transform: translateY(-1px); border-color: var(--line-strong); }

.btn.primary {
  border-color: rgba(222, 190, 132, 0.4);
  background: linear-gradient(180deg, rgba(102, 143, 255, 0.95), rgba(61, 81, 179, 0.95));
}

.btn.small {
  min-height: 34px;
  padding: 0 10px;
  font-size: 12px;
}

.btn:disabled,
.icon-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.badge, .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}
.badge b { color: var(--text); }
.badge.tier-silver, .chip.tier-silver, .tier-silver { color: var(--silver); }
.badge.tier-gold, .chip.tier-gold, .tier-gold { color: var(--gold); }
.badge.tier-prismatic, .chip.tier-prismatic, .tier-prismatic { color: var(--prismatic); }
.chip.bad {
  color: var(--bad);
  border-color: rgba(255, 154, 134, 0.22);
  background: rgba(255, 154, 134, 0.08);
}

.progress-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.progress-step {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.progress-step.active {
  border-color: rgba(221, 182, 106, 0.38);
  background: rgba(221, 182, 106, 0.08);
}

.progress-step.tier-silver {
  border-color: rgba(184, 198, 215, 0.3);
  background: linear-gradient(180deg, rgba(184, 198, 215, 0.08), rgba(255,255,255,0.03));
  box-shadow: inset 0 0 0 1px rgba(184, 198, 215, 0.08);
}

.progress-step.tier-gold {
  border-color: rgba(212, 176, 109, 0.34);
  background: linear-gradient(180deg, rgba(212, 176, 109, 0.1), rgba(255,255,255,0.03));
  box-shadow: inset 0 0 0 1px rgba(212, 176, 109, 0.1);
}

.progress-step.tier-prismatic {
  border-color: rgba(214, 166, 255, 0.36);
  background: linear-gradient(180deg, rgba(214, 166, 255, 0.12), rgba(255,255,255,0.03));
  box-shadow: inset 0 0 0 1px rgba(214, 166, 255, 0.12);
}

.progress-step small {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 11px;
}

.progress-step strong { font-size: 13px; }

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

.choice-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 24, 38, 0.98), rgba(7, 12, 21, 0.98));
  border-radius: var(--card-radius);
}

.pick-card {
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.pick-card:hover,
.pick-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(222, 190, 132, 0.32);
  outline: none;
}

.choice-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(5, 10, 18, 0.4), rgba(5, 10, 18, 0.95));
}

.champion-portrait {
  aspect-ratio: 308 / 560;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at top, rgba(223, 190, 120, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(11, 18, 31, 0.9), rgba(7, 11, 18, 0.98));
}

.champion-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.choice-body {
  padding: 10px 10px 12px;
  display: grid;
  gap: 4px;
}

.center-body { text-align: center; }
.choice-name { margin: 0; font-size: 16px; }
.choice-meta { font-size: 12px; }

.augment-stage {
  position: relative;
  min-height: 520px;
  padding: 18px;
  border-radius: 24px;
  overflow: hidden;
  background: #0d1523;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.augment-stage-splash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.augment-stage-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 223, 153, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(5, 9, 16, 0.28), rgba(5, 9, 16, 0.52) 34%, rgba(5, 9, 16, 0.9) 100%);
}

.augment-stage-grid {
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.augment-choice-card {
  background: transparent;
  overflow: visible;
  height: 100%;
}

.augment-choice-stack {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  align-content: stretch;
  height: 100%;
  z-index: 0;
}

.augment-choice-stack:hover,
.augment-choice-stack:focus-within {
  z-index: 3;
}

.augment-frame {
  position: relative;
  min-height: 360px;
  height: 100%;
  padding: 14px 12px 12px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(17, 24, 36, 0.88), rgba(7, 11, 18, 0.94));
  border: 1px solid rgba(255, 246, 220, 0.12);
  overflow: visible;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-rows: auto 1fr;
}

.augment-set-corner {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.augment-set-badge {
  position: relative;
  outline: none;
}

.augment-set-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(10, 18, 30, 0.98), rgba(5, 10, 18, 0.98));
  box-shadow: 0 6px 16px rgba(0,0,0,0.28);
  display: grid;
  place-items: center;
}

.augment-set-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.augment-set-icon span {
  font-size: 13px;
  font-weight: 800;
  color: #f4f1e8;
}

.augment-set-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 240px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(223, 190, 120, 0.28);
  background: rgba(8, 12, 20, 0.96);
  box-shadow: 0 18px 40px rgba(0,0,0,0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s ease;
  pointer-events: auto;
}

.augment-set-tooltip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.augment-set-tooltip p {
  margin: 0;
  color: #dbe3ef;
  font-size: 12px;
  line-height: 1.45;
}

.augment-set-tooltip-title {
  margin-top: 10px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.augment-set-tooltip ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}

.augment-set-tooltip li {
  color: #dbe3ef;
  font-size: 12px;
  line-height: 1.4;
}

.augment-set-badge:hover .augment-set-tooltip,
.augment-set-badge:focus-within .augment-set-tooltip,
.augment-set-badge:focus .augment-set-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.augment-frame.tier-silver {
  box-shadow: inset 0 0 0 1px rgba(184, 198, 215, 0.18), 0 12px 24px rgba(0,0,0,0.28);
}

.augment-frame.tier-gold {
  box-shadow: inset 0 0 0 1px rgba(212, 176, 109, 0.22), 0 12px 24px rgba(0,0,0,0.3);
}

.augment-frame.tier-prismatic {
  box-shadow: inset 0 0 0 1px rgba(214, 166, 255, 0.22), 0 12px 24px rgba(0,0,0,0.3);
}

.augment-card-topline {
  height: 5px;
  margin-bottom: 12px;
  border-radius: 999px;
  opacity: 0.92;
  box-shadow: 0 0 20px rgba(255,255,255,0.12);
}

.augment-card-topline.tier-silver { background: linear-gradient(90deg, rgba(184,198,215,0.15), rgba(184,198,215,0.95), rgba(184,198,215,0.15)); }
.augment-card-topline.tier-gold { background: linear-gradient(90deg, rgba(212,176,109,0.15), rgba(212,176,109,0.98), rgba(212,176,109,0.15)); }
.augment-card-topline.tier-prismatic { background: linear-gradient(90deg, rgba(214,166,255,0.15), rgba(214,166,255,0.98), rgba(214,166,255,0.15)); }

.augment-card-inner {
  min-height: 0;
  padding: 8px 4px 0;
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: center;
  text-align: center;
  align-content: start;
}

.augment-icon-wrap {
  margin-top: 2px;
  margin-bottom: 14px;
  position: relative;
  z-index: 3;
}

.augment-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(215,185,124,0.18), rgba(255,255,255,0.04));
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
  display: grid;
  place-items: center;
}

.augment-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.augment-icon-fallback {
  font-weight: 800;
  font-size: 24px;
  color: rgba(255,255,255,0.88);
}

.augment-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}

.augment-card-tier {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.augment-copy h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.24;
}

.augment-desc {
  margin: 0;
  color: #dbe3ef;
  font-size: 12px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.augment-reroll-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-btn.augment-reroll-btn {
  width: 104px;
  min-width: 0;
  padding: 0;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(38, 53, 73, 0.95), rgba(20, 29, 42, 0.98));
  color: var(--text);
  display: grid;
  place-items: center;
  transition: transform 0.16s ease, border-color 0.16s ease, filter 0.16s ease;
  overflow: hidden;
}

.icon-btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.2); }
.icon-btn svg { width: 18px; height: 18px; }

.icon-btn-gold {
  color: #231404;
  border-color: rgba(255, 235, 180, 0.4);
  background: linear-gradient(180deg, rgba(255, 223, 135, 0.98), rgba(201, 145, 44, 0.98));
  box-shadow: 0 0 14px rgba(255, 210, 83, 0.22);
}

.icon-btn-gold::before,
.shimmer::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.68) 48%, transparent 60%);
  transform: translateX(-130%) rotate(10deg);
  animation: shimmerSlide 1.6s linear infinite;
}

@keyframes shimmerSlide {
  100% { transform: translateX(130%) rotate(10deg); }
}

.offer-enter {
  animation: offerEnter 0.32s ease both;
}

@keyframes offerEnter {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
    filter: brightness(1.25);
  }
  60% {
    opacity: 1;
    filter: brightness(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: brightness(1);
  }
}

.offer-reroll-enter {
  animation: offerRerollEnter 0.38s ease both;
}

@keyframes offerRerollEnter {
  0% {
    opacity: 0.72;
    transform: scale(0.97);
    filter: brightness(1.18) saturate(1.1);
  }
  55% {
    opacity: 1;
    transform: scale(1.015);
    filter: brightness(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }
}

.pick-burst {
  animation: pickBurst 0.24s ease forwards;
}

@keyframes pickBurst {
  0% {
    transform: scale(1);
    filter: brightness(1);
    box-shadow: 0 0 0 rgba(255, 220, 120, 0);
  }
  45% {
    transform: scale(1.02);
    filter: brightness(1.18);
    box-shadow: 0 0 34px rgba(255, 220, 120, 0.34);
  }
  100% {
    transform: scale(0.99);
    filter: brightness(1.02);
    box-shadow: 0 0 18px rgba(255, 220, 120, 0.16);
  }
}

.reroll-burst {
  animation: rerollBurst 0.42s ease;
}

@keyframes rerollBurst {
  0% { transform: scale(1) rotate(0deg); }
  45% { transform: scale(1.08) rotate(90deg); }
  100% { transform: scale(1) rotate(180deg); }
}

.loadout-panel { margin-bottom: 12px; }
.loadout-top { margin-bottom: 14px; }
.loadout-champion {
  display: inline-grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
}
.loadout-champion img { width: 56px; height: 56px; border-radius: 14px; }
.loadout-champion strong { display: block; font-size: 15px; }
.loadout-champion span { color: var(--muted); font-size: 12px; }

.loadout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.section-label { margin: 0 0 8px; font-size: 14px; color: var(--muted); }
.summary-list, .synergy-list { display: grid; gap: 10px; }
.picked-augment, .synergy-chip {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.picked-augment {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: start;
}
.picked-augment .augment-icon { width: 48px; height: 48px; border-radius: 14px; }
.picked-augment h4 { margin: 0; font-size: 14px; }
.augment-link-connector {
  display: grid;
  justify-items: center;
  gap: 1px;
  margin: -2px 0 -2px;
}
.augment-link-source {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}
.augment-link-arrow {
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
}
.augment-link-source.compact {
  font-size: 11px;
}
.augment-link-arrow.compact {
  font-size: 12px;
}
.synergy-chip strong { display: block; margin-bottom: 4px; font-size: 14px; }
.synergy-chip.completed.tier-silver {
  border-color: rgba(184, 198, 215, 0.28);
  box-shadow: inset 0 0 0 1px rgba(184, 198, 215, 0.16), 0 10px 22px rgba(0,0,0,0.18);
  background: linear-gradient(180deg, rgba(184, 198, 215, 0.08), rgba(255,255,255,0.03));
}
.synergy-chip.completed.tier-gold {
  border-color: rgba(212, 176, 109, 0.3);
  box-shadow: inset 0 0 0 1px rgba(212, 176, 109, 0.2), 0 10px 22px rgba(0,0,0,0.2);
  background: linear-gradient(180deg, rgba(212, 176, 109, 0.09), rgba(255,255,255,0.03));
}
.synergy-chip.completed.tier-prismatic {
  border-color: rgba(214, 166, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(214, 166, 255, 0.2), 0 10px 22px rgba(0,0,0,0.2);
  background: linear-gradient(180deg, rgba(214, 166, 255, 0.1), rgba(255,255,255,0.03));
}
.chip-row { display: flex; gap: 6px; flex-wrap: wrap; }

.locked-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 154, 134, 0.22);
  background: rgba(255, 154, 134, 0.08);
}
.locked-card strong { font-size: 17px; }
.locked-card p { margin: 0; color: var(--muted); }

.warning-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 7, 14, 0.78);
}
.warning-modal {
  width: min(560px, calc(100vw - 24px));
  padding: 20px;
  background: linear-gradient(180deg, rgba(20, 28, 47, 0.98), rgba(10, 16, 30, 0.98));
}
.warning-modal h3 { margin: 12px 0 10px; font-size: 23px; }
.warning-modal p { margin: 0; color: var(--muted); line-height: 1.65; }
.badged-warning {
  color: #ffd8a8;
  border-color: rgba(255, 216, 168, 0.28);
  background: rgba(255, 216, 168, 0.08);
}

.empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  line-height: 1.6;
}

.share-board {
  width: 1080px;
  min-height: 1180px;
  padding: 40px;
  background:
    radial-gradient(circle at top left, rgba(169, 111, 255, 0.25), transparent 24%),
    radial-gradient(circle at top right, rgba(53, 177, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #081120, #090d19);
  color: white;
}
.share-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 28px;
}
.share-kicker {
  display: block;
  margin-bottom: 10px;
  color: #c8d4fa;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.share-header h2 { margin: 0 0 10px; font-size: 58px; }
.share-header p { margin: 0; font-size: 24px; color: #c8d4fa; }
.share-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
}
.share-left, .share-right {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}
.share-left {
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 24px;
}
.share-left-stack {
  width: 100%;
  display: grid;
  align-content: start;
  gap: 18px;
}
.share-cover {
  position: relative;
  width: 100%;
  height: 820px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 18px 42px rgba(0,0,0,0.32);
}
.share-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.share-right {
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 16px;
}
.share-augment {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: rgba(6,12,24,0.55);
}
.share-augment .augment-icon { width: 88px; height: 88px; border-radius: 22px; }
.share-augment h4 { margin: 0 0 8px; font-size: 24px; }
.share-augment p { margin: 0; color: #c8d4fa; font-size: 16px; line-height: 1.4; }
.share-right .augment-link-connector {
  margin: -4px 0 -2px;
}
.share-right .augment-link-source {
  color: #9fb0d9;
  font-size: 15px;
}
.share-right .augment-link-arrow {
  font-size: 18px;
}
.share-set-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.share-set-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6,12,24,0.55);
}
.share-set-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.share-set-tier {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.share-set-card p {
  margin: 0;
  color: #c8d4fa;
  font-size: 15px;
  line-height: 1.45;
}
.share-set-card.tier-silver {
  border-color: rgba(184, 198, 215, 0.32);
  box-shadow: inset 0 0 0 1px rgba(184, 198, 215, 0.16);
  background: linear-gradient(180deg, rgba(184, 198, 215, 0.1), rgba(6,12,24,0.55));
}
.share-set-card.tier-silver .share-set-tier { color: var(--silver); }
.share-set-card.tier-gold {
  border-color: rgba(212, 176, 109, 0.34);
  box-shadow: inset 0 0 0 1px rgba(212, 176, 109, 0.18);
  background: linear-gradient(180deg, rgba(212, 176, 109, 0.11), rgba(6,12,24,0.55));
}
.share-set-card.tier-gold .share-set-tier { color: var(--gold); }
.share-set-card.tier-prismatic {
  border-color: rgba(214, 166, 255, 0.36);
  box-shadow: inset 0 0 0 1px rgba(214, 166, 255, 0.2);
  background: linear-gradient(180deg, rgba(214, 166, 255, 0.12), rgba(6,12,24,0.55));
}
.share-set-card.tier-prismatic .share-set-tier { color: var(--prismatic); }
.share-left .share-set-list {
  width: 100%;
  margin-top: 0;
  gap: 10px;
}
.share-left .share-set-card {
  padding: 12px 14px;
  border-radius: 18px;
}
.share-left .share-set-card strong {
  margin-bottom: 6px;
  font-size: 16px;
}
.share-left .share-set-tier {
  margin-bottom: 6px;
  font-size: 12px;
}
.share-left .share-set-card p {
  font-size: 13px;
}
.hidden-capture {
  position: fixed;
  left: -99999px;
  top: 0;
  width: 1080px;
}

.share-preview-overlay {
  z-index: 70;
}

.share-preview-modal {
  width: min(1120px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  overflow: auto;
}

.share-preview-frame {
  margin-bottom: 16px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.share-preview-frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 760px) {
  .app-shell { width: calc(100vw - 10px); padding-top: 8px; }
  .simple-hero, .panel { padding: 10px; }
  .simple-hero-top, .panel-header { flex-direction: column; align-items: flex-start; }
  .actions { width: 100%; }
  .actions .btn { flex: 1 1 auto; }
  .progress-row { gap: 6px; }
  .progress-step { padding: 8px 4px; }
  .progress-step strong { font-size: 12px; }
  .choice-grid { gap: 6px; }
  .choice-name { font-size: 13px; }
  .choice-meta { font-size: 11px; }
  .choice-body { padding: 8px 6px 10px; }
  .augment-stage { min-height: 0; padding: 10px; border-radius: 18px; }
  .augment-frame { padding: 6px; border-radius: 16px; }
  .augment-frame { min-height: 280px; }
  .augment-set-corner { top: 8px; left: 8px; }
  .augment-set-icon { width: 24px; height: 24px; border-radius: 7px; }
  .augment-set-tooltip { width: min(220px, calc(100vw - 48px)); }
  .augment-card-inner { padding: 4px 4px 8px; }
  .augment-icon-wrap { margin-top: 0; margin-bottom: 8px; }
  .augment-icon { width: 52px; height: 52px; border-radius: 14px; }
  .augment-copy h3 { font-size: 14px; }
  .augment-desc { font-size: 10px; line-height: 1.35; -webkit-line-clamp: 4; line-clamp: 4; }
  .augment-card-tier { font-size: 10px; letter-spacing: 0.1em; }
  .icon-btn { width: 34px; height: 34px; border-radius: 10px; }
  .icon-btn.augment-reroll-btn { width: 88px; }
  .icon-btn svg { width: 15px; height: 15px; }
  .loadout-grid { grid-template-columns: 1fr; gap: 10px; }
  .loadout-champion { width: 100%; }
  .warning-modal { padding: 18px; }
}
