:root {
  color-scheme: dark;
  --bg: #071116;
  --bg-deep: #040b0f;
  --panel: #0c181e;
  --panel-raised: #102129;
  --line: rgba(224, 247, 250, 0.12);
  --line-strong: rgba(224, 247, 250, 0.22);
  --text: #f7fbfc;
  --muted: #91a4aa;
  --cyan: #00d7dc;
  --cyan-soft: #7cf7f5;
  --red: #ff244d;
  --yellow: #f2ee00;
  --blue: #176cff;
  --discord: #5865f2;
  --success: #39e58c;
  --danger: #ff6b79;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 5%, rgba(0, 215, 220, 0.14), transparent 28rem),
    radial-gradient(circle at 5% 45%, rgba(255, 36, 77, 0.1), transparent 32rem),
    radial-gradient(circle at 72% 72%, rgba(23, 108, 255, 0.08), transparent 34rem),
    linear-gradient(145deg, #03090d 0%, #071116 46%, #03090d 100%),
    var(--bg-deep);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.3));
  box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.45);
}

body::selection { background: var(--cyan); color: #021014; }
a { color: inherit; }
button, input { font: inherit; }

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.background-burst {
  position: fixed;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.08;
  pointer-events: none;
  animation: ambient-drift 14s ease-in-out infinite alternate;
}
.burst-cyan { top: -180px; right: -100px; background: var(--cyan); }
.burst-red { top: 880px; left: -260px; background: var(--red); animation-delay: -7s; }

.background-orbit {
  position: fixed;
  z-index: -2;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(124, 247, 245, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.background-orbit::after {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px dashed rgba(255, 255, 255, 0.045);
  border-radius: inherit;
}
.orbit-one { top: 120px; right: -300px; }
.orbit-two { top: 1380px; left: -360px; width: 660px; height: 660px; }

@keyframes ambient-drift {
  from { transform: translate3d(-10px, -8px, 0) scale(0.96); }
  to { transform: translate3d(22px, 16px, 0) scale(1.06); }
}

@keyframes surface-arrive {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes row-arrive {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  width: min(1200px, calc(100% - 40px));
  min-height: 82px;
  margin: 12px auto 0;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "brand links actions";
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(4, 13, 17, 0.78);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px);
}

.brand { grid-area: brand; display: inline-flex; align-items: center; gap: 12px; width: max-content; text-decoration: none; }
.brand > img { width: 44px; height: 44px; border-radius: 11px; object-fit: cover; border: 1px solid var(--line-strong); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 20px; font-weight: 1000; font-style: italic; letter-spacing: -0.06em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 10px; letter-spacing: 0.06em; }

.nav-links { grid-area: links; display: flex; align-items: center; gap: 28px; }
.nav-links a { position: relative; color: #b8c6ca; font-size: 12px; font-weight: 700; text-decoration: none; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--cyan); transition: right 0.18s ease; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.nav-links a.is-active { color: #fff; }
.nav-links a.is-active::after { right: 0; }

.nav-actions { grid-area: actions; display: flex; align-items: center; justify-content: flex-end; gap: 11px; }
.nav-user { display: flex; align-items: center; gap: 9px; color: #d9e3e5; font-size: 12px; font-weight: 700; }
.nav-avatar { width: 32px; height: 32px; border-radius: 9px; object-fit: cover; border: 1px solid rgba(0, 215, 220, 0.45); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, input:focus-visible { outline: 3px solid rgba(0, 215, 220, 0.3); outline-offset: 3px; }
.button:disabled { cursor: wait; opacity: 0.65; transform: none; }
.button-discord { background: var(--discord); box-shadow: 0 12px 32px rgba(88, 101, 242, 0.2); }
.button-header-join { min-height: 39px; padding: 0 14px; border-color: rgba(0, 215, 220, 0.42); background: rgba(0, 215, 220, 0.1); color: var(--cyan-soft); }
.button-header-join:hover { border-color: var(--cyan); background: rgba(0, 215, 220, 0.17); box-shadow: 0 10px 28px rgba(0, 215, 220, 0.12); }
.discord-mark { width: 14px; height: 10px; border-radius: 7px 7px 4px 4px; background: white; position: relative; }
.discord-mark::after { content: ""; position: absolute; width: 3px; height: 3px; top: 3px; left: 3px; border-radius: 50%; background: var(--discord); box-shadow: 5px 0 var(--discord); }
.button-primary { min-height: 50px; padding: 0 23px; background: var(--cyan); color: #021013; box-shadow: 7px 7px 0 rgba(23, 108, 255, 0.55); }
.button-primary:hover { box-shadow: 4px 5px 0 rgba(23, 108, 255, 0.7); }
.button-secondary, .button-ghost { border-color: var(--line-strong); background: rgba(255, 255, 255, 0.025); color: #dce7e9; }
.button-secondary:hover, .button-ghost:hover { border-color: rgba(0, 215, 220, 0.5); background: rgba(0, 215, 220, 0.06); }

main { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.hero { min-height: 650px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr); align-items: center; gap: 90px; padding: 72px 0 64px; }
.eyebrow { margin: 0 0 17px; color: #a9babf; font-size: 10px; font-weight: 850; letter-spacing: 0.17em; text-transform: uppercase; }
.eyebrow span { display: inline-block; margin-right: 10px; padding: 3px 7px; border: 1px solid rgba(0, 215, 220, 0.5); color: var(--cyan-soft); line-height: 1.2; letter-spacing: 0.12em; }
.hero h1 { max-width: 720px; margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(58px, 7vw, 96px); line-height: 0.9; letter-spacing: -0.07em; text-transform: uppercase; }
.hero h1 em { color: var(--cyan); font-style: normal; text-shadow: 5px 5px 0 rgba(23, 108, 255, 0.62); }
.hero-description { max-width: 600px; margin: 30px 0; color: var(--muted); font-size: 16px; }
.hero-actions { display: flex; align-items: center; gap: 15px; }
.hero-text-link { color: #afc0c5; font-size: 11px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.hero-text-link span { display: inline-block; margin-left: 5px; color: var(--cyan); transition: transform 0.16s ease; }
.hero-text-link:hover { color: #fff; }
.hero-text-link:hover span { transform: translateX(4px); }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: #72888e; font-size: 9px; font-weight: 750; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points i { width: 5px; height: 5px; border-radius: 50%; background: var(--success); box-shadow: 0 0 10px rgba(57, 229, 140, 0.7); }

.hero-visual { position: relative; width: min(100%, 430px); aspect-ratio: 1; justify-self: end; display: grid; place-items: center; isolation: isolate; }
.logo-frame { position: relative; z-index: 2; width: 82%; overflow: hidden; border: 5px solid #f8fbfc; border-radius: 26px; background: #fff; box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52), 0 0 70px rgba(0, 215, 220, 0.08); transform: rotate(1.5deg); }
.logo-frame img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.logo-shadow { position: absolute; z-index: 0; width: 82%; aspect-ratio: 1; border-radius: 26px; }
.shadow-yellow { transform: translate(22px, 22px) rotate(4deg); background: var(--yellow); }
.shadow-red { transform: translate(-20px, 13px) rotate(-3deg); background: var(--red); }
.visual-tag { position: absolute; z-index: 3; padding: 8px 12px; border: 2px solid var(--bg-deep); color: #041115; font-size: 10px; font-weight: 1000; letter-spacing: 0.12em; text-transform: uppercase; box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.38); }
.tag-season { top: 7%; right: 0; background: var(--yellow); transform: rotate(4deg); }
.tag-platform { bottom: 6%; left: -1%; background: var(--cyan); transform: rotate(-3deg); }

.league-numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 128px; border: 1px solid var(--line-strong); border-radius: var(--radius); background: rgba(9, 22, 28, 0.9); box-shadow: var(--shadow); overflow: hidden; }
.league-numbers article { position: relative; min-height: 132px; display: flex; flex-direction: column; justify-content: center; padding: 25px 34px; }
.league-numbers article + article { border-left: 1px solid var(--line); }
.league-numbers article:nth-child(1)::after { background: var(--cyan); }
.league-numbers article:nth-child(2)::after { background: var(--red); }
.league-numbers article:nth-child(3)::after { background: var(--yellow); }
.league-numbers article::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; }
.number-index { position: absolute; top: 17px; right: 20px; color: #354a51; font-size: 10px; font-weight: 900; }
.league-numbers strong { font-size: 34px; line-height: 1; letter-spacing: -0.05em; }
.league-numbers small { margin-top: 8px; color: var(--muted); font-size: 11px; }

.notice { margin: -88px 0 80px; padding: 13px 16px; border-radius: 10px; font-size: 12px; }
.notice-error { border: 1px solid rgba(255, 107, 121, 0.35); background: rgba(255, 107, 121, 0.08); color: #ffb8c0; }
.experience-section { margin: -12px 0 132px; scroll-margin-top: 120px; }
.experience-heading h2 { max-width: 690px; }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.experience-card { position: relative; min-height: 315px; padding: 27px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius); background: linear-gradient(155deg, rgba(18, 41, 50, 0.92), rgba(6, 17, 22, 0.98) 68%); box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.035); }
.experience-card::before { content: ""; position: absolute; width: 190px; height: 190px; right: -85px; top: -95px; border-radius: 50%; opacity: 0.11; filter: blur(35px); }
.card-cyan::before { background: var(--cyan); }
.card-red::before { background: var(--red); }
.card-yellow::before { background: var(--yellow); }
.experience-card::after { content: ""; position: absolute; left: 27px; right: 27px; bottom: 0; height: 2px; opacity: 0.7; }
.card-cyan::after { background: var(--cyan); }
.card-red::after { background: var(--red); }
.card-yellow::after { background: var(--yellow); }
.experience-number { position: absolute; top: 20px; right: 22px; color: #3c5158; font-size: 10px; font-weight: 900; }
.experience-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 46px; border: 1px solid var(--line-strong); border-radius: 13px; background: rgba(255, 255, 255, 0.035); color: var(--cyan-soft); font-size: 10px; font-weight: 950; letter-spacing: 0.08em; box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); }
.card-red .experience-icon { color: #ff8ba0; }
.card-yellow .experience-icon { color: var(--yellow); }
.experience-card h3 { margin: 0 0 9px; font-size: 22px; letter-spacing: -0.035em; }
.experience-card p { min-height: 61px; margin: 0 0 24px; color: var(--muted); font-size: 11px; line-height: 1.65; }
.experience-card a { color: #e9f3f5; font-size: 10px; font-weight: 850; text-decoration: none; }
.experience-card a span { margin-left: 6px; color: var(--cyan); }
.experience-card a:hover { color: var(--cyan-soft); }
.command-section, .clan-standings-section { margin-bottom: 132px; scroll-margin-top: 120px; }
.command-layout { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr); gap: 17px; align-items: start; }
.command-panel { overflow: hidden; border: 1px solid var(--line-strong); border-radius: var(--radius); background: linear-gradient(150deg, rgba(15, 34, 42, 0.98), rgba(6, 17, 22, 0.98)); box-shadow: 0 26px 68px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.035); }
.command-panel-head { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 25px; border-bottom: 1px solid var(--line); background: linear-gradient(90deg, rgba(0, 215, 220, 0.07), transparent); }
.command-panel-host .command-panel-head { background: linear-gradient(90deg, rgba(255, 36, 77, 0.07), transparent); }
.command-panel-head strong { font-size: 15px; }
.command-category { padding: 5px 8px; border: 1px solid rgba(0, 215, 220, 0.38); color: var(--cyan-soft); font-size: 8px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.command-panel-host .command-category { border-color: rgba(255, 36, 77, 0.4); color: #ff8ba0; }
.command-list { padding: 7px 25px 10px; }
.command-row { min-height: 86px; display: grid; grid-template-columns: minmax(145px, 0.72fr) minmax(0, 1fr); align-items: center; gap: 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }
.command-row:last-child { border-bottom: 0; }
.command-row code { width: max-content; max-width: 100%; padding: 8px 10px; border: 1px solid rgba(0, 215, 220, 0.18); border-radius: 7px; background: rgba(0, 215, 220, 0.055); color: var(--cyan-soft); font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace; font-size: 10px; font-weight: 750; white-space: nowrap; }
.command-panel-host .command-row code { border-color: rgba(255, 36, 77, 0.18); background: rgba(255, 36, 77, 0.045); color: #ff9baa; }
.command-row p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.lookup-section, .dashboard, .leaderboard-section { margin-bottom: 132px; scroll-margin-top: 30px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 5vw, 58px); line-height: 0.98; letter-spacing: -0.06em; }
.section-heading h2 span { color: var(--cyan); }
.section-note { max-width: 370px; margin: 0; color: var(--muted); font-size: 12px; text-align: right; }

.lookup-shell { width: min(100%, 920px); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: 20px; }
.lookup-form, .lookup-result { border: 1px solid var(--line-strong); border-radius: var(--radius); background: linear-gradient(145deg, rgba(15, 35, 43, 0.98), rgba(7, 19, 24, 0.98)); box-shadow: var(--shadow); }
.lookup-form { position: relative; min-height: 0; padding: 30px; overflow: hidden; }
.lookup-form::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue) 55%, var(--red)); }
.lookup-form-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 16px; }
.lookup-kicker { display: block; margin-bottom: 4px; color: var(--cyan); font-size: 8px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.lookup-form-heading label { display: block; color: #f2f7f8; font-size: 16px; font-weight: 850; letter-spacing: -0.02em; }
.lookup-id-badge { flex: 0 0 auto; padding: 6px 9px; border: 1px solid rgba(0, 215, 220, 0.22); border-radius: 99px; background: rgba(0, 215, 220, 0.055); color: #82a0a7; font-size: 8px; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.lookup-controls { display: grid; grid-template-columns: minmax(0, 1fr) 155px; gap: 10px; }
.lookup-controls input { min-width: 0; height: 54px; padding: 0 17px; border: 1px solid var(--line-strong); border-radius: 10px; background: #061116; color: #fff; font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace; font-size: 14px; letter-spacing: 0.025em; }
.lookup-controls input::placeholder { color: #53676e; }
.lookup-controls input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0, 215, 220, 0.08); outline: none; }
.button-search { width: 100%; min-height: 54px; background: linear-gradient(135deg, #ff244d, #dc153b); box-shadow: 4px 4px 0 rgba(242, 238, 0, 0.48); }
.form-help { margin: 13px 0 0; color: #70868d; font-size: 10px; line-height: 1.6; }
.lookup-message { margin: 22px 0 0; padding: 11px 13px; border-radius: 8px; font-size: 11px; }
.lookup-message.is-error { border: 1px solid rgba(255, 107, 121, 0.28); background: rgba(255, 107, 121, 0.07); color: #ffadb7; }
.lookup-message.is-loading { border: 1px solid rgba(0, 215, 220, 0.25); background: rgba(0, 215, 220, 0.06); color: var(--cyan-soft); }

.lookup-result { min-height: 340px; padding: 30px; position: relative; overflow: hidden; }
.lookup-result::after { content: ""; position: absolute; width: 170px; height: 170px; right: -80px; top: -70px; border-radius: 50%; background: var(--cyan); opacity: 0.07; filter: blur(28px); }
.lookup-result-head { position: relative; z-index: 1; display: flex; align-items: center; gap: 14px; }
.lookup-avatar { width: 54px; height: 54px; display: block; flex: 0 0 auto; border: 2px solid var(--cyan); border-radius: 13px; object-fit: cover; background: #08161b; box-shadow: 5px 5px 0 rgba(23, 108, 255, 0.52); }
.result-label { display: block; color: var(--cyan-soft); font-size: 8px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.lookup-result h3 { margin: 2px 0 0; font-size: 22px; line-height: 1.1; }
.lookup-result-head p { margin: 4px 0 0; color: #70858b; font-size: 9px; }
.standing-chip { margin-left: auto; padding: 7px 11px; border: 1px solid rgba(0, 215, 220, 0.35); border-radius: 99px; background: rgba(0, 215, 220, 0.07); color: var(--cyan-soft); font-size: 9px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.lookup-rank-row { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-top: 45px; }
.lookup-rank-row span, .lookup-stat-grid span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.lookup-rank-row > div > strong { display: block; font-size: 48px; line-height: 0.96; letter-spacing: -0.06em; }
.lookup-rank-row small { color: #8da0a5; font-size: 10px; }
.lookup-elo { min-width: 110px; padding-left: 22px; border-left: 1px solid var(--line); }
.lookup-elo strong { color: var(--yellow); font-size: 34px !important; }
.lookup-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 28px; border: 1px solid var(--line); border-radius: 11px; overflow: hidden; background: var(--line); }
.lookup-stat-grid > div { padding: 14px; background: #09171c; }
.lookup-stat-grid strong { font-size: 17px; }
.placement-note { margin: 15px 0 0; color: var(--cyan-soft); font-size: 10px; }

.profile-layout { display: grid; grid-template-columns: minmax(330px, 1.2fr) minmax(360px, 0.95fr); gap: 18px; }
.profile-card, .stat-grid article, .empty-profile, .leaderboard-card { border: 1px solid var(--line-strong); background: linear-gradient(145deg, rgba(15, 34, 42, 0.98), rgba(7, 18, 23, 0.98)); box-shadow: var(--shadow); }
.profile-card { min-height: 370px; padding: 30px; border-radius: var(--radius); position: relative; overflow: hidden; }
.profile-card::after { content: ""; position: absolute; width: 230px; height: 230px; right: -105px; top: -105px; border-radius: 50%; background: var(--red); opacity: 0.08; filter: blur(45px); }
.profile-topline { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.profile-avatar { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; border: 2px solid rgba(0, 215, 220, 0.48); }
.discord-name { margin: 0; font-size: 18px; font-weight: 850; }
.roblox-name { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.roblox-name::before { content: "ROBLOX · "; color: var(--cyan); font-size: 8px; font-weight: 900; }
.rank-display { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 25px; margin-top: 65px; position: relative; z-index: 1; }
.rank-display span, .elo-block span, .placement-block span, .stat-grid span { display: block; margin-bottom: 4px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.rank-display strong { display: block; font-size: clamp(54px, 7vw, 78px); letter-spacing: -0.07em; line-height: 0.95; }
.rank-display small { color: #8fa1a6; font-size: 11px; }
.elo-block { min-width: 112px; padding-left: 24px; border-left: 1px solid var(--line); }
.elo-block strong { color: var(--yellow); font-size: 37px; letter-spacing: -0.04em; }
.placement-block { margin-top: 29px; padding-top: 19px; border-top: 1px solid var(--line); }
.placement-block > div { display: flex; justify-content: space-between; }
.placement-block strong { font-size: 12px; }
progress { width: 100%; height: 7px; overflow: hidden; border: 0; border-radius: 99px; background: #193039; }
progress::-webkit-progress-bar { background: #193039; border-radius: 99px; }
progress::-webkit-progress-value { background: linear-gradient(90deg, var(--cyan), var(--blue)); border-radius: 99px; }
progress::-moz-progress-bar { background: linear-gradient(90deg, var(--cyan), var(--blue)); border-radius: 99px; }

.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stat-grid article { min-height: 176px; padding: 24px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: end; }
.stat-grid article:nth-child(1) { border-bottom-color: rgba(0, 215, 220, 0.55); }
.stat-grid article:nth-child(2) { border-bottom-color: rgba(255, 36, 77, 0.55); }
.stat-grid article:nth-child(3) { border-bottom-color: rgba(242, 238, 0, 0.5); }
.stat-grid article:nth-child(4) { border-bottom-color: rgba(23, 108, 255, 0.55); }
.stat-grid strong { font-size: 31px; letter-spacing: -0.04em; }
.stat-grid small { color: #60757b; font-size: 9px; }
.empty-profile { display: flex; gap: 20px; align-items: center; padding: 28px; border-radius: var(--radius); }
.empty-icon { width: 56px; height: 56px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 13px; background: var(--red); color: white; font-size: 25px; font-weight: 900; }
.empty-profile h3 { margin: 0 0 5px; }
.empty-profile p { margin: 0; color: var(--muted); font-size: 12px; }

.clan-standings-card { position: relative; }
.clan-standings-card::before { content: ""; position: absolute; z-index: 0; width: 260px; height: 260px; top: -170px; right: 5%; border-radius: 50%; background: var(--red); opacity: 0.08; filter: blur(65px); pointer-events: none; }
.clan-table-header, .clan-row { position: relative; z-index: 1; display: grid; grid-template-columns: 90px minmax(220px, 1.4fr) 0.65fr 0.65fr 0.65fr; align-items: center; gap: 18px; }
.clan-table-header { min-height: 54px; padding: 0 24px; border-bottom: 1px solid var(--line); color: #657a80; font-size: 8px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.clan-row { min-height: 82px; padding: 0 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); }
.clan-row:last-child { border-bottom: 0; }
.clan-row:hover { background: rgba(255, 255, 255, 0.025); }
.clan-group-label { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 48px; padding: 0 24px; border-bottom: 1px solid var(--line); background: rgba(0, 215, 220, 0.055); color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.clan-group-label strong { color: var(--cyan-soft); font-size: 12px; letter-spacing: 0.12em; }
.clan-group-waitlist { margin-top: 10px; background: rgba(255, 36, 77, 0.055); }
.clan-group-waitlist strong { color: #ff8ba0; }
.clan-row-waitlist { opacity: 0.86; }
.clan-row-waitlist .clan-name::before { background: linear-gradient(135deg, var(--red), #ff8ba0); box-shadow: 0 0 16px rgba(255, 36, 77, 0.22); }
.clan-row-waitlist .clan-record { color: #ff8ba0; font-size: 10px; letter-spacing: 0.08em; }
.clan-empty-row { min-height: 72px; }
.clan-position { color: #667b81; font-size: 11px; }
.clan-position strong { color: var(--red); font-size: 18px; }
.clan-name { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 850; }
.clan-name::before { content: ""; width: 9px; height: 9px; flex: 0 0 auto; border-radius: 3px; background: linear-gradient(135deg, var(--cyan), var(--blue)); box-shadow: 0 0 16px rgba(0, 215, 220, 0.25); transform: rotate(45deg); }
.clan-emoji { width: 22px; height: 22px; flex: 0 0 auto; object-fit: contain; filter: drop-shadow(0 3px 7px rgba(0, 0, 0, 0.3)); }
.clan-emoji-text { display: inline-flex; align-items: center; justify-content: center; width: auto; min-width: 22px; font-size: 19px; line-height: 1; filter: none; }
.clan-record { color: #fff; font-size: 15px; font-weight: 900; }
.clan-played { color: var(--muted); font-size: 11px; }
.clan-winrate { color: var(--cyan-soft); font-size: 12px; font-weight: 850; }

.leaderboard-card { overflow: hidden; border-radius: var(--radius); }
.leaderboard-scroll-card .table-header { position: sticky; top: 0; z-index: 2; background: rgba(12, 29, 36, 0.98); backdrop-filter: blur(16px); }
.leaderboard-scroll-list { max-height: 780px; overflow-y: auto; overscroll-behavior: contain; scrollbar-gutter: stable; scroll-behavior: smooth; }
.leaderboard-scroll-list:focus-visible { outline: 2px solid rgba(0, 215, 220, 0.55); outline-offset: -2px; }
.leaderboard-scroll-list::-webkit-scrollbar { width: 9px; }
.leaderboard-scroll-list::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.025); }
.leaderboard-scroll-list::-webkit-scrollbar-thumb { border: 2px solid #0a171d; border-radius: 99px; background: linear-gradient(var(--cyan), var(--blue)); }
.leaderboard-block + .leaderboard-tier-heading { margin-top: 64px; }
.leaderboard-tier-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 22px; }
.leaderboard-tier-heading h3 { margin: 0; font-size: clamp(27px, 4vw, 40px); line-height: 1; letter-spacing: -0.045em; }
.leaderboard-tier-heading p:last-child { max-width: 410px; margin: 0; color: var(--muted); font-size: 11px; text-align: right; }
.table-header, .leaderboard-row { display: grid; grid-template-columns: 90px 1.4fr 0.65fr 0.75fr 0.6fr; align-items: center; gap: 18px; }
.table-header { min-height: 54px; padding: 0 24px; border-bottom: 1px solid var(--line); color: #657a80; font-size: 8px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.leaderboard-row { min-height: 78px; padding: 0 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.055); animation: row-arrive 0.4s cubic-bezier(0.2, 0.75, 0.25, 1) both; }
.leaderboard-row:last-child { border-bottom: 0; }
.leaderboard-row:hover { background: rgba(0, 215, 220, 0.035); }
.position { color: #667b81; font-size: 11px; }
.position strong { color: var(--cyan); font-size: 18px; }
.leader-name { font-weight: 850; }
.leader-rank-cell { min-width: 0; display: inline-flex; align-items: center; gap: 10px; }
.leader-rank-logo { width: 40px; height: 40px; flex: 0 0 auto; object-fit: contain; filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.3)); transition: transform 0.22s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.22s ease; }
.leader-rank { color: var(--yellow); font-size: 11px; font-weight: 900; white-space: nowrap; }
.leader-record { color: var(--muted); font-size: 11px; }
.leader-elo { color: #fff; font-size: 17px; font-weight: 900; text-align: right; }
.loading-row { min-height: 120px; display: grid; place-items: center; color: var(--muted); font-size: 12px; }

.join-banner { position: relative; min-height: 300px; display: grid; grid-template-columns: 1.4fr 0.6fr; align-items: center; gap: 60px; margin: -35px 0 112px; padding: 48px 52px; overflow: hidden; border: 1px solid rgba(0, 215, 220, 0.28); border-radius: 24px; background: linear-gradient(125deg, rgba(16, 43, 52, 0.98), rgba(7, 20, 26, 0.98) 58%, rgba(15, 27, 38, 0.98)); box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.04); }
.join-banner::before { content: "RDL"; position: absolute; right: -18px; bottom: -70px; color: rgba(255, 255, 255, 0.025); font-family: "Arial Black", Impact, sans-serif; font-size: 230px; font-style: italic; letter-spacing: -0.1em; line-height: 1; pointer-events: none; }
.join-banner::after { content: ""; position: absolute; left: 0; top: 0; width: 42%; height: 3px; background: linear-gradient(90deg, var(--cyan), var(--blue)); }
.join-banner-copy, .join-banner-action { position: relative; z-index: 1; }
.join-banner h2 { margin: 0; font-size: clamp(40px, 5vw, 64px); line-height: 0.95; letter-spacing: -0.065em; }
.join-banner-copy > p:last-child { max-width: 570px; margin: 23px 0 0; color: var(--muted); font-size: 12px; }
.join-banner-action { display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.join-banner-action > span { color: #6f858b; font-size: 9px; font-weight: 850; letter-spacing: 0.12em; text-align: center; text-transform: uppercase; }

footer { width: min(1200px, calc(100% - 40px)); min-height: 110px; margin: 0 auto; display: flex; align-items: center; gap: 15px; border-top: 1px solid var(--line); color: #667980; font-size: 10px; }
.footer-brand { display: flex; align-items: center; gap: 9px; color: #fff; }
.footer-brand img { width: 34px; height: 34px; border-radius: 8px; object-fit: cover; }
.footer-brand strong { font-size: 17px; font-style: italic; }
.footer-link { color: #91a4aa; font-weight: 700; text-decoration: none; }
.footer-link:hover { color: var(--cyan-soft); }
.footer-status { margin-left: auto; }
.footer-status i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 12px rgba(57, 229, 140, 0.45); }

.subpage-main { min-height: calc(100vh - 204px); }
.page-intro { min-height: 430px; display: grid; grid-template-columns: minmax(0, 1fr) 250px; align-items: center; gap: 80px; margin-bottom: 88px; border-bottom: 1px solid var(--line); }
.page-intro h1 { max-width: 820px; margin: 0; font-family: "Arial Black", Impact, sans-serif; font-size: clamp(52px, 7vw, 88px); line-height: 0.91; letter-spacing: -0.07em; text-transform: uppercase; }
.page-intro h1 em { color: var(--cyan); font-style: normal; text-shadow: 4px 4px 0 rgba(23, 108, 255, 0.58); }
.page-intro > div > p:last-child { max-width: 610px; margin: 27px 0 0; color: var(--muted); font-size: 14px; }
.page-intro-mark { width: 230px; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; justify-self: end; border: 1px solid rgba(0, 215, 220, 0.28); border-radius: 50%; background: radial-gradient(circle at 35% 30%, rgba(0, 215, 220, 0.16), rgba(7, 17, 22, 0.9) 58%); box-shadow: 0 28px 75px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(0, 215, 220, 0.045); }
.page-intro-mark strong { font-family: "Arial Black", Impact, sans-serif; color: var(--cyan-soft); font-size: 54px; font-style: italic; letter-spacing: -0.08em; line-height: 1; }
.page-intro-mark span { margin-top: 10px; color: #6e848a; font-size: 8px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.page-intro-clans h1 em { color: var(--red); text-shadow: 4px 4px 0 rgba(242, 238, 0, 0.35); }
.page-intro-clans .page-intro-mark { border-color: rgba(255, 36, 77, 0.3); background: radial-gradient(circle at 35% 30%, rgba(255, 36, 77, 0.16), rgba(7, 17, 22, 0.9) 58%); }
.page-intro-clans .page-intro-mark strong { color: #ff8ba0; }
.subpage-notice { margin: -52px 0 64px; }
.players-page .lookup-section { margin-bottom: 110px; }
.players-page .dashboard { scroll-margin-top: 115px; }
.clans-page .clan-standings-section { margin-bottom: 110px; }

.hero-copy,
.hero-visual,
.league-numbers,
.experience-grid,
.command-layout,
.page-intro > *,
.lookup-shell,
.clan-standings-card,
.join-banner {
  animation: surface-arrive 0.62s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}
.hero-visual, .page-intro-mark { animation-delay: 0.08s; }
.league-numbers, .lookup-shell { animation-delay: 0.12s; }
.experience-grid, .clan-standings-card { animation-delay: 0.16s; }
.command-layout, .join-banner { animation-delay: 0.2s; }

/* Subtle pointer interaction polish. Kept behind the hover media query below
   so touch devices do not get stuck in a raised state. */
.brand > img,
.logo-frame,
.logo-shadow,
.visual-tag,
.league-numbers article,
.experience-card,
.experience-icon,
.command-panel,
.command-row,
.command-row code,
.lookup-result,
.profile-card,
.stat-grid article,
.leaderboard-row,
.clan-row,
.join-banner,
.page-intro-mark {
  transition:
    transform 0.22s cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.lookup-controls input {
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.experience-card a span {
  display: inline-block;
  transition: transform 0.18s ease;
}

.button:active { transform: translateY(0) scale(0.98); }

@media (hover: hover) and (pointer: fine) {
  .brand:hover > img {
    transform: translateY(-2px) rotate(-3deg) scale(1.04);
    box-shadow: 0 10px 25px rgba(0, 215, 220, 0.16);
  }

  .hero-visual:hover .logo-frame {
    transform: translateY(-7px) rotate(-0.4deg) scale(1.015);
    box-shadow: 0 44px 105px rgba(0, 0, 0, 0.58), 0 0 85px rgba(0, 215, 220, 0.13);
  }
  .hero-visual:hover .shadow-yellow { transform: translate(28px, 27px) rotate(5deg); }
  .hero-visual:hover .shadow-red { transform: translate(-24px, 17px) rotate(-4deg); }
  .hero-visual:hover .tag-season { transform: translateY(-4px) rotate(2deg); }
  .hero-visual:hover .tag-platform { transform: translate(-3px, 3px) rotate(-1deg); }

  .league-numbers article:hover {
    z-index: 1;
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
  }

  .experience-card:hover {
    transform: translateY(-7px);
    border-color: rgba(124, 247, 245, 0.32);
    box-shadow: 0 34px 76px rgba(0, 0, 0, 0.38), inset 0 1px rgba(255, 255, 255, 0.055);
  }
  .experience-card:hover .experience-icon { transform: translateY(-3px) rotate(-3deg); }
  .experience-card:hover a span { transform: translateX(5px); }

  .command-panel:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 247, 245, 0.28);
    box-shadow: 0 34px 78px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.05);
  }
  .command-panel-host:hover { border-color: rgba(255, 107, 121, 0.3); }
  .command-row:hover { background: rgba(255, 255, 255, 0.018); }
  .command-row:hover code { transform: translateX(4px); }

  .lookup-controls input:hover {
    border-color: rgba(124, 247, 245, 0.38);
    background: #08161c;
  }
  .lookup-result:hover,
  .profile-card:hover,
  .stat-grid article:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 247, 245, 0.28);
    box-shadow: 0 34px 78px rgba(0, 0, 0, 0.36);
  }
  .stat-grid article:nth-child(2):hover { border-color: rgba(255, 107, 121, 0.34); }
  .stat-grid article:nth-child(3):hover { border-color: rgba(242, 238, 0, 0.3); }
  .stat-grid article:nth-child(4):hover { border-color: rgba(23, 108, 255, 0.38); }

  .leaderboard-row:hover,
  .clan-row:hover {
    transform: translateX(5px);
    box-shadow: inset 3px 0 var(--cyan);
  }
  .leaderboard-row:hover .leader-rank-logo {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 10px 14px rgba(0, 215, 220, 0.2));
  }
  .clan-row:hover { box-shadow: inset 3px 0 var(--red); }

  .join-banner:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 215, 220, 0.45);
    box-shadow: 0 44px 105px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.055);
  }
  .page-intro-mark:hover {
    transform: translateY(-6px) rotate(2deg);
    box-shadow: 0 38px 88px rgba(0, 0, 0, 0.48), inset 0 0 70px rgba(0, 215, 220, 0.07);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "links links";
    row-gap: 12px;
    padding-top: 12px;
    padding-bottom: 11px;
  }
  .nav-links {
    width: 100%;
    justify-content: center;
    padding-top: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.065);
  }
}

@media (max-width: 940px) {
  .hero { grid-template-columns: 1fr; gap: 55px; padding-top: 70px; }
  .hero-copy { text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-points { justify-content: center; }
  .hero-visual { width: min(82vw, 400px); justify-self: center; grid-row: 1; }
  .lookup-shell, .profile-layout { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .command-layout { grid-template-columns: 1fr; }
  .experience-card { min-height: 250px; }
  .experience-card p { min-height: auto; }
  .join-banner { grid-template-columns: 1fr; gap: 36px; }
  .join-banner-action { max-width: 280px; }
  .page-intro { grid-template-columns: 1fr; gap: 35px; padding: 65px 0; }
  .page-intro-mark { width: min(50vw, 220px); justify-self: start; grid-row: 1; }
  .lookup-form { min-height: auto; }
  .section-note { display: none; }
  .leaderboard-tier-heading { align-items: start; flex-direction: column; }
  .leaderboard-tier-heading p:last-child { text-align: left; }
  .table-header, .leaderboard-row { grid-template-columns: 64px minmax(140px, 1fr) minmax(125px, 0.8fr) auto; gap: 12px; }
  .table-header > span:nth-child(4), .leader-record { display: none; }
  .clan-table-header, .clan-row { grid-template-columns: 64px minmax(160px, 1fr) auto auto; gap: 12px; }
  .clan-table-header > span:nth-child(4), .clan-played { display: none; }
}

@media (max-width: 650px) {
  .site-header, main, footer { width: min(100% - 24px, 1200px); }
  .site-header { top: 6px; min-height: 0; gap: 9px; padding: 10px 12px 9px; border-radius: 14px; }
  .brand { gap: 8px; }
  .brand-copy strong { font-size: 18px; }
  .nav-actions { gap: 7px; }
  .nav-links { justify-content: space-between; gap: 7px; padding-top: 9px; }
  .nav-links a { font-size: 9px; letter-spacing: 0.015em; }
  .nav-links a::after { bottom: -6px; }
  .brand-copy small, .nav-user span { display: none; }
  .brand > img { width: 38px; height: 38px; }
  .button-discord { min-height: 40px; padding: 0 12px; }
  .button-discord > span:last-child { display: none; }
  .button-header-join { min-height: 38px; padding: 0 11px; }
  .hero { padding-top: 55px; padding-bottom: 45px; gap: 35px; }
  .page-intro { min-height: 0; margin-bottom: 70px; padding: 48px 0 55px; text-align: center; }
  .page-intro h1 { font-size: clamp(44px, 14vw, 62px); }
  .page-intro > div > p:last-child { font-size: 12px; }
  .page-intro-mark { width: min(56vw, 190px); justify-self: center; }
  .page-intro-mark strong { font-size: 45px; }
  .subpage-notice { margin: -38px 0 52px; }
  .hero-visual { width: min(82vw, 330px); }
  .hero h1 { font-size: clamp(48px, 16vw, 64px); }
  .hero-description { font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 270px; margin: 0 auto; }
  .hero-text-link { padding: 8px 0; }
  .visual-tag { font-size: 8px; }
  .league-numbers { grid-template-columns: 1fr; margin-bottom: 95px; }
  .league-numbers article { min-height: 91px; padding: 18px 23px; }
  .league-numbers article + article { border-left: 0; border-top: 1px solid var(--line); }
  .notice { margin-top: -62px; }
  .experience-section, .command-section, .lookup-section, .dashboard, .clan-standings-section, .leaderboard-section { margin-bottom: 96px; }
  .section-heading { align-items: start; flex-direction: column; }
  .lookup-shell { grid-template-columns: minmax(0, 1fr); }
  .lookup-form, .lookup-result { padding: 20px; }
  .lookup-controls { grid-template-columns: 1fr; }
  .lookup-result-head { align-items: flex-start; }
  .standing-chip { position: absolute; top: 20px; right: 20px; }
  .lookup-rank-row { margin-top: 38px; }
  .lookup-rank-row > div > strong { font-size: 42px; }
  .lookup-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-card { min-height: 330px; padding: 22px; }
  .rank-display { margin-top: 50px; }
  .rank-display strong { font-size: 49px; }
  .stat-grid { gap: 10px; }
  .stat-grid article { min-height: 135px; padding: 17px; }
  .table-header { display: none; }
  .leaderboard-row { grid-template-columns: 45px 1fr auto; gap: 10px; padding: 0 15px; }
  .leader-record, .leader-rank-cell { display: none; }
  .leader-elo { text-align: right; }
  .clan-table-header { display: none; }
  .clan-row { grid-template-columns: 44px minmax(0, 1fr) auto; gap: 10px; padding: 0 15px; }
  .clan-played, .clan-winrate { display: none; }
  .clan-name { font-size: 12px; }
  .join-banner { min-height: 0; margin-bottom: 80px; padding: 35px 25px; border-radius: 18px; }
  .join-banner::before { font-size: 145px; bottom: -35px; }
  .join-banner h2 { font-size: 40px; }
  footer { flex-wrap: wrap; padding: 25px 0; }
  .footer-status { margin-left: 0; width: 100%; }
}

@media (max-width: 390px) {
  .lookup-rank-row { grid-template-columns: 1fr; }
  .lookup-elo { padding: 16px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .command-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .button:hover,
  .button:active,
  .brand:hover > img,
  .league-numbers article:hover,
  .experience-card:hover,
  .experience-card:hover .experience-icon,
  .experience-card:hover a span,
  .command-panel:hover,
  .command-row:hover code,
  .lookup-result:hover,
  .profile-card:hover,
  .stat-grid article:hover,
  .leaderboard-row:hover,
  .leaderboard-row:hover .leader-rank-logo,
  .clan-row:hover,
  .join-banner:hover,
  .page-intro-mark:hover { transform: none !important; }
  .hero-visual:hover .logo-frame { transform: rotate(1.5deg) !important; }
  .hero-visual:hover .shadow-yellow { transform: translate(22px, 22px) rotate(4deg) !important; }
  .hero-visual:hover .shadow-red { transform: translate(-20px, 13px) rotate(-3deg) !important; }
  .hero-visual:hover .tag-season { transform: rotate(4deg) !important; }
  .hero-visual:hover .tag-platform { transform: rotate(-3deg) !important; }
}
