:root {
  --bg: #07101f;
  --bg2: #0d1630;
  --bg3: #14214a;

  --panel: rgba(255, 255, 255, 0.07);
  --panel-2: rgba(255, 255, 255, 0.1);
  --panel-3: rgba(255, 255, 255, 0.14);

  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);

  --text: #f7f8ff;
  --muted: #b8c3df;

  --primary: #7b8cff;
  --primary-2: #9d6bff;
  --primary-3: #4fd6ff;

  --good: #34d399;
  --warn: #fbbf24;
  --danger: #fb7185;

  --bronze: #c0c7d6;
  --silver: #edf3ff;
  --gold: #ffe88a;
  --legend: #d6a7ff;
  --immortal: #ff6dc0;
  --challenger: #ff3866;

  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.38);
  --shadow-md: 0 10px 26px rgba(0, 0, 0, 0.25);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 12%, rgba(123, 140, 255, 0.23), transparent 20%),
    radial-gradient(circle at 88% 14%, rgba(157, 107, 255, 0.2), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(79, 214, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #091226 0%, #050a16 52%, #03060f 100%);
}

a {
  color: inherit;
}

/* background */
.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: -60px;
  left: -80px;
  background: rgba(123, 140, 255, 0.24);
}

.orb-2 {
  width: 260px;
  height: 260px;
  top: 160px;
  right: -60px;
  background: rgba(157, 107, 255, 0.2);
}

.orb-3 {
  width: 240px;
  height: 240px;
  bottom: -60px;
  left: 35%;
  background: rgba(79, 214, 255, 0.13);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0.6px, transparent 0.7px),
    radial-gradient(circle at 80% 40%, #fff 0.6px, transparent 0.7px),
    radial-gradient(circle at 60% 80%, #fff 0.6px, transparent 0.7px),
    radial-gradient(circle at 30% 70%, #fff 0.6px, transparent 0.7px);
  background-size: 120px 120px;
}

/* layout */
.shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 22px;
}

.app-shell {
  padding-bottom: 64px;
}

.app-layout {
  display: grid;
  gap: 18px;
}

/* header */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.brand-wrap {
  max-width: 760px;
}

.eyebrow {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c4cdef;
  opacity: 0.92;
}

.brand-title {
  position: relative;
  margin: 6px 0 6px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 900;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.title-shine {
  position: absolute;
  inset: -6px auto auto -10px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}

.top-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

/* common glass */
.panel,
.hub-card,
.highlight-card,
.stat-box,
.rank-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 20px;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.8;
}

/* buttons */
.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 18px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  white-space: nowrap;
}

.btn > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 8px rgba(255, 255, 0, 0.559));
}

.btn::after {
  content: none;
}

.btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  box-shadow: 0 14px 35px rgba(123, 140, 255, 0.34);
}

.btn.primary:hover {
  box-shadow: 0 18px 42px rgba(123, 140, 255, 0.42);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
}

.big-link {
  min-height: 56px;
  min-width: 188px;
}

.glow-btn {
  animation: none;
}

.back-btn {
  min-width: 132px;
  background: linear-gradient(135deg, #3146d9, #6f5bff);
  border: none;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.38);
}

.back-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 34px rgba(99, 102, 241, 0.5);
}

.nav-icon-btn {
  min-width: 132px;
}

.nav-icon-btn.active {
  border-color: rgba(123, 140, 255, 0.45);
  background: linear-gradient(135deg, rgba(123, 140, 255, 0.2), rgba(157, 107, 255, 0.14));
  box-shadow: 0 8px 22px rgba(123, 140, 255, 0.2);
}

.btn-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

/* hero */
.hero {
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -30% auto auto 55%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(123, 140, 255, 0.22), transparent 62%);
  filter: blur(20px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 18px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(123, 140, 255, 0.42);
  background: linear-gradient(135deg, rgba(123, 140, 255, 0.22), rgba(157, 107, 255, 0.16));
  color: #f2f5ff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.02;
  font-weight: 900;
  max-width: 720px;
}

.hero-title span {
  display: block;
  margin-top: 6px;
  background: linear-gradient(90deg, #ffffff, #dbe3ff 35%, #d6c8ff 70%, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
  max-width: 720px;
  font-size: 0.99rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-mini-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-mini-links a {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hero-mini-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(123, 140, 255, 0.18), rgba(255, 255, 255, 0.07));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.hero-mini-links img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.22));
}

.hero-side {
  display: grid;
  gap: 12px;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(157, 107, 255, 0.12), rgba(123, 140, 255, 0.08));
}

.highlight-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(123, 140, 255, 0.26), transparent 60%);
}

.card-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #dce3ff;
  margin-bottom: 10px;
}

.quick-steps {
  margin: 0;
  padding-left: 18px;
  line-height: 1.82;
  color: #f4f6ff;
}

.quick-steps li + li {
  margin-top: 4px;
}

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

.stat-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 18px 14px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.015), rgba(123, 140, 255, 0.06));
}

.stat-box::after {
  content: none;
}

.stat-box span {
  display: block;
  color: #c2cceb;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.stat-box strong {
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: #ffffff;
}

/* section */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head.slim {
  margin-bottom: 14px;
}

.section-head h2,
.section-head h3 {
  margin: 4px 0 0;
  line-height: 1.12;
}

.section-head h2 {
  font-size: 1.22rem;
}

.section-head h3 {
  font-size: 1.08rem;
}

/* hub */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hub-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  padding: 18px;
  border-radius: 22px;
  min-height: 214px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.hub-card:hover {
  transform: translateY(-5px) scale(1.01);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    linear-gradient(135deg, rgba(123, 140, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-color: var(--line-strong);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

.hub-card::after {
  content: none;
}

.hub-card.main {
  background:
    linear-gradient(180deg, rgba(123, 140, 255, 0.18), rgba(255, 255, 255, 0.05)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.02));
  border-color: rgba(123, 140, 255, 0.36);
}

.hub-top-line {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(123, 140, 255, 0),
    rgba(123, 140, 255, 0.9),
    rgba(157, 107, 255, 0.9),
    rgba(123, 140, 255, 0)
  );
  opacity: 0.95;
}

.hub-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(255, 0, 0, 0.16), rgba(255, 0, 0, 0.07)),
    linear-gradient(135deg, rgba(0, 34, 255, 0.12), rgba(157, 107, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.18);
  font-size: 1.5rem;
}

.hub-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 10px rgba(246, 255, 0, 0.575));
}

.hub-title {
  font-size: 1.04rem;
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.hub-text {
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.93rem;
}

/* info */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.info-card {
  min-width: 0;
}

/* rank */
.rank-panel {
  position: relative;
  overflow: hidden;
  backdrop-filter: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(125, 141, 255, 0.14), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(165, 108, 255, 0.11), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045));
}

.rank-panel::after {
  content: none;
}

.rank-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #f0f4ff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.55);
}

.rank-stage {
  position: relative;
  padding: 6px 0 4px;
}

.rank-beam {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.35;
  pointer-events: none;
}

.rank-list {
  display: grid;
  gap: 10px;
}

.rank-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 20px;
  padding: 12px 14px;
  min-height: 80px;
  backdrop-filter: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.rank-item:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.rank-glow {
  position: absolute;
  inset: auto auto -34px -24px;
  width: 108px;
  height: 108px;
  border-radius: 999px;
  opacity: 0.2;
  pointer-events: none;
}

.rank-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.rank-emblem {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.22rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 18px rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.rank-emblem::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 11px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
  opacity: 0.75;
}

.rank-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rank-meta strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.rank-meta span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 3px;
}

.rank-points {
  min-width: 68px;
  text-align: center;
  padding: 10px 11px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.rank-points.hot {
  background: linear-gradient(135deg, rgba(255, 56, 102, 0.24), rgba(255, 34, 79, 0.16));
  box-shadow: 0 0 18px rgba(255, 56, 102, 0.26);
}

.rank-item.bronze {
  border-color: rgba(192, 199, 214, 0.28);
  background: linear-gradient(180deg, rgba(192, 199, 214, 0.13), rgba(255, 255, 255, 0.03));
}

.rank-item.bronze .rank-emblem,
.rank-item.bronze .rank-points {
  color: #e7edf8;
  border-color: rgba(192, 199, 214, 0.28);
}

.rank-item.bronze .rank-glow {
  background: rgba(192, 199, 214, 0.42);
}

.rank-item.silver {
  border-color: rgba(237, 243, 255, 0.32);
  background: linear-gradient(180deg, rgba(237, 243, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.rank-item.silver .rank-emblem,
.rank-item.silver .rank-points {
  color: #f5f8ff;
  border-color: rgba(237, 243, 255, 0.3);
}

.rank-item.silver .rank-glow {
  background: rgba(237, 243, 255, 0.42);
}

.rank-item.gold {
  border-color: rgba(255, 232, 138, 0.38);
  background: linear-gradient(180deg, rgba(255, 232, 138, 0.16), rgba(255, 255, 255, 0.03));
}

.rank-item.gold .rank-emblem,
.rank-item.gold .rank-points {
  color: #fff0bb;
  border-color: rgba(255, 232, 138, 0.34);
}

.rank-item.gold .rank-glow {
  background: rgba(255, 232, 138, 0.52);
}

.rank-item.legend {
  border-color: rgba(214, 167, 255, 0.34);
  background: linear-gradient(180deg, rgba(214, 167, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.rank-item.legend .rank-emblem,
.rank-item.legend .rank-points {
  color: #f0dcff;
  border-color: rgba(214, 167, 255, 0.3);
}

.rank-item.legend .rank-glow {
  background: rgba(214, 167, 255, 0.46);
}

.rank-item.immortal {
  border-color: rgba(255, 109, 192, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 109, 192, 0.18), rgba(175, 122, 255, 0.14), rgba(255, 255, 255, 0.03));
}

.rank-item.immortal .rank-emblem,
.rank-item.immortal .rank-points {
  color: #ffd6f4;
  border-color: rgba(255, 109, 192, 0.38);
}

.rank-item.immortal .rank-glow {
  background: rgba(255, 109, 192, 0.58);
}

.rank-item.challenger {
  border-color: rgba(255, 56, 102, 0.62);
  background:
    linear-gradient(
      135deg,
      rgba(255, 56, 102, 0.24),
      rgba(255, 34, 79, 0.16),
      rgba(255, 255, 255, 0.03)
    );
}

.rank-item.challenger .rank-emblem,
.rank-item.challenger .rank-points {
  color: #fff0f5;
  border-color: rgba(255, 56, 102, 0.5);
  text-shadow: 0 0 12px rgba(255, 56, 102, 0.34);
}

.rank-item.challenger .rank-glow {
  background: rgba(255, 56, 102, 0.72);
}

.rank-item.featured {
  box-shadow:
    inset 0 0 0 1px rgba(255, 56, 102, 0.24),
    0 14px 30px rgba(255, 56, 102, 0.22);
}

.rank-item.featured::before {
  content: none;
}

.rank-foot {
  margin-top: 16px;
}

.muted-text {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.rank-note {
  margin-top: 12px;
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #edf2ff;
  padding: 12px 14px;
  border-radius: 16px;
  line-height: 1.6;
}

/* effects */
.tilt-card {
  transform-style: flat;
}

.float-card {
  animation: none;
}

.fade-up {
  opacity: 1;
  transform: none;
  animation: none;
}

.pop-in {
  opacity: 1;
  transform: none;
  animation: none;
}

.delay-1,
.delay-2,
.delay-3 {
  animation-delay: 0s;
}

.pulse-soft {
  animation: none;
}

.crown-spin {
  animation: none;
}

/* responsive */
@media (max-width: 1180px) {
  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .rank-item {
    padding: 13px 14px;
  }

  .rank-points {
    min-width: 56px;
  }
}

@media (max-width: 760px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }

  .brand-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-actions,
  .top-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .top-actions .btn {
    flex: 1 1 auto;
  }

  .big-link {
    width: 100%;
  }

  .rank-item {
    flex-direction: column;
    align-items: stretch;
  }

  .rank-left {
    width: 100%;
  }

  .rank-points {
    width: 100%;
  }

  .rank-badge-live {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .shell {
    padding: 12px;
  }

  .panel,
  .hub-card,
  .highlight-card,
  .stat-box {
    border-radius: 20px;
    padding: 14px;
  }

  .hero-text,
  .hub-text,
  .muted-text {
    font-size: 0.92rem;
  }

  .hero-mini-links {
    gap: 10px;
  }

  .hero-mini-links a {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .hero-mini-links img,
  .hub-icon img {
    width: 24px;
    height: 24px;
  }

  .rank-emblem {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 768px) {
  .bg-orb {
    display: none;
  }

  .backdrop-filter {
    backdrop-filter: none;
  }
}
