/* ==========================================================================
   TournamentMU — Live World Experience (LWE) Theme v1.1
   Command Bar nav, hero redesign, homepage sections, footer, components.
   Uses design tokens from tmu-upgrade.css (:root variables)
   ========================================================================== */

/* ==========================================================================
   COMMAND BAR — Floating Premium Navigation
   ========================================================================== */

/* ─── Bar container ─── */
.cmd-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  padding: 12px 24px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: padding;
  contain: layout style;
}

.cmd-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 14, 0.6) 0%, rgba(6, 8, 14, 0.1) 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cmd-bar.is-scrolled {
  padding: 6px 24px;
}

.cmd-bar.is-scrolled::before {
  background: rgba(6, 8, 14, 0.92);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 107, 53, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ─── Inner flex row ─── */
.cmd-bar__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  transition: height 0.3s ease;
}

.cmd-bar.is-scrolled .cmd-bar__inner {
  height: 46px;
}

/* ─── Brand cluster (full wide logo) ─── */
.cmd-bar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 12px;
}

.cmd-bar__logo {
  width: auto;
  height: 42px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, .2));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.cmd-bar.is-scrolled .cmd-bar__logo {
  height: 34px;
}

.cmd-bar__brand:hover .cmd-bar__logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 14px rgba(255, 77, 26, 0.45)) brightness(1.05);
}

/* wordmark hidden — using full logo image now */
.cmd-bar__wordmark {
  display: none;
}

/* ─── Primary nav links ─── */
.cmd-bar__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cmd-bar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

.cmd-bar__link i {
  font-size: 0.85rem;
  color: rgba(255, 107, 53, 0.5);
  transition: color 0.25s ease;
}

.cmd-bar__link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.cmd-bar__link:hover i {
  color: #ffaa55;
}

.cmd-bar__link.is-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.12), rgba(255, 120, 50, 0.06));
  border-color: rgba(255, 120, 50, 0.2);
  box-shadow: 0 0 12px rgba(255, 100, 30, 0.08), inset 0 0 8px rgba(255, 100, 30, 0.04);
}

.cmd-bar__link.is-active i {
  color: #ffaa55;
  text-shadow: 0 0 8px rgba(255, 120, 50, 0.4);
}

/* ─── Caret on "More" ─── */
.cmd-bar__caret {
  font-size: 0.7rem;
  margin-left: 2px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.cmd-bar__link--more[aria-expanded="true"] .cmd-bar__caret {
  transform: rotate(180deg);
}

/* ─── Mega dropdown ─── */
.cmd-bar__dropdown {
  position: relative;
}

.cmd-bar__mega {
  position: absolute;
  top: calc(100% + 12px);
  right: -20px;
  width: 340px;
  padding: 8px;
  background: rgba(10, 14, 24, 0.96);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 120, 50, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cmd-bar__mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cmd-bar__mega::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 40px;
  width: 12px;
  height: 12px;
  background: rgba(10, 14, 24, 0.96);
  border-top: 1px solid rgba(255, 107, 53, 0.15);
  border-left: 1px solid rgba(255, 107, 53, 0.15);
  transform: rotate(45deg);
}

.cmd-bar__mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.cmd-bar__mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.cmd-bar__mega-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.cmd-bar__mega-item.is-active {
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.1), rgba(255, 120, 50, 0.05));
  border-color: rgba(255, 120, 50, 0.15);
}

.cmd-bar__mega-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  font-size: 0.95rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.cmd-bar__mega-item:hover .cmd-bar__mega-icon {
  background: rgba(255, 140, 60, 0.12);
  color: #ffaa55;
  box-shadow: 0 0 10px rgba(255, 120, 50, 0.15);
}

.cmd-bar__mega-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cmd-bar__mega-text strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.cmd-bar__mega-text small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Right cluster ─── */
.cmd-bar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 8px;
}

.cmd-bar__divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ─── Server pulse (online count) ─── */
.cmd-bar__pulse {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  cursor: default;
}

.cmd-bar__pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  flex-shrink: 0;
  animation: cmdPulse 2s infinite;
}

@keyframes cmdPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(34, 197, 94, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 12px rgba(34, 197, 94, 0.9); }
}

.cmd-bar__pulse-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: #22c55e;
  line-height: 1;
}

.cmd-bar__pulse-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}

/* ─── Language toggle ─── */
.cmd-bar__lang {
  position: relative;
}

.cmd-bar__lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  font-size: 0.75rem;
}

.cmd-bar__lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cmd-bar__lang-code {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.cmd-bar__lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  padding: 6px;
  background: rgba(10, 14, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}

.cmd-bar__lang-list.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cmd-bar__lang-list li {
  margin: 0;
}

.cmd-bar__lang-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  transition: all 0.15s ease;
}

.cmd-bar__lang-list a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.cmd-bar__lang-iso {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: rgba(255, 107, 53, 0.7);
}

/* ─── Auth CTA buttons ─── */
.cmd-bar__cta {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cmd-bar__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cmd-bar__cta i {
  color: var(--tmu-fire-mid, #ff6b35);
}

/* ─── Play button (hero CTA in nav) ─── */
.cmd-bar__play {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff4d1a, #ff6b35);
  border: 1px solid rgba(255, 107, 53, 0.4);
  box-shadow: 0 2px 12px rgba(255, 77, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cmd-bar__play:hover {
  background: linear-gradient(135deg, #ff6b35, #ff4d1a);
  box-shadow: 0 4px 20px rgba(255, 77, 26, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  color: #fff;
}

.cmd-bar__play i {
  font-size: 0.72rem;
}

/* ─── Account avatar (logged in) ─── */
.cmd-bar__avatar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cmd-bar__avatar:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cmd-bar__avatar i {
  font-size: 1rem;
  color: #ffaa55;
}

.cmd-bar__user {
  max-width: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─── Hamburger (mobile only) ─── */
.cmd-bar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.cmd-bar__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.cmd-bar__burger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cmd-bar__burger.is-active span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}
.cmd-bar__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.cmd-bar__burger.is-active span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */

.cmd-drawer {
  position: fixed;
  inset: 0;
  z-index: 1099;
  pointer-events: none;
  visibility: hidden;
}

.cmd-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cmd-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cmd-drawer.is-open .cmd-drawer__overlay {
  opacity: 1;
}

.cmd-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: rgba(10, 14, 24, 0.98);
  border-left: 1px solid rgba(255, 107, 53, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmd-drawer.is-open .cmd-drawer__panel {
  transform: translateX(0);
}

.cmd-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cmd-drawer__title {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cmd-drawer__close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.cmd-drawer__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cmd-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cmd-drawer__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.cmd-drawer__link i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 107, 53, 0.5);
  transition: color 0.2s ease;
}

.cmd-drawer__link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.cmd-drawer__link:hover i {
  color: #ffaa55;
}

.cmd-drawer__link.is-active {
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.1), rgba(255, 120, 50, 0.04));
  border-color: rgba(255, 120, 50, 0.15);
  color: #fff;
}

.cmd-drawer__link.is-active i {
  color: #ffaa55;
}

.cmd-drawer__foot {
  padding: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cmd-drawer__status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.cmd-drawer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cmd-drawer__btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.cmd-drawer__btn--play {
  background: linear-gradient(135deg, #ff4d1a, #ff6b35);
  border-color: rgba(255, 107, 53, 0.3);
  color: #fff;
}

.cmd-drawer__btn--play:hover {
  box-shadow: 0 4px 16px rgba(255, 77, 26, 0.4);
  color: #fff;
}

/* ==========================================================================
   COMMAND BAR — RESPONSIVE
   ========================================================================== */

/* Hide old topPanel completely */
body.nova .topPanel {
  display: none !important;
}

@media (max-width: 1080px) {
  .cmd-bar__nav {
    display: none;
  }
  .cmd-bar__pulse-label {
    display: none;
  }
  .cmd-bar__burger {
    display: flex;
  }
}

@media (max-width: 640px) {
  .cmd-bar {
    padding: 8px 14px;
  }
  .cmd-bar.is-scrolled {
    padding: 4px 14px;
  }
  .cmd-bar__wordmark {
    font-size: 1rem;
  }
  .cmd-bar__cta,
  .cmd-bar__play {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
  .cmd-bar__right {
    gap: 6px;
  }
  .cmd-bar__divider {
    display: none;
  }
  .cmd-bar__lang {
    display: none;
  }
  .cmd-bar__user {
    display: none;
  }
}

@media (max-width: 420px) {
  .cmd-bar__pulse {
    display: none;
  }
  .cmd-bar__cta {
    display: none;
  }
}

/* ==========================================================================
   ANNOUNCEMENT BAR — Warfront News Strip v7
   Matches timer/realm/ticker dark-glass aesthetic. Subtle ember accents.
   ========================================================================== */

.tmu-announce#tmuAnnounce {
  position: relative;
  width: 100%;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  z-index: 999;
  overflow: hidden;
  font-family: var(--tmu-font-body);
}

/* Top ember scanline */
.tmu-announce#tmuAnnounce::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 120, 55, 0.12) 35%,
    rgba(255, 80, 30, 0.08) 65%,
    transparent);
  pointer-events: none;
}

.tmu-announce#tmuAnnounce .tmu-announce__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  height: 42px;
  position: relative;
}

/* NEWS badge */
.tmu-announce#tmuAnnounce .tmu-announce__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 4px 14px;
  border-radius: 4px;
  background: rgba(255, 90, 30, 0.03);
  border: 1px solid rgba(255, 120, 55, 0.1);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff9940;
  text-shadow: 0 0 8px rgba(255, 120, 55, 0.2);
  position: relative;
  overflow: hidden;
}

/* Badge shimmer */
.tmu-announce#tmuAnnounce .tmu-announce__badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 120, 55, 0.06), transparent);
  animation: announceBadgeShimmer7 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes announceBadgeShimmer7 {
  0%, 60% { left: -100%; }
  100% { left: 100%; }
}

.tmu-announce#tmuAnnounce .tmu-announce__badge .fa {
  font-size: 11px;
  color: #ff9940;
  animation: tmuAnnouncePulse7 2s ease-in-out infinite;
}

@keyframes tmuAnnouncePulse7 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.12); }
}

/* Carousel track */
.tmu-announce#tmuAnnounce .tmu-announce__track {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.tmu-announce#tmuAnnounce .tmu-announce__item {
  display: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--tmu-ease), transform 0.4s var(--tmu-ease);
  position: relative;
  padding-left: 14px;
}

.tmu-announce#tmuAnnounce .tmu-announce__item.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  will-change: opacity, transform;
}

.tmu-announce#tmuAnnounce .tmu-announce__icon {
  font-size: 13px;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

/* Type icon colors — warm fire palette */
.tmu-announce#tmuAnnounce .tmu-announce__item[data-type="highlight"] .tmu-announce__icon {
  color: var(--tmu-neon-gold, #ffd700);
  text-shadow: 0 0 10px rgba(255, 200, 50, 0.4);
}

.tmu-announce#tmuAnnounce .tmu-announce__item[data-type="event"] .tmu-announce__icon {
  color: #ff9940;
  text-shadow: 0 0 10px rgba(255, 150, 60, 0.4);
}

.tmu-announce#tmuAnnounce .tmu-announce__item[data-type="update"] .tmu-announce__icon {
  color: #64ff8c;
  text-shadow: 0 0 10px rgba(100, 255, 140, 0.4);
}

.tmu-announce#tmuAnnounce .tmu-announce__text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.tmu-announce#tmuAnnounce a.tmu-announce__text:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 150, 70, 0.2);
}

/* Left accent bars per type */
.tmu-announce#tmuAnnounce .tmu-announce__item[data-type="highlight"]::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 16px; border-radius: 2px;
  background: linear-gradient(180deg, #ffd700, #ff7a2e);
  box-shadow: 0 0 8px rgba(255, 200, 50, 0.4);
}

.tmu-announce#tmuAnnounce .tmu-announce__item[data-type="event"]::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 16px; border-radius: 2px;
  background: linear-gradient(180deg, #ff9940, #ff5522);
  box-shadow: 0 0 8px rgba(255, 150, 60, 0.4);
}

.tmu-announce#tmuAnnounce .tmu-announce__item[data-type="update"]::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 2px; height: 16px; border-radius: 2px;
  background: linear-gradient(180deg, #64ff8c, #2ecc71);
  box-shadow: 0 0 8px rgba(100, 255, 140, 0.4);
}

/* Controls — ghost buttons */
.tmu-announce#tmuAnnounce .tmu-announce__controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.tmu-announce#tmuAnnounce .tmu-announce__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tmu-announce#tmuAnnounce .tmu-announce__arrow:hover {
  background: rgba(255, 120, 55, 0.06);
  border-color: rgba(255, 120, 55, 0.18);
  color: #ff9940;
  box-shadow: 0 0 10px rgba(255, 120, 55, 0.08);
}

/* Dismiss */
.tmu-announce#tmuAnnounce .tmu-announce__dismiss {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: transparent;
  color: rgba(255, 255, 255, 0.22);
  font-size: 10px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 4px;
  transition: all 0.25s ease;
}

.tmu-announce#tmuAnnounce .tmu-announce__dismiss:hover {
  background: rgba(255, 50, 50, 0.07);
  border-color: rgba(255, 50, 50, 0.18);
  color: #ff6b6b;
}

/* Glow */
.tmu-announce#tmuAnnounce .tmu-announce__glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 120, 55, 0.015) 0%, transparent 70%);
  pointer-events: none;
}

/* Bottom scanline */
.tmu-announce#tmuAnnounce::after {
  content: '';
  position: absolute;
  bottom: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 90, 30, 0.08) 35%,
    rgba(255, 120, 55, 0.06) 65%,
    transparent);
  pointer-events: none;
}

/* ==========================================================================
   LWE HERO v9 — INFERNO FORGE COMMAND CENTER
   Fire/ember aesthetic. Warm radial glows, ember particles,
   molten scan sweep, fire-lit logo, cindered typography.
   ========================================================================== */

.tmu-hero.tmu-hero--lwe {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  padding: 100px 0 0;
  background: transparent;
}

/* ── Inferno energy field — layered radial fire glows ── */
.tmu-hero__veil {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 38%, rgba(255, 120, 50, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 50% 32%, rgba(255, 85, 30, 0.05), transparent 50%),
    radial-gradient(ellipse 80% 65% at 50% 55%, rgba(255, 60, 20, 0.035), transparent 60%),
    radial-gradient(ellipse 30% 25% at 50% 42%, rgba(255, 170, 85, 0.04), transparent 40%) !important;
  opacity: 1 !important;
  animation: heroInfernoField 10s ease-in-out infinite alternate !important;
}

@keyframes heroInfernoField {
  0%   { opacity: 0.6; }
  50%  { opacity: 1; }
  100% { opacity: 0.75; }
}

/* ── Particle system — rising ember motes ── */
.tmu-hero__particles {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  pointer-events: none;
  z-index: 1;
}

.tmu-hero__orb {
  display: block !important;
  position: absolute;
  border-radius: 50%;
}

.tmu-hero__orb--1 {
  width: 2px; height: 2px;
  background: rgba(255, 140, 50, 0.85);
  box-shadow: 0 0 8px rgba(255, 120, 40, 0.5), 0 0 20px rgba(255, 80, 20, 0.15);
  left: 12%; bottom: 25%;
  animation: heroEmberRise 12s ease-in-out infinite;
  animation-delay: 0s;
}
.tmu-hero__orb--2 {
  width: 2px; height: 2px;
  background: rgba(255, 170, 70, 0.75);
  box-shadow: 0 0 6px rgba(255, 150, 50, 0.4), 0 0 16px rgba(255, 100, 30, 0.12);
  left: 78%; bottom: 40%;
  animation: heroEmberRise 15s ease-in-out infinite;
  animation-delay: 2.5s;
}
.tmu-hero__orb--3 {
  width: 3px; height: 3px;
  background: rgba(255, 100, 30, 0.7);
  box-shadow: 0 0 8px rgba(255, 80, 20, 0.4), 0 0 18px rgba(255, 60, 10, 0.12);
  left: 38%; bottom: 12%;
  animation: heroEmberRise 13s ease-in-out infinite;
  animation-delay: 1s;
}
.tmu-hero__orb--4 {
  width: 2px; height: 2px;
  background: rgba(255, 200, 100, 0.65);
  box-shadow: 0 0 6px rgba(255, 170, 70, 0.35);
  left: 88%; bottom: 55%;
  animation: heroEmberRise 16s ease-in-out infinite;
  animation-delay: 3.5s;
}
.tmu-hero__orb--5 {
  width: 2px; height: 2px;
  background: rgba(255, 120, 40, 0.7);
  box-shadow: 0 0 7px rgba(255, 100, 30, 0.4);
  left: 22%; bottom: 65%;
  animation: heroEmberRise 14s ease-in-out infinite;
  animation-delay: 4s;
}
.tmu-hero__orb--6 {
  width: 2px; height: 2px;
  background: rgba(255, 90, 25, 0.55);
  box-shadow: 0 0 6px rgba(255, 70, 20, 0.25);
  left: 60%; bottom: 70%;
  animation: heroEmberRise 17s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes heroEmberRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  8%   { opacity: 0.9; }
  35%  { transform: translateY(-120px) translateX(15px) scale(0.8); opacity: 0.6; }
  65%  { transform: translateY(-250px) translateX(-10px) scale(0.5); opacity: 0.25; }
  100% { transform: translateY(-400px) translateX(5px) scale(0.3); opacity: 0; }
}

/* ── Horizontal heat sweep — molten scan line ── */
.tmu-hero__sweep {
  display: block !important;
  position: absolute !important;
  top: 0; left: 0; right: 0;
  height: 1px !important;
  background: linear-gradient(90deg,
    transparent 15%,
    rgba(255, 120, 40, 0.4),
    rgba(255, 170, 70, 0.25),
    rgba(255, 100, 30, 0.15),
    transparent 85%) !important;
  box-shadow: 0 0 20px rgba(255, 100, 30, 0.15), 0 0 40px rgba(255, 60, 15, 0.06) !important;
  z-index: 2 !important;
  pointer-events: none !important;
  animation: heroScanPass 8s ease-in-out infinite !important;
  opacity: 0.7 !important;
}

@keyframes heroScanPass {
  0%   { top: -3%; opacity: 0; }
  4%   { opacity: 0.7; }
  48%  { top: 105%; opacity: 0.15; }
  49%  { opacity: 0; }
  100% { top: -3%; opacity: 0; }
}

/* ── Runic circle, pillars — hidden ── */
.tmu-hero__rune,
.tmu-hero__pillar {
  display: none !important;
}

/* ── Hero ::before — faint fire-lit grid texture ── */
.tmu-hero.tmu-hero--lwe::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255, 120, 50, 0.012) 80px,
      rgba(255, 120, 50, 0.012) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255, 120, 50, 0.008) 80px,
      rgba(255, 120, 50, 0.008) 81px
    ),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(4, 6, 12, 0.4), transparent 55%) !important;
  opacity: 0.6 !important;
}

/* ── Bottom blend — seamless transition ── */
.tmu-hero.tmu-hero--lwe::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  height: 150px !important;
  background: linear-gradient(to top,
    rgba(4, 6, 12, 0.55) 0%,
    rgba(4, 6, 12, 0.15) 45%,
    transparent 100%) !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

/* ── Grid watermark — ember "MU" ghost ── */
.tmu-hero__grid::before {
  content: 'MU' !important;
  position: absolute !important;
  top: 45% !important; left: 50% !important;
  transform: translate(-50%, -55%) !important;
  font-family: 'Cinzel', serif !important;
  font-size: clamp(10rem, 28vw, 22rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  color: transparent !important;
  -webkit-text-stroke: 1px rgba(255, 120, 50, 0.025) !important;
  letter-spacing: 0.2em !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.25 !important;
}

.tmu-hero__grid::after {
  content: none !important;
}

/* Hero Content Grid */
.tmu-hero__grid {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 30px;
  text-align: center;
}

.tmu-hero__content {
  max-width: 840px;
  margin: 0 auto;
}

/* ── Logo — Inferno energy shield with fire glow ── */
.tmu-hero__logo-wrap {
  text-align: center;
  margin-bottom: 28px;
  animation: tmuSlideUp 0.5s var(--tmu-ease) both;
  perspective: 900px;
  position: relative;
}

/* Faint fire ring behind logo */
.tmu-hero__logo-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 320px; height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 120, 50, 0.05) 0%, transparent 70%);
  border: 1px solid rgba(255, 120, 50, 0.04);
  pointer-events: none;
  animation: heroLogoRing 6s ease-in-out infinite alternate;
}

@keyframes heroLogoRing {
  0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

.tmu-hero__logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 30px rgba(255, 120, 50, 0.3))
    drop-shadow(0 0 60px rgba(255, 80, 20, 0.12))
    drop-shadow(0 0 80px rgba(255, 60, 15, 0.08))
    drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
  transition: filter 0.5s var(--tmu-ease), transform 0.5s var(--tmu-ease);
  animation: heroLogoFloat 7s ease-in-out infinite alternate;
  position: relative;
  z-index: 1;
}

@keyframes heroLogoFloat {
  0% {
    filter: drop-shadow(0 0 25px rgba(255,120,50,0.25)) drop-shadow(0 0 50px rgba(255,80,20,0.1)) drop-shadow(0 0 70px rgba(255,60,15,0.06)) drop-shadow(0 4px 16px rgba(0,0,0,0.7));
    transform: translateY(0);
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(255,120,50,0.4)) drop-shadow(0 0 80px rgba(255,80,20,0.18)) drop-shadow(0 0 100px rgba(255,60,15,0.12)) drop-shadow(0 4px 16px rgba(0,0,0,0.7));
    transform: translateY(-8px);
  }
}

.tmu-hero__logo-wrap:hover .tmu-hero__logo {
  filter:
    drop-shadow(0 0 50px rgba(255, 140, 60, 0.55))
    drop-shadow(0 0 100px rgba(255, 100, 35, 0.25))
    drop-shadow(0 0 120px rgba(255, 70, 20, 0.15))
    drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
  transform: scale(1.03) translateY(-5px);
  animation-play-state: paused;
}

/* ── Live player count — fire HUD badge ── */
.tmu-hero__live-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 20px;
  background: rgba(255, 120, 50, 0.05);
  border: 1px solid rgba(255, 120, 50, 0.14);
  border-radius: 30px;
  margin-bottom: 22px;
  animation: tmuSlideUp 0.55s 0.05s var(--tmu-ease) both;
  text-shadow: 0 0 10px rgba(255, 140, 60, 0.15);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.02em;
}

/* Micro shimmer on live count */
.tmu-hero__live-count::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 60, 0.07), transparent);
  animation: liveCountShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes liveCountShimmer {
  0%, 70% { left: -100%; }
  100% { left: 100%; }
}

.tmu-hero__live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff8833;
  box-shadow: 0 0 8px rgba(255, 120, 50, 0.7), 0 0 20px rgba(255, 80, 25, 0.25);
  animation: heroLiveDotPulse 2s ease-in-out infinite;
}

@keyframes heroLiveDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}

.tmu-hero__live-num {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: 16px;
  background: linear-gradient(135deg, #ffaa55, #ff7733);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Eyebrow Tag — Fire ember chip ── */
.tmu-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 170, 85, 0.9);
  margin-bottom: 22px;
  padding: 7px 24px;
  background: rgba(255, 120, 50, 0.04);
  border: 1px solid rgba(255, 120, 50, 0.12);
  border-radius: 30px;
  text-shadow: 0 0 12px rgba(255, 120, 50, 0.25);
  animation: tmuSlideUp 0.6s var(--tmu-ease) both;
  position: relative;
  overflow: hidden;
}

.tmu-hero__eyebrow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 120, 50, 0.1), transparent);
  animation: eyebrowShimmer 5s ease-in-out infinite;
}

@keyframes eyebrowShimmer {
  0%, 55% { left: -100%; }
  100% { left: 100%; }
}

/* ── Headline — Cindered fire serif ── */
.tmu-hero__h1 {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 26px;
  text-shadow:
    0 0 60px rgba(255, 100, 30, 0.12),
    0 0 120px rgba(255, 60, 15, 0.05),
    0 2px 8px rgba(0, 0, 0, 0.5);
  animation: tmuSlideUp 0.7s 0.1s var(--tmu-ease) both;
}

.tmu-hero__h1 em {
  font-style: normal;
  background: linear-gradient(135deg,
    #ff7733,
    #ffaa55,
    #ffd700,
    #ff6b2b,
    #ffcc77);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroEmShift 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 16px rgba(255, 120, 50, 0.25));
}

@keyframes heroEmShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ── Lead text ── */
.tmu-hero__lead {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  max-width: 660px;
  margin: 0 auto 36px;
  animation: tmuSlideUp 0.8s 0.2s var(--tmu-ease) both;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.01em;
}

/* ── Action buttons row ── */
.tmu-hero__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  animation: tmuSlideUp 0.9s 0.3s var(--tmu-ease) both;
}

/* ── Scroll indicator — ember chevron ── */
.tmu-hero__scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: tmuSlideUp 1.2s 0.6s var(--tmu-ease) both;
  pointer-events: none;
}

.tmu-hero__scroll-hint span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 140, 60, 0.3);
}

.tmu-hero__scroll-arrow {
  width: 18px; height: 18px;
  border-right: 1.5px solid rgba(255, 120, 50, 0.25);
  border-bottom: 1.5px solid rgba(255, 120, 50, 0.25);
  transform: rotate(45deg);
  animation: heroScrollBounce 2.5s ease-in-out infinite;
}

@keyframes heroScrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50%      { transform: rotate(45deg) translateY(8px); opacity: 0.7; }
}

/* ==========================================================================
   BUTTON VARIANTS — Gaming Energy Style v3
   ========================================================================== */

/* ── Primary button upgrade ── */
.mu-btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ff4d1a, #ff6b35, #ff8844, #ff4d1a) !important;
  background-size: 300% 300% !important;
  border: 1px solid rgba(255, 120, 50, 0.4) !important;
  color: #fff !important;
  border-radius: var(--tmu-r-sm);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.35s var(--tmu-ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow:
    0 0 25px rgba(255, 77, 26, 0.25),
    0 4px 15px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  animation: btnPrimaryPulse 3s ease-in-out infinite alternate;
}

@keyframes btnPrimaryPulse {
  0%   { box-shadow: 0 0 25px rgba(255,77,26,0.2), 0 4px 15px rgba(0,0,0,0.35); }
  100% { box-shadow: 0 0 40px rgba(255,77,26,0.35), 0 4px 20px rgba(0,0,0,0.4); }
}

.mu-btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: none;
}

.mu-btn--primary:hover {
  background-position: 100% 0 !important;
  box-shadow:
    0 0 45px rgba(255, 77, 26, 0.5),
    0 0 80px rgba(255, 50, 10, 0.2),
    0 6px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 150, 80, 0.65) !important;
  text-decoration: none;
  color: #fff !important;
  animation: none;
}

.mu-btn--primary:hover::before {
  animation: btnShine3 0.7s ease forwards;
}

@keyframes btnShine3 {
  from { left: -100%; }
  to   { left: 100%; }
}

.mu-btn--primary.mu-btn--lg {
  padding: 16px 40px;
  font-size: 15px;
}

/* ── Outline button ── */
.mu-btn--outline {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: var(--tmu-r-sm);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.35s var(--tmu-ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mu-btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 140, 60, 0.4), transparent 70%);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--tmu-ease), background-position 0.4s ease;
}

.mu-btn--outline:hover {
  border-color: rgba(255, 140, 60, 0.4);
  color: #ffaa55;
  box-shadow:
    0 0 30px rgba(255, 120, 50, 0.15),
    0 0 60px rgba(255, 80, 25, 0.06),
    inset 0 0 20px rgba(255, 120, 50, 0.03);
  background: rgba(255, 120, 50, 0.05);
  text-decoration: none;
  transform: translateY(-3px) scale(1.02);
  text-shadow: 0 0 10px rgba(255, 120, 50, 0.35);
}

.mu-btn--outline:hover::before {
  opacity: 1;
  background-position: 100% 100%;
}

.mu-btn--outline.mu-btn--lg {
  padding: 16px 40px;
  font-size: 15px;
}

/* ==========================================================================
   EVENT TIMER — Obsidian Forge v8
   Minimal dark-steel strip. Digits float in recessed pockets with a
   warm under-glow. The intro tag sits as a slim left column.
   ========================================================================== */

.tmu-countdown--hero {
  margin: 0 auto 10px;
  max-width: 1200px;
  padding: 0 24px;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  overflow: visible;
  position: relative;
}

.tmu-countdown--hero::before,
.tmu-countdown--hero::after { display: none; }

/* ── Inner shell — dark steel plate ── */
.tmu-countdown__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(8, 6, 5, 0.72);
  border: 1px solid rgba(255, 160, 80, 0.06);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  box-shadow:
    0 4px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 180, 100, 0.035),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Top accent line — subtle warm wire */
.tmu-countdown__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 140, 60, 0.22) 35%,
    rgba(255, 90, 30, 0.35) 50%,
    rgba(255, 140, 60, 0.22) 65%,
    transparent);
  pointer-events: none;
  z-index: 3;
  animation: timerWire8 5s ease-in-out infinite;
}

@keyframes timerWire8 {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

/* ── Left intro column ── */
.tmu-countdown__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 28px;
  margin: 0;
  background: linear-gradient(180deg,
    rgba(255, 100, 40, 0.04) 0%,
    transparent 100%);
  border-right: 1px solid rgba(255, 120, 60, 0.05);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  min-width: 150px;
}

.tmu-countdown__intro::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 40%;
  background: radial-gradient(ellipse 100% 100% at 50% 100%,
    rgba(255, 90, 35, 0.04), transparent 60%);
  pointer-events: none;
}

.tmu-countdown__tag {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(255, 100, 40, 0.06);
  color: #ffaa55;
  border: 1px solid rgba(255, 130, 60, 0.12);
  white-space: nowrap;
  font-weight: 700;
}

.tmu-countdown--hero #timer_div_title {
  margin: 0;
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 160, 90, 0.22);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

/* ── Digit grid ── */
.tmu-countdown--hero #timer_div_time {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.tmu-countdown--hero .timmer_inner_block {
  flex: 1;
  padding: 22px 14px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 120, 60, 0.03);
  box-shadow: none;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.4s ease;
}

.tmu-countdown--hero .timmer_inner_block:last-child {
  border-right: none;
}

.tmu-countdown--hero .timmer_inner_block:hover {
  background: rgba(255, 120, 55, 0.02);
}

/* Pocket under-glow on hover */
.tmu-countdown--hero .timmer_inner_block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 50%;
  background: radial-gradient(ellipse 100% 120% at 50% 100%,
    rgba(255, 100, 40, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.tmu-countdown--hero .timmer_inner_block:hover::after { opacity: 1; }

/* ── Digits — cinematic gradient ── */
.tmu-countdown--hero .timmer_inner_block .count {
  font-size: 44px;
  font-weight: 900;
  font-family: 'Cinzel', 'Georgia', serif;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  background: linear-gradient(170deg, #ffffff 15%, #ffe0b3 40%, #ffaa55 70%, #ff7733 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: digitForge8 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(255, 140, 60, 0.08));
}

@keyframes digitForge8 {
  0%   { background-position: 0% 20%; }
  100% { background-position: 100% 80%; }
}

.tmu-countdown--hero .timmer_inner_block .title {
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 170, 100, 0.25);
  order: 1;
}

/* ── Separator — warm dots ── */
.tmu-countdown__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2px;
  position: relative;
  flex-shrink: 0;
}

.tmu-countdown__sep::before,
.tmu-countdown__sep::after {
  content: '';
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 150, 70, 0.5);
  box-shadow: 0 0 6px rgba(255, 130, 60, 0.4);
  animation: sepPulse8 1.8s ease-in-out infinite;
}
.tmu-countdown__sep::before { top: calc(50% - 10px); }
.tmu-countdown__sep::after  { top: calc(50% + 6px); }

@keyframes sepPulse8 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.15; transform: scale(0.7); }
}

.tmu-countdown__flare { display: none; }

/* ── Timer Responsive ── */
@media (max-width: 768px) {
  .tmu-countdown--hero { padding: 0 16px; margin-bottom: 8px; }
  .tmu-countdown__inner { flex-direction: column; border-radius: 14px; }
  .tmu-countdown__intro {
    flex-direction: row; width: 100%;
    padding: 10px 16px; border-right: none;
    border-bottom: 1px solid rgba(255, 120, 60, 0.05);
    min-width: unset; gap: 10px;
  }
  .tmu-countdown--hero #timer_div_time { width: 100%; }
  .tmu-countdown--hero .timmer_inner_block { padding: 16px 8px; }
  .tmu-countdown--hero .timmer_inner_block .count { font-size: 30px; }
}

@media (max-width: 480px) {
  .tmu-countdown--hero { padding: 0 12px; margin-bottom: 6px; }
  .tmu-countdown--hero .timmer_inner_block .count { font-size: 24px; }
  .tmu-countdown--hero .timmer_inner_block .title { font-size: 6px; letter-spacing: 0.14em; }
  .tmu-countdown--hero .timmer_inner_block { padding: 14px 6px; }
  .tmu-countdown__intro { flex-direction: column; text-align: center; padding: 10px 14px; }
  .tmu-countdown__sep { display: none; }
}

/* ==========================================================================
   SERVER STATUS — Forge Panel v10
   Single premium strip. Dark-steel glass, inline cells for
   server · online · exp · champion · guild. No redundancy.
   ========================================================================== */

.tmu-forge-panel {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 10px;
  animation: tmuSlideUp 1s 0.4s var(--tmu-ease) both;
}

.tmu-forge-panel__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8, 6, 5, 0.72);
  border: 1px solid rgba(255, 160, 80, 0.06);
  border-radius: 16px;
  padding: 0;
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  overflow: hidden;
  box-shadow:
    0 4px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 180, 100, 0.035),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Top accent wire */
.tmu-forge-panel__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 140, 60, 0.22) 35%,
    rgba(255, 90, 30, 0.35) 50%,
    rgba(255, 140, 60, 0.22) 65%,
    transparent);
  pointer-events: none;
  z-index: 3;
  animation: forgeWire10 5s ease-in-out infinite;
}

@keyframes forgeWire10 {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}

/* ── Separator pip ── */
.tmu-forge-sep {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(180deg,
    transparent 15%,
    rgba(255, 120, 60, 0.06) 50%,
    transparent 85%);
  flex-shrink: 0;
}

/* ── Cell — each stat block ── */
.tmu-forge-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  position: relative;
  transition: background 0.3s ease;
  flex-shrink: 0;
}

.tmu-forge-cell:hover {
  background: rgba(255, 120, 55, 0.02);
}

/* Cell scan on hover */
.tmu-forge-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255, 140, 60, 0.03) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.tmu-forge-cell:hover::after { opacity: 1; }

/* Icon circles */
.tmu-forge-cell > i {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 12px;
  background: rgba(255, 120, 55, 0.04);
  border: 1px solid rgba(255, 140, 60, 0.07);
  color: #ffaa55;
  flex-shrink: 0;
  transition: all 0.35s ease;
}

.tmu-forge-cell:hover > i {
  box-shadow:
    0 0 10px rgba(255, 140, 60, 0.12),
    0 0 22px rgba(255, 100, 40, 0.04);
  border-color: rgba(255, 140, 60, 0.2);
  transform: scale(1.06);
  color: #ffcc77;
}

/* Text block */
.tmu-forge-cell__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tmu-forge-cell__text > strong {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  letter-spacing: 0.01em;
}

.tmu-forge-cell__text > strong > small {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.4;
}

.tmu-forge-cell__text > span {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 170, 100, 0.3);
  line-height: 1;
}

/* ── Server Cell — status dot ── */
.tmu-forge-cell--server {
  padding-left: 18px;
}

.tmu-forge-cell__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.tmu-forge-cell--server.is-online .tmu-forge-cell__dot {
  background: radial-gradient(circle at 38% 35%, #ffcc44, #ffaa33 50%, #ff7722);
  box-shadow:
    0 0 6px rgba(255, 160, 60, 0.7),
    0 0 14px rgba(255, 100, 40, 0.3);
  animation: forgeDot10 2.4s ease-in-out infinite;
}

.tmu-forge-cell--server.is-online .tmu-forge-cell__dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 60, 0.1);
  animation: forgeRing10 2.4s ease-in-out infinite;
}

@keyframes forgeDot10 {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.55); }
}

@keyframes forgeRing10 {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50%      { transform: scale(2.8); opacity: 0; }
}

.tmu-forge-cell--server.is-offline .tmu-forge-cell__dot {
  background: radial-gradient(circle at 38% 35%, #555, #3a3a3a 50%, #2a2a2a);
  box-shadow: 0 0 3px rgba(80, 80, 80, 0.15);
}

.tmu-forge-cell--server.is-online .tmu-forge-cell__text > span {
  color: rgba(255, 170, 100, 0.45);
}

.tmu-forge-cell--server.is-offline .tmu-forge-cell__text > span {
  color: rgba(120, 120, 120, 0.45);
}

/* ── Online Cell — highlighted count ── */
.tmu-forge-cell--online > i {
  background: rgba(255, 120, 55, 0.07);
  border-color: rgba(255, 140, 60, 0.12);
}

.tmu-forge-cell--online .tmu-forge-cell__text > strong {
  font-size: 22px;
  font-family: 'Cinzel', 'Georgia', serif;
  font-weight: 900;
  background: linear-gradient(170deg, #ffffff 15%, #ffe0b3 45%, #ffaa55 75%, #ff7733 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: forgeDigit10 6s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 8px rgba(255, 140, 60, 0.08));
}

@keyframes forgeDigit10 {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

/* ── EXP Cell ── */
.tmu-forge-cell--exp .tmu-forge-cell__text > strong {
  color: #ffcc77;
}

/* ── Champion Cell ── */
.tmu-forge-cell--champ > i {
  color: #ffd700;
  background: rgba(255, 200, 50, 0.04);
  border-color: rgba(255, 200, 50, 0.08);
}

/* ── Guild Cell ── */
.tmu-forge-cell--guild {
  padding-right: 20px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .tmu-forge-panel__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .tmu-forge-sep {
    display: none;
  }
  .tmu-forge-cell {
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 120, 60, 0.025);
  }
  .tmu-forge-cell:last-child { border-bottom: none; }
  .tmu-forge-cell--server { padding-left: 20px; }
  .tmu-forge-cell--guild { padding-right: 20px; }
}

@media (max-width: 768px) {
  .tmu-forge-panel { padding: 0 16px 8px; }
  .tmu-forge-panel__inner { border-radius: 14px; }
  .tmu-forge-cell {
    padding: 10px 14px;
    min-width: 120px;
  }
  .tmu-forge-cell--online .tmu-forge-cell__text > strong {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .tmu-forge-panel__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .tmu-forge-cell {
    justify-content: flex-start;
    min-width: unset;
  }
}

/* Hide old realm status classes (backward compat) */
.tmu-realm-status { display: none !important; }
.tmu-realm-node { display: none !important; }

/* ==========================================================================
   EVENT TICKER — Obsidian Live Feed v8
   Compact dark-steel strip matching the timer/realm panels.
   Fire-accented LIVE badge, scrolling event cards.
   ========================================================================== */

/* Override old ticker wrapper */
.tmu-hero__ticker {
  display: none !important;
}

.tmu-announce[data-hero-ticker] {
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 10px;
  animation: tmuSlideUp 1.1s 0.55s var(--tmu-ease) both;
}

.tmu-announce[data-hero-ticker] .tmu-announce__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(8, 6, 5, 0.72);
  border: 1px solid rgba(255, 160, 80, 0.06);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(40px) saturate(1.3);
  -webkit-backdrop-filter: blur(40px) saturate(1.3);
  box-shadow:
    0 4px 48px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 180, 100, 0.035),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Top accent wire */
.tmu-announce[data-hero-ticker] .tmu-announce__inner::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 140, 60, 0.14),
    transparent);
  pointer-events: none;
  z-index: 2;
}

/* LIVE Badge */
.tmu-announce[data-hero-ticker] .tmu-announce__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  background: rgba(255, 100, 40, 0.02);
  border-right: 1px solid rgba(255, 120, 60, 0.04);
  flex-shrink: 0;
}

.tmu-announce[data-hero-ticker] .tmu-announce__badge > i {
  font-size: 10px;
  color: #ffaa55;
  animation: announceBoltPulse 2s ease-in-out infinite;
}

.tmu-announce[data-hero-ticker] .tmu-announce__badge > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ffaa55;
}

/* Legend Tags */
.tmu-announce[data-hero-ticker] .tmu-announce__legend {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 120, 60, 0.03);
}

.tmu-announce[data-hero-ticker] .tmu-announce__tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.tmu-announce[data-hero-ticker] .tmu-announce__tag-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tmu-announce[data-hero-ticker] .tmu-announce__tag--boss {
  color: #ef5350;
  background: rgba(229, 57, 53, 0.06);
}
.tmu-announce[data-hero-ticker] .tmu-announce__tag--boss .tmu-announce__tag-dot {
  background: #ef5350;
  box-shadow: 0 0 6px rgba(239, 83, 80, 0.4);
}

.tmu-announce[data-hero-ticker] .tmu-announce__tag--event {
  color: #ffab40;
  background: rgba(255, 171, 64, 0.06);
}
.tmu-announce[data-hero-ticker] .tmu-announce__tag--event .tmu-announce__tag-dot {
  background: #ffab40;
  box-shadow: 0 0 6px rgba(255, 171, 64, 0.4);
}

.tmu-announce[data-hero-ticker] .tmu-announce__tag--invasion {
  color: #ce93d8;
  background: rgba(206, 147, 216, 0.06);
}
.tmu-announce[data-hero-ticker] .tmu-announce__tag--invasion .tmu-announce__tag-dot {
  background: #ce93d8;
  box-shadow: 0 0 6px rgba(206, 147, 216, 0.4);
}

/* Track */
.tmu-announce[data-hero-ticker] .tmu-announce__track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 8px 12px;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__track {
  overflow: hidden;
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__flow {
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
  animation: ticker-marquee 38s linear infinite;
}

.tmu-announce[data-hero-ticker]:hover .tmu-ticker__flow {
  animation-play-state: paused;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__flow--static {
  animation: none;
  min-width: 100%;
}

/* Item cards */
.tmu-announce[data-hero-ticker] .tmu-ticker__item {
  min-width: 200px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 120, 60, 0.04);
  background: rgba(255, 100, 40, 0.01);
  display: grid;
  gap: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__item:hover {
  border-color: rgba(255, 140, 60, 0.1);
  background: rgba(255, 100, 40, 0.025);
  box-shadow: 0 0 10px rgba(255, 120, 55, 0.03);
}

.tmu-announce[data-hero-ticker] .tmu-ticker__item--boss { border-left: 2px solid #ef5350; }
.tmu-announce[data-hero-ticker] .tmu-ticker__item--event { border-left: 2px solid #ffab40; }
.tmu-announce[data-hero-ticker] .tmu-ticker__item--invasion { border-left: 2px solid #ce93d8; }

.tmu-announce[data-hero-ticker] .tmu-ticker__item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__event {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__badge {
  font-size: 7px;
  padding: 2px 6px;
  border-radius: 5px;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__clock {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.25);
}

.tmu-announce[data-hero-ticker] .tmu-ticker__count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffaa55;
}

.tmu-announce[data-hero-ticker] .tmu-ticker__empty,
.tmu-announce[data-hero-ticker] .tmu-announce__empty {
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.14);
  border: 1px dashed rgba(255, 120, 60, 0.04);
  border-radius: 8px;
}

/* Sync Indicator */
.tmu-announce[data-hero-ticker] .tmu-announce__sync {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 120, 60, 0.03);
  flex-shrink: 0;
  font-size: 10px;
  color: rgba(255, 170, 100, 0.14);
}

/* Responsive */
@media (max-width: 900px) {
  .tmu-announce[data-hero-ticker] .tmu-announce__legend { display: none; }
}

@media (max-width: 768px) {
  .tmu-announce[data-hero-ticker] { padding: 0 16px 6px; }
  .tmu-announce[data-hero-ticker] .tmu-announce__inner { flex-wrap: wrap; border-radius: 14px; }
  .tmu-announce[data-hero-ticker] .tmu-announce__badge {
    width: 100%; justify-content: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 120, 60, 0.03);
    padding: 10px 16px;
  }
  .tmu-announce[data-hero-ticker] .tmu-announce__track { width: 100%; order: 3; }
  .tmu-announce[data-hero-ticker] .tmu-announce__sync {
    border-left: none;
    border-top: 1px solid rgba(255, 120, 60, 0.03);
    width: 100%; justify-content: center;
    padding: 8px 16px; order: 4;
  }
}

/* ==========================================================================
   LWE SECTION BASE — Premium Gaming UI
   ========================================================================== */

.lwe-section {
  position: relative;
  padding: 90px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.lwe-section__head {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Eyebrow with energy lines ── */
.lwe-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #ffaa55;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(255, 120, 50, 0.3);
  position: relative;
}

.lwe-section__eyebrow::before,
.lwe-section__eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, #ffaa55);
  opacity: 0.5;
}

.lwe-section__eyebrow::before {
  margin-right: 14px;
  background: linear-gradient(90deg, transparent, #ffaa55);
}
.lwe-section__eyebrow::after {
  margin-left: 14px;
  background: linear-gradient(90deg, #ffaa55, transparent);
}

/* ── Section Title — Animated gradient text ── */
.lwe-section__title {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff, #e8d4b8, var(--tmu-neon-gold), #ffffff, #e8d4b8);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sectionTitleGradient 6s ease-in-out infinite;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

@keyframes sectionTitleGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Decorative sword divider below title ── */
.lwe-section__head::after {
  content: '⚔';
  display: block;
  margin: 18px auto 0;
  font-size: 16px;
  opacity: 0.25;
  letter-spacing: 8px;
  color: var(--tmu-fire-mid);
  filter: drop-shadow(0 0 4px rgba(255, 77, 26, 0.3));
}

.lwe-section__sub {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
  max-width: 620px;
  margin: 14px auto 0;
}

/* ==========================================================================
   SECTION 1: WHY — Premium Gaming Value Cards
   ========================================================================== */

.lwe-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.lwe-why-card {
  background: linear-gradient(160deg, rgba(12, 16, 30, 0.8), rgba(8, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--tmu-r-md);
  padding: 32px 26px;
  transition: all 0.4s var(--tmu-ease);
  position: relative;
  overflow: hidden;
}

/* ── Energy corner accent ── */
.lwe-why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top left, rgba(255, 77, 26, 0.1), transparent 70%);
  pointer-events: none;
  transition: all 0.4s var(--tmu-ease);
}

/* ── Bottom energy line ── */
.lwe-why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tmu-fire-core), var(--tmu-fire-mid), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--tmu-ease);
}

.lwe-why-card:hover {
  border-color: rgba(255, 77, 26, 0.15);
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(255, 77, 26, 0.06),
    0 0 60px rgba(0, 0, 0, 0.2);
}

.lwe-why-card:hover::before {
  width: 100px; height: 100px;
  background: radial-gradient(circle at top left, rgba(255, 77, 26, 0.15), transparent 70%);
}

.lwe-why-card:hover::after {
  opacity: 1;
}

.lwe-why-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.15), rgba(255, 107, 53, 0.05));
  border: 1px solid rgba(255, 77, 26, 0.2);
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--tmu-fire-mid);
  transition: all 0.4s var(--tmu-ease);
  box-shadow: 0 0 15px rgba(255, 77, 26, 0.08);
}

.lwe-why-card:hover .lwe-why-card__icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 0 25px rgba(255, 77, 26, 0.2);
  border-color: rgba(255, 77, 26, 0.35);
}

.lwe-why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.lwe-why-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ==========================================================================
   SECTION 2: GET STARTED — Gaming Quest Steps
   ========================================================================== */

.lwe-section--start {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 77, 26, 0.08), transparent 60%);
}

.lwe-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lwe-step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  background: linear-gradient(160deg, rgba(12, 16, 30, 0.8), rgba(8, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--tmu-r-md);
  padding: 34px 26px;
  text-align: center;
  transition: all 0.4s var(--tmu-ease);
  position: relative;
  overflow: hidden;
}

/* ── Top accent line ── */
.lwe-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tmu-fire-core), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--tmu-ease);
}

.lwe-step:hover {
  border-color: rgba(255, 77, 26, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 77, 26, 0.06);
}

.lwe-step:hover::before {
  opacity: 1;
}

.lwe-step__num {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tmu-fire-core), var(--tmu-fire-mid));
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 77, 26, 0.35), 0 0 50px rgba(255, 50, 10, 0.1);
  position: relative;
  z-index: 1;
  animation: stepNumPulse 3s ease-in-out infinite;
}

@keyframes stepNumPulse {
  0%, 100% { box-shadow: 0 0 25px rgba(255,77,26,0.35), 0 0 50px rgba(255,50,10,0.1); }
  50%      { box-shadow: 0 0 35px rgba(255,77,26,0.5),  0 0 60px rgba(255,50,10,0.15); }
}

.lwe-step__num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(255, 77, 26, 0.2);
  animation: stepRingPulse 3s ease-in-out infinite;
}

@keyframes stepRingPulse {
  0%, 100% { transform: scale(1);   opacity: 0.3; }
  50%      { transform: scale(1.15); opacity: 0; }
}

.lwe-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.lwe-step p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 20px;
}

.lwe-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 3: CLASS ROSTER — MU Online Character Cards
   ========================================================================== */

.lwe-class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.lwe-class-card {
  position: relative;
  background: linear-gradient(160deg, rgba(12, 16, 30, 0.8), rgba(8, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--tmu-r-md);
  padding: 28px 22px 22px;
  overflow: hidden;
  transition: all 0.4s var(--tmu-ease);
  cursor: default;
}

/* ── Left accent bar using card accent color ── */
.lwe-class-card::before {
  content: '';
  position: absolute;
  top: 12px; bottom: 12px; left: 0;
  width: 3px;
  background: var(--card-accent, var(--tmu-fire-core));
  border-radius: 0 3px 3px 0;
  opacity: 0.4;
  transition: all 0.4s var(--tmu-ease);
  box-shadow: 0 0 8px color-mix(in srgb, var(--card-accent, var(--tmu-fire-core)) 40%, transparent);
}

.lwe-class-card:hover {
  border-color: color-mix(in srgb, var(--card-accent, #ff4d1a) 25%, transparent);
  transform: translateY(-6px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 30px color-mix(in srgb, var(--card-accent, #ff4d1a) 8%, transparent);
}

.lwe-class-card:hover::before {
  opacity: 1;
  width: 4px;
  box-shadow: 0 0 16px color-mix(in srgb, var(--card-accent, var(--tmu-fire-core)) 60%, transparent);
}

.lwe-class-card__glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent, #ff4d1a) 10%, transparent), transparent 70%);
  pointer-events: none;
  transition: all 0.4s var(--tmu-ease);
  opacity: 0.4;
}

.lwe-class-card:hover .lwe-class-card__glow {
  opacity: 0.8;
  width: 180px; height: 180px;
}

.lwe-class-card__sigil {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tmu-fire-mid);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
  background: rgba(255, 107, 53, 0.08);
}

.lwe-class-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.lwe-class-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 14px;
}

.lwe-class-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* Tags */
.lwe-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
}

.lwe-tag--melee { color: var(--tmu-fire-mid); border-color: rgba(255, 107, 53, 0.25); background: rgba(255, 107, 53, 0.08); }
.lwe-tag--tank { color: var(--tmu-neon-blue); border-color: rgba(77, 166, 255, 0.25); background: rgba(77, 166, 255, 0.08); }
.lwe-tag--magic { color: var(--tmu-neon-purple); border-color: rgba(180, 77, 255, 0.25); background: rgba(180, 77, 255, 0.08); }
.lwe-tag--aoe { color: var(--tmu-fire-core); border-color: rgba(255, 77, 26, 0.25); background: rgba(255, 77, 26, 0.08); }
.lwe-tag--support { color: #66cc88; border-color: rgba(102, 204, 136, 0.25); background: rgba(102, 204, 136, 0.08); }
.lwe-tag--ranged { color: #ffcc77; border-color: rgba(255, 204, 119, 0.25); background: rgba(255, 204, 119, 0.08); }
.lwe-tag--hybrid { color: var(--tmu-neon-gold); border-color: rgba(255, 215, 0, 0.25); background: rgba(255, 215, 0, 0.08); }
.lwe-tag--commander { color: var(--tmu-neon-gold); border-color: rgba(255, 215, 0, 0.25); background: rgba(255, 215, 0, 0.08); }
.lwe-tag--summon { color: var(--tmu-neon-purple); border-color: rgba(180, 77, 255, 0.25); background: rgba(180, 77, 255, 0.08); }
.lwe-tag--debuff { color: #ff6b9d; border-color: rgba(255, 107, 157, 0.25); background: rgba(255, 107, 157, 0.08); }
.lwe-tag--burst { color: var(--tmu-fire-core); border-color: rgba(255, 77, 26, 0.25); background: rgba(255, 77, 26, 0.08); }
.lwe-tag--brawler { color: #ff8800; border-color: rgba(255, 136, 0, 0.25); background: rgba(255, 136, 0, 0.08); }

/* ==========================================================================
   WHY CARD — Color Variants & Shimmer
   ========================================================================== */

/* Fire Variant */
.lwe-why-card--fire .lwe-why-card__icon {
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.15), rgba(255, 107, 53, 0.05));
  border-color: rgba(255, 77, 26, 0.25);
  color: var(--tmu-fire-mid);
}
.lwe-why-card--fire:hover {
  border-color: rgba(255, 77, 26, 0.3);
  box-shadow: var(--tmu-shadow-md), 0 0 35px rgba(255, 77, 26, 0.08);
}

/* Amber Variant (was Cyan) */
.lwe-why-card--cyan .lwe-why-card__icon {
  background: linear-gradient(135deg, rgba(255, 170, 85, 0.15), rgba(255, 140, 60, 0.03));
  border-color: rgba(255, 170, 85, 0.25);
  color: #ffaa55;
}
.lwe-why-card--cyan:hover {
  border-color: rgba(255, 170, 85, 0.3);
  box-shadow: var(--tmu-shadow-md), 0 0 35px rgba(255, 140, 60, 0.08);
}

/* Gold Variant */
.lwe-why-card--gold .lwe-why-card__icon {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.03));
  border-color: rgba(255, 215, 0, 0.25);
  color: var(--tmu-neon-gold);
}
.lwe-why-card--gold:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: var(--tmu-shadow-md), 0 0 35px rgba(255, 215, 0, 0.08);
}

/* Purple Variant */
.lwe-why-card--purple .lwe-why-card__icon {
  background: linear-gradient(135deg, rgba(180, 77, 255, 0.15), rgba(180, 77, 255, 0.03));
  border-color: rgba(180, 77, 255, 0.25);
  color: var(--tmu-neon-purple);
}
.lwe-why-card--purple:hover {
  border-color: rgba(180, 77, 255, 0.3);
  box-shadow: var(--tmu-shadow-md), 0 0 35px rgba(180, 77, 255, 0.08);
}

/* Shimmer Effect */
.lwe-why-card__shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: none;
}

.lwe-why-card:hover .lwe-why-card__shimmer {
  animation: whyShimmer 0.8s ease forwards;
}

@keyframes whyShimmer {
  from { left: -100%; }
  to { left: 100%; }
}

/* Tag Badge */
.lwe-why-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}

.lwe-why-card--fire .lwe-why-card__tag { color: var(--tmu-fire-mid); border-color: rgba(255, 77, 26, 0.15); background: rgba(255, 77, 26, 0.05); }
.lwe-why-card--cyan .lwe-why-card__tag { color: #ffaa55; border-color: rgba(255, 120, 50, 0.15); background: rgba(255, 120, 50, 0.05); }
.lwe-why-card--gold .lwe-why-card__tag { color: var(--tmu-neon-gold); border-color: rgba(255, 215, 0, 0.15); background: rgba(255, 215, 0, 0.05); }
.lwe-why-card--purple .lwe-why-card__tag { color: var(--tmu-neon-purple); border-color: rgba(180, 77, 255, 0.15); background: rgba(180, 77, 255, 0.05); }

/* ==========================================================================
   SECTION: COUNTERS — Animated Server Stats
   ========================================================================== */

.lwe-section--counters {
  padding: 0 24px 50px;
}

.lwe-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.lwe-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(160deg, rgba(12, 16, 30, 0.8), rgba(8, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--tmu-r-md);
  padding: 30px 16px;
  text-align: center;
  transition: all 0.4s var(--tmu-ease);
  position: relative;
  overflow: hidden;
}

/* ── Bottom energy accent ── */
.lwe-counter::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tmu-fire-core), #ffaa55, transparent);
  opacity: 0;
  transition: opacity 0.4s var(--tmu-ease);
}

/* ── Top corner glow ── */
.lwe-counter::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at top right, rgba(255, 120, 50, 0.06), transparent 70%);
  pointer-events: none;
  transition: all 0.4s var(--tmu-ease);
}

.lwe-counter:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 77, 26, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 77, 26, 0.06);
}

.lwe-counter:hover::before {
  opacity: 1;
}

.lwe-counter:hover::after {
  width: 100px; height: 100px;
  background: radial-gradient(circle at top right, rgba(255, 120, 50, 0.1), transparent 70%);
}

.lwe-counter__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.14), rgba(255, 120, 50, 0.06));
  border: 1px solid rgba(255, 77, 26, 0.15);
  font-size: 22px;
  color: var(--tmu-fire-mid);
  transition: all 0.4s var(--tmu-ease);
  box-shadow: 0 0 15px rgba(255, 77, 26, 0.1);
}

.lwe-counter:hover .lwe-counter__icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255, 77, 26, 0.2);
  border-color: rgba(255, 77, 26, 0.3);
}

.lwe-counter__val {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 77, 26, 0.2), 0 2px 12px rgba(0, 0, 0, 0.4);
}

.lwe-counter__lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {
  .lwe-counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .lwe-counters {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   STEP CONNECTOR — Animated Dots
   ========================================================================== */

.lwe-step__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 60px;
  flex-shrink: 0;
}

.lwe-step__connector span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  animation: connectorPulse 1.8s ease-in-out infinite;
}

.lwe-step__connector span:nth-child(1) { animation-delay: 0s; }
.lwe-step__connector span:nth-child(2) { animation-delay: 0.3s; }
.lwe-step__connector span:nth-child(3) { animation-delay: 0.6s; }

@keyframes connectorPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); background: rgba(255, 255, 255, 0.12); }
  50% { opacity: 1; transform: scale(1.4); background: var(--tmu-fire-mid); box-shadow: 0 0 8px rgba(255, 77, 26, 0.4); }
}

/* ==========================================================================
   CLASS CARD — Rank Badge & Stat Bars
   ========================================================================== */

.lwe-class-card__rank {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 12px;
  color: var(--card-accent, var(--tmu-fire-mid));
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Card accent glow on hover using CSS custom property */
.lwe-class-card:hover .lwe-class-card__glow {
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent, #ff4d1a) 15%, transparent), transparent 70%);
}

.lwe-class-card:hover .lwe-class-card__sigil {
  color: var(--card-accent, var(--tmu-fire-mid));
  border-color: color-mix(in srgb, var(--card-accent, #ff6b35) 35%, transparent);
  background: color-mix(in srgb, var(--card-accent, #ff6b35) 8%, transparent);
}

.lwe-class-card__stats {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lwe-class-card__stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lwe-class-card__stat span:first-child {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  min-width: 28px;
}

.lwe-class-card__stat-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.lwe-class-card__stat-bar > div {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--card-accent, var(--tmu-fire-core)), color-mix(in srgb, var(--card-accent, var(--tmu-fire-mid)) 60%, white));
  opacity: 0.6;
  transition: opacity 0.35s var(--tmu-ease);
}

.lwe-class-card:hover .lwe-class-card__stat-bar > div {
  opacity: 1;
}

/* ==========================================================================
   EVENT CARD — MU Online Event Style with Icon Glow
   ========================================================================== */

.lwe-event-card__icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.1), rgba(255, 120, 50, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--tmu-fire-mid);
  transition: all 0.4s var(--tmu-ease);
  box-shadow: 0 0 10px rgba(255, 77, 26, 0.06);
  position: relative;
}

.lwe-event-card__icon-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color 0.4s var(--tmu-ease);
}

.lwe-event-card:hover .lwe-event-card__icon-wrap {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 0 25px rgba(255, 77, 26, 0.2);
}

.lwe-event-card:hover .lwe-event-card__icon-wrap::after {
  border-color: rgba(255, 77, 26, 0.15);
}

.lwe-event-card--bc .lwe-event-card__icon-wrap { color: #ff6b6b; border-color: rgba(255, 107, 107, 0.15); background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), transparent); }
.lwe-event-card--ds .lwe-event-card__icon-wrap { color: var(--tmu-fire-core); border-color: rgba(255, 77, 26, 0.15); background: linear-gradient(135deg, rgba(255, 77, 26, 0.1), transparent); }
.lwe-event-card--cc .lwe-event-card__icon-wrap { color: #ffaa55; border-color: rgba(255, 120, 50, 0.15); background: linear-gradient(135deg, rgba(255, 120, 50, 0.1), transparent); }
.lwe-event-card--cs .lwe-event-card__icon-wrap { color: var(--tmu-neon-gold); border-color: rgba(255, 215, 0, 0.15); background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent); }
.lwe-event-card--cw .lwe-event-card__icon-wrap { color: var(--tmu-neon-purple); border-color: rgba(180, 77, 255, 0.15); background: linear-gradient(135deg, rgba(180, 77, 255, 0.1), transparent); }
.lwe-event-card--ig .lwe-event-card__icon-wrap { color: var(--tmu-neon-blue); border-color: rgba(77, 166, 255, 0.15); background: linear-gradient(135deg, rgba(77, 166, 255, 0.1), transparent); }

/* ==========================================================================
   CTA — Animated Background Glow
   ========================================================================== */

.lwe-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 250%;
  background: radial-gradient(ellipse at center,
    rgba(255, 77, 26, 0.08) 0%,
    rgba(255, 120, 50, 0.04) 35%,
    transparent 65%
  );
  pointer-events: none;
  animation: ctaGlow 4s ease-in-out infinite alternate;
  z-index: 0;
}

.lwe-cta__content {
  position: relative;
  z-index: 1;
}

@keyframes ctaGlow {
  0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(1);    }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* ==========================================================================
   SECTION 4: HALL OF CHAMPIONS — Premium Ranking Panels v2
   ========================================================================== */

/* Rankings section — tighter spacing when placed directly under hero */
.lwe-section.lwe-section--rankings {
  padding-top: 40px;
  padding-bottom: 50px;
}

.lwe-rankings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

/* ── Base Panel ── */
.lwe-rank-panel {
  background:
    radial-gradient(ellipse 100% 50% at 50% 0%, rgba(255, 107, 53, 0.03), transparent 60%),
    rgba(8, 6, 5, 0.76);
  border: 1px solid rgba(255, 160, 80, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(34px) saturate(1.25);
  -webkit-backdrop-filter: blur(34px) saturate(1.25);
  box-shadow:
    0 4px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 180, 100, 0.03);
  display: flex;
  flex-direction: column;
}

.lwe-rank-panel:hover {
  border-color: rgba(255, 170, 80, 0.16);
  box-shadow:
    0 8px 50px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(255, 107, 53, 0.05),
    inset 0 1px 0 rgba(255, 180, 100, 0.04);
  transform: translateY(-4px);
}

/* ── Panel Head ── */
.lwe-rank-panel__head {
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, rgba(255, 100, 40, 0.06), transparent 70%);
  border-bottom: 1px solid rgba(255, 140, 60, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.lwe-rank-panel__head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 150, 70, 0.15), transparent);
}

.lwe-rank-panel__icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(255, 60, 20, 0.06));
  border: 1px solid rgba(255, 140, 60, 0.12);
  flex-shrink: 0;
}

.lwe-rank-panel__icon i {
  color: #ffaa55;
  font-size: 13px;
  filter: drop-shadow(0 0 4px rgba(255, 160, 70, 0.3));
}

.lwe-rank-panel__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex: 1;
}

.lwe-rank-panel__badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(50, 200, 80, 0.12);
  color: #5eff7e;
  border: 1px solid rgba(50, 200, 80, 0.2);
  animation: lwe-live-pulse 2.5s ease-in-out infinite;
}

@keyframes lwe-live-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.6; }
}

/* ── Panel Body ── */
.lwe-rank-panel__body {
  flex: 1;
  min-height: 0;
}

/* ── Panel Footer ── */
.lwe-rank-panel__foot {
  padding: 10px 14px 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 140, 60, 0.04);
  margin-top: auto;
}

/* ── Server Switch Buttons ── */
.lwe-rank-panel__srv-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.lwe-rank-panel__srv-btn:hover {
  color: #ffaa55;
  background: rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 140, 60, 0.18);
}

/* ── Castle Siege Panel Modifier ── */
.lwe-rank-panel--castle .lwe-rank-panel__icon {
  background: linear-gradient(135deg, rgba(255, 170, 85, 0.15), rgba(255, 107, 53, 0.08));
  border-color: rgba(255, 170, 85, 0.2);
}

.lwe-rank-panel--castle .lwe-rank-panel__icon i {
  color: #ffcc77;
}

/* ── Castle Siege Content ── */
.lwe-cs {
  padding: 20px 18px 16px;
  text-align: center;
}

/* Crest emblem */
.lwe-cs__crest {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lwe-cs__crest-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 140, 60, 0.3);
  background: linear-gradient(135deg, rgba(255, 140, 60, 0.08), rgba(255, 80, 30, 0.04));
  box-shadow:
    0 0 24px rgba(255, 107, 53, 0.12),
    inset 0 0 16px rgba(255, 107, 53, 0.06);
  animation: lwe-crest-breathe 4s ease-in-out infinite;
}

.lwe-cs__crest-ring--vacant {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
  animation: none;
}

@keyframes lwe-crest-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 24px rgba(255, 107, 53, 0.12), inset 0 0 16px rgba(255, 107, 53, 0.06); }
  50%      { transform: scale(1.04); box-shadow: 0 0 36px rgba(255, 107, 53, 0.2), inset 0 0 20px rgba(255, 107, 53, 0.1); }
}

.lwe-cs__crest-text {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffaa55;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(255, 140, 60, 0.3);
}

/* Info rows */
.lwe-cs__info {
  text-align: left;
}

.lwe-cs__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 140, 60, 0.06);
}

.lwe-cs__row:last-child {
  border-bottom: none;
}

.lwe-cs__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
}

.lwe-cs__label i {
  color: rgba(255, 170, 85, 0.5);
  font-size: 11px;
  width: 14px;
  text-align: center;
}

.lwe-cs__value {
  font-size: 13px;
  font-weight: 700;
  color: #ffcc88;
  text-align: right;
}

.lwe-cs__countdown {
  font-variant-numeric: tabular-nums;
  font-family: 'JetBrains Mono', 'SF Mono', 'Consolas', monospace;
  letter-spacing: 0.04em;
}

/* Timer row accent */
.lwe-cs__row--timer .lwe-cs__value {
  color: #ff9955;
  text-shadow: 0 0 8px rgba(255, 120, 50, 0.2);
}

/* Vacant state */
.lwe-cs__vacant {
  padding: 12px 0 4px;
}

.lwe-cs__vacant p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 8px;
}

.lwe-cs__vacant-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffaa55;
  padding: 4px 14px;
  border: 1px solid rgba(255, 140, 60, 0.2);
  border-radius: 6px;
  background: rgba(255, 107, 53, 0.06);
}

/* Legacy .buttons-block-1 within panels */
.lwe-rank-panel .buttons-block-1 {
  padding: 10px 14px 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.lwe-rank-panel .table,
.lwe-rank-panel .tableBlock {
  padding: 12px;
}

/* ── Tabbed Panel Modifier (Fortress — CS + Guilds) ── */
.lwe-rank-panel--fortress {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .lwe-rank-panel--fortress { grid-column: span 1; }
}

.lwe-rank-panel__head--tabbed {
  padding: 0;
  background: none;
  border-bottom: none;
}

.lwe-rank-panel__head--tabbed::after {
  display: none;
}

/* ── Tab Bar ── */
.lwe-tab-bar {
  display: flex;
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255, 140, 60, 0.06);
}

.lwe-tab-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.38);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.lwe-tab-bar__btn:hover {
  color: rgba(255, 255, 255, 0.65);
}

.lwe-tab-bar__btn.is-active {
  color: #ffaa55;
}

.lwe-tab-bar__btn i {
  font-size: 13px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lwe-tab-bar__btn.is-active i {
  filter: drop-shadow(0 0 4px rgba(255, 160, 70, 0.3));
}

.lwe-tab-bar__btn:hover i {
  transform: scale(1.1);
}

/* Animated ink indicator */
.lwe-tab-bar__ink {
  position: absolute;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff7733, #ffaa55);
  border-radius: 2px 2px 0 0;
  transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
  pointer-events: none;
}

/* ── Tab Panes ── */
.lwe-tab-pane {
  animation: lwe-tab-fadein 0.35s ease both;
}

@keyframes lwe-tab-fadein {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   SECTION 5: EVENTS — Premium Event Cards
   ========================================================================== */

.lwe-event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.lwe-event-card {
  position: relative;
  background: linear-gradient(160deg, rgba(12, 16, 30, 0.8), rgba(8, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--tmu-r-md);
  padding: 28px 24px;
  overflow: hidden;
  transition: all 0.4s var(--tmu-ease);
}

/* ── Animated top energy bar ── */
.lwe-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tmu-fire-core), #ffaa55, transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s var(--tmu-ease);
  animation: eventBarShift 3s linear infinite paused;
}

.lwe-event-card:hover {
  border-color: rgba(255, 77, 26, 0.12);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(255, 77, 26, 0.06);
}

.lwe-event-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@keyframes eventBarShift {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.lwe-event-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  background: rgba(255, 77, 26, 0.1);
  border: 1px solid rgba(255, 77, 26, 0.2);
  color: var(--tmu-fire-mid);
}

.lwe-event-card--bc .lwe-event-card__badge { color: #ff6b6b; border-color: rgba(255, 107, 107, 0.25); background: rgba(255, 107, 107, 0.08); }
.lwe-event-card--ds .lwe-event-card__badge { color: var(--tmu-fire-core); border-color: rgba(255, 77, 26, 0.25); background: rgba(255, 77, 26, 0.08); }
.lwe-event-card--cc .lwe-event-card__badge { color: #ffaa55; border-color: rgba(255, 120, 50, 0.25); background: rgba(255, 120, 50, 0.08); }
.lwe-event-card--cs .lwe-event-card__badge { color: var(--tmu-neon-gold); border-color: rgba(255, 215, 0, 0.25); background: rgba(255, 215, 0, 0.08); }
.lwe-event-card--cw .lwe-event-card__badge { color: var(--tmu-neon-purple); border-color: rgba(180, 77, 255, 0.25); background: rgba(180, 77, 255, 0.08); }
.lwe-event-card--ig .lwe-event-card__badge { color: var(--tmu-neon-blue); border-color: rgba(77, 166, 255, 0.25); background: rgba(77, 166, 255, 0.08); }

.lwe-event-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.lwe-event-card h3 i {
  margin-right: 6px;
  opacity: 0.7;
}

.lwe-event-card p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ==========================================================================
   SECTION 6: NEWS FEED — Premium Gaming News
   ========================================================================== */

.lwe-news-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.lwe-news-main {
  background: linear-gradient(160deg, rgba(12, 16, 30, 0.85), rgba(8, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--tmu-r-md);
  overflow: hidden;
}

.lwe-news-main .news-top-title {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

.lwe-news-main .news-top-title .tab-button {
  flex: 1;
  text-align: center;
  padding: 16px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s var(--tmu-ease);
  position: relative;
}

.lwe-news-main .news-top-title .tab-button:hover {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.02);
}

.lwe-news-main .news-top-title .tab-button.active {
  color: var(--tmu-fire-mid);
  border-bottom-color: var(--tmu-fire-core);
  text-shadow: 0 0 8px rgba(255, 77, 26, 0.3);
}

.lwe-news-main .tab-block {
  display: none;
  padding: 0;
}

.lwe-news-main .tab-block.active {
  display: block;
}

.lwe-news-main .mu-news__list {
  padding: 0;
}

.lwe-news-main .mu-news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--tmu-duration) var(--tmu-ease);
  position: relative;
}

.lwe-news-main .mu-news__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--tmu-fire-mid), #ffaa55);
  opacity: 0;
  transition: opacity 0.3s var(--tmu-ease);
}

.lwe-news-main .mu-news__item:last-child {
  border-bottom: none;
}

.lwe-news-main .mu-news__item:hover {
  background: linear-gradient(90deg, rgba(255, 77, 26, 0.04), rgba(255, 120, 50, 0.02));
}

.lwe-news-main .mu-news__item:hover::before {
  opacity: 1;
}

.lwe-news-main .newsContent_info-link {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
  transition: color var(--tmu-duration) var(--tmu-ease), text-shadow var(--tmu-duration) var(--tmu-ease);
}

.lwe-news-main .newsContent_info-link:hover {
  color: #ffaa55;
  text-shadow: 0 0 8px rgba(255, 120, 50, 0.25);
}

.lwe-news-main .newsContent_info-text {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.lwe-news-main .mu-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--tmu-fire-mid);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--tmu-duration) var(--tmu-ease);
  position: relative;
}

.lwe-news-main .mu-link::after {
  content: ' →';
  opacity: 0;
  transition: opacity 0.3s var(--tmu-ease);
}

.lwe-news-main .mu-link:hover {
  color: #ffaa55;
  text-shadow: 0 0 6px rgba(255, 120, 50, 0.2);
}

.lwe-news-main .mu-link:hover::after {
  opacity: 1;
}

/* News Badges — Gaming HUD Tags */
.lwe-news-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  transition: all 0.3s var(--tmu-ease);
}

.lwe-news-badge--news {
  color: #ffaa55;
  background: rgba(255, 120, 50, 0.08);
  border: 1px solid rgba(255, 120, 50, 0.2);
  box-shadow: 0 0 8px rgba(255, 120, 50, 0.06);
}
.lwe-news-badge--announce {
  color: var(--tmu-neon-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.06);
}
.lwe-news-badge--event {
  color: var(--tmu-neon-purple);
  background: rgba(180, 77, 255, 0.08);
  border: 1px solid rgba(180, 77, 255, 0.2);
  box-shadow: 0 0 8px rgba(180, 77, 255, 0.06);
}
.lwe-news-badge--update {
  color: #ffaa55;
  background: rgba(255, 170, 85, 0.08);
  border: 1px solid rgba(255, 170, 85, 0.2);
  box-shadow: 0 0 8px rgba(255, 170, 85, 0.06);
}

/* ==========================================================================
   SIDEBAR PANELS — Gaming Widget Style
   ========================================================================== */

.lwe-news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lwe-sidebar-panel {
  background: linear-gradient(160deg, rgba(12, 16, 30, 0.85), rgba(8, 10, 20, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--tmu-r-md);
  overflow: hidden;
  transition: all 0.4s var(--tmu-ease);
}

.lwe-sidebar-panel:hover {
  border-color: rgba(255, 77, 26, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.lwe-sidebar-panel__head {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.1), rgba(255, 120, 50, 0.03));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.lwe-sidebar-panel__head::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 26, 0.15), transparent);
}

.lwe-sidebar-panel__head i {
  color: var(--tmu-fire-mid);
  font-size: 14px;
  filter: drop-shadow(0 0 3px rgba(255, 77, 26, 0.3));
}

.lwe-sidebar-panel .event-timers {
  padding: 12px 16px;
  list-style: none;
  margin: 0;
}

.lwe-sidebar-panel .buttons-block-1 {
  padding: 10px 16px 14px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

/* ==========================================================================
   SECTION 7: COMMUNITY — Gaming Guild Board
   ========================================================================== */

.lwe-community-grid {
  max-width: 800px;
  margin: 0 auto;
}

.lwe-section--community .discussionsContent {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s var(--tmu-ease);
  position: relative;
}

.lwe-section--community .discussionsContent::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #ffaa55, var(--tmu-fire-mid));
  opacity: 0;
  transition: opacity 0.3s var(--tmu-ease);
}

.lwe-section--community .discussionsContent:hover {
  background: linear-gradient(90deg, rgba(255, 120, 50, 0.03), transparent);
}

.lwe-section--community .discussionsContent:hover::before {
  opacity: 1;
}

.lwe-section--community .discussionsContent:last-child {
  border-bottom: none;
}

.lwe-section--community .buttons-block {
  padding: 10px 16px 14px;
}

/* ==========================================================================
   SECTION 8: CTA BANNER — Epic Final Call to Action
   ========================================================================== */

.lwe-section--cta {
  padding: 50px 24px 90px;
}

.lwe-cta {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 77, 26, 0.12), rgba(255, 120, 50, 0.05)),
    linear-gradient(160deg, rgba(12, 16, 30, 0.9), rgba(8, 10, 20, 0.95));
  border: 1px solid rgba(255, 77, 26, 0.12);
  border-radius: var(--tmu-r-xl);
  padding: 70px 40px;
  text-align: center;
  overflow: hidden;
}

/* ── Animated top neon border ── */
.lwe-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tmu-fire-core), #ffaa55, var(--tmu-fire-core), transparent);
  background-size: 200% 100%;
  animation: ctaBorderAnim 3s linear infinite;
}

@keyframes ctaBorderAnim {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Corner accent glow ── */
.lwe-cta::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 77, 26, 0.08), transparent 60%);
  pointer-events: none;
}

.lwe-cta__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffaa55;
  margin-bottom: 14px;
}

.lwe-cta h2 {
  font-family: 'Cinzel', 'Georgia', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}

.lwe-cta p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto 28px;
}

.lwe-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   LWE FOOTER — Premium v2
   ========================================================================== */

.lwe-footer {
  position: relative;
  background:
    linear-gradient(180deg,
      rgba(6, 8, 14, 0.0) 0%,
      rgba(4, 6, 12, 0.7) 10%,
      rgba(3, 5, 10, 0.95) 100%);
  padding-top: 0;
  margin-top: 0;
  overflow: hidden;
}

/* ── Top fire border ── */
.lwe-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 5%,
    rgba(255, 77, 26, 0.4) 20%,
    rgba(255, 120, 50, 0.3) 50%,
    rgba(255, 77, 26, 0.4) 80%,
    transparent 95%);
  z-index: 2;
}

/* ── Ambient glow behind footer ── */
.lwe-footer::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 300px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 120, 50, 0.03), transparent 70%);
  pointer-events: none;
}

.lwe-footer .toTop-fon {
  text-align: center;
  padding: 0;
  margin-top: -20px;
  position: relative;
  z-index: 5;
}

/* ── Footer Grid ── */
.lwe-footer__grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ── Brand ── */
.lwe-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lwe-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.lwe-footer__logo:hover {
  opacity: 0.85;
}

.lwe-footer__logo img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(255, 120, 50, 0.06);
}

.lwe-footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lwe-footer__logo-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.lwe-footer__logo-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffaa55, rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lwe-footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  max-width: 300px;
}

.lwe-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.lwe-social-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.35s var(--tmu-ease);
  position: relative;
  overflow: hidden;
}

.lwe-social-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: radial-gradient(circle at center, rgba(255, 120, 50, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lwe-social-btn:hover {
  color: #fff;
  border-color: rgba(255, 120, 50, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(255, 120, 50, 0.12);
}

.lwe-social-btn:hover::before {
  opacity: 1;
}

/* ── Footer Columns ── */
.lwe-footer__col {
  display: flex;
  flex-direction: column;
}

.lwe-footer__heading {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.lwe-footer__heading::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--tmu-fire-mid, #ff6b2b), transparent);
}

.lwe-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lwe-footer__links li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s var(--tmu-ease);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding-left: 0;
}

.lwe-footer__links li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #ffaa55;
  transition: width 0.3s ease;
  flex-shrink: 0;
}

.lwe-footer__links li a:hover {
  color: #fff;
  padding-left: 4px;
}

.lwe-footer__links li a:hover::before {
  width: 12px;
}

/* ── Language in footer ── */
.lwe-footer__lang-wrap .lang-block {
  position: relative;
}

.lwe-footer__lang-wrap .lang-block .main-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lwe-footer__lang-wrap .lang-block .main-item:hover {
  color: rgba(255, 255, 255, 0.7);
}

.lwe-footer__lang-wrap .lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.15);
  font-size: 10px;
  font-weight: 700;
  color: var(--tmu-fire-mid, #ff6b2b);
}

.lwe-footer__lang-wrap .lang-pill--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
}

.lwe-footer__lang-wrap .hidden-block {
  list-style: none;
  padding: 6px 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lwe-footer__lang-wrap .hidden-block li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  padding: 3px 0;
  transition: color 0.3s ease;
}

.lwe-footer__lang-wrap .hidden-block li a:hover {
  color: #ffaa55;
}

/* ── Bottom Bar ── */
.lwe-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(0, 0, 0, 0.3);
}

.lwe-footer__bottom::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 10%,
    rgba(255, 77, 26, 0.1) 30%,
    rgba(255, 120, 50, 0.06) 70%,
    transparent 90%);
}

.lwe-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.lwe-footer__copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.02em;
}

.lwe-footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lwe-footer__sep {
  color: rgba(255, 255, 255, 0.12);
  font-size: 10px;
}

.lwe-footer__powered {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.lwe-footer__powered a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lwe-footer__powered a:hover {
  color: #ffaa55;
}

.lwe-footer__credits {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.lwe-footer__credits a {
  color: var(--tmu-fire-mid, #ff6b2b);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.lwe-footer__credits a:hover {
  color: #ffaa55;
}

/* ==========================================================================
   RESPONSIVE — MOBILE OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
  .lwe-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .lwe-news-grid {
    grid-template-columns: 1fr;
  }

  .tmu-world-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .tmu-world-bar__stats {
    width: 100%;
  }

  .tmu-world-bar__meter {
    margin-left: 0;
    width: 100%;
  }

  .tmu-world-bar__meter-track {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .lwe-section {
    padding: 50px 16px;
  }

  .lwe-section__head {
    margin-bottom: 32px;
  }

  .lwe-section__title {
    font-size: 1.4rem;
  }

  .tmu-hero.tmu-hero--lwe {
    min-height: 70vh;
    padding: 80px 0 0;
  }

  .tmu-hero__logo {
    max-width: 260px;
  }

  .tmu-hero__logo-wrap {
    margin-bottom: 14px;
  }

  .tmu-hero__scroll-hint { bottom: 18px; }

  .tmu-hero__live-count {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 14px;
  }

  .tmu-hero__live-num { font-size: 14px; }

  .tmu-announce__inner {
    gap: 0;
    flex-wrap: wrap;
  }

  .tmu-announce__badge span {
    display: none;
  }

  .tmu-announce__badge {
    padding: 8px 10px;
  }

  .tmu-announce__sync {
    padding: 0 10px;
  }

  .tmu-hero__h1 {
    font-size: 1.7rem;
  }

  .tmu-hero__lead {
    font-size: 14px;
  }

  .tmu-hero__grid {
    padding: 30px 16px 20px;
  }

  .tmu-world-bar {
    padding: 0 16px 16px;
  }

  .tmu-world-bar__stats {
    flex-direction: column;
    gap: 12px;
  }

  .tmu-world-bar__sep {
    display: none;
  }

  .tmu-world-bar__cell {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .lwe-steps {
    flex-direction: column;
    align-items: center;
  }

  .lwe-step {
    max-width: 100%;
  }

  .lwe-step__arrow {
    display: none;
  }

  .lwe-class-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .lwe-rankings-grid {
    grid-template-columns: 1fr;
  }

  .lwe-event-grid {
    grid-template-columns: 1fr;
  }

  .lwe-why-grid {
    grid-template-columns: 1fr;
  }

  .lwe-footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .lwe-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .lwe-cta {
    padding: 40px 20px;
  }

  .mu-btn--outline.mu-btn--lg {
    padding: 12px 24px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .tmu-hero__h1 {
    font-size: 1.4rem;
  }

  .tmu-hero__eyebrow {
    font-size: 9px;
    padding: 5px 14px;
    letter-spacing: 0.15em;
  }

  .tmu-hero__logo {
    max-width: 180px;
  }

  .tmu-hero__logo-wrap {
    margin-bottom: 10px;
  }

  .tmu-hero__scroll-hint { display: none; }

  .tmu-hero__live-count {
    font-size: 10px;
    padding: 4px 12px;
    gap: 6px;
    margin-bottom: 12px;
  }

  .tmu-hero__live-num { font-size: 13px; }
  .tmu-hero__live-dot { width: 6px; height: 6px; }

  .tmu-announce__inner {
    gap: 0;
  }

  .tmu-announce__badge {
    padding: 6px 8px;
  }

  .tmu-announce .tmu-ticker__item {
    min-width: 160px;
    padding: 6px 10px;
  }

  .lwe-section__title {
    font-size: 1.2rem;
  }

  .lwe-class-grid {
    grid-template-columns: 1fr;
  }

  .lwe-news-main .news-top-title .tab-button {
    font-size: 10px;
    padding: 10px 8px;
  }
}

/* ==========================================================================
   RANKINGS PAGE — FIRE LEADERBOARD OVERHAUL
   ========================================================================== */

/* ── Page container unified fire background ── */
.tmu-lb {
  position: relative;
}

/* ── Head section fire upgrade ── */
.tmu-lb__head {
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.tmu-lb__head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), rgba(255, 120, 50, 0.3), rgba(255, 107, 53, 0.5), transparent);
}

.tmu-lb__badge {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.15), rgba(255, 138, 0, 0.08));
  border: 1px solid rgba(255, 107, 53, 0.3);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.15), inset 0 0 12px rgba(255, 77, 26, 0.05);
}

.tmu-lb__title {
  font-size: 1.6rem;
  text-transform: uppercase;
}

.tmu-lb__sub {
  font-size: 0.85rem;
  color: rgba(240, 244, 251, 0.5);
}

/* ── Category tabs fire redesign ── */
.tmu-lb__tabs {
  background: rgba(6, 10, 18, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 14px;
  padding: 8px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.tmu-lb__tab {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  gap: 6px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.tmu-lb__tab--live {
  position: relative;
}

.tmu-lb__tab--live i {
  color: #22c55e !important;
  animation: tmu-lb-live-pulse 2s ease-in-out infinite;
  font-size: 0.5rem;
}

@keyframes tmu-lb-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── Leaderboard stage ── */
.tmu-lb__stage {
  border-radius: 16px;
  padding: 20px;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

.tmu-lb__stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

/* ── Rankings table fire styling ── */
.tmu-lb__content .dmn-rankings-table {
  border-radius: 12px;
  overflow: hidden;
}

.tmu-lb__content .dmn-rankings-table thead th {
  position: relative;
  font-family: var(--font-display, 'Cinzel', serif);
}

.tmu-lb__content .dmn-rankings-table thead th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), transparent);
}

/* ── Row entrance animation ── */
.tmu-lb__content .dmn-rankings-table tbody tr {
  animation: tmu-lb-row-enter 0.4s ease both;
}

.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(1) { animation-delay: 0.05s; }
.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(2) { animation-delay: 0.1s; }
.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(3) { animation-delay: 0.15s; }
.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(4) { animation-delay: 0.2s; }
.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(5) { animation-delay: 0.25s; }
.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(n+6) { animation-delay: 0.3s; }

@keyframes tmu-lb-row-enter {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── Top 3 medal fire glow ── */
.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(1) {
  position: relative;
}

.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(1) td {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.06), rgba(255, 170, 0, 0.03));
  border-color: rgba(255, 215, 0, 0.15);
}

.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(1) td:first-child::before {
  content: '👑';
  margin-right: 6px;
  font-size: 1rem;
}

.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(2) td {
  background: linear-gradient(135deg, rgba(192, 192, 192, 0.05), rgba(160, 160, 160, 0.02));
  border-color: rgba(192, 192, 192, 0.12);
}

.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(2) td:first-child::before {
  content: '🥈';
  margin-right: 6px;
  font-size: 1rem;
}

.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(3) td {
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.05), rgba(180, 110, 40, 0.02));
  border-color: rgba(205, 127, 50, 0.12);
}

.tmu-lb__content .dmn-rankings-table tbody tr:nth-child(3) td:first-child::before {
  content: '🥉';
  margin-right: 6px;
  font-size: 1rem;
}

/* ── Row hover fire effect ── */
.tmu-lb__content .dmn-rankings-table tbody tr:hover td {
  background: rgba(255, 77, 26, 0.08);
  border-color: rgba(255, 107, 53, 0.2);
  box-shadow: inset 0 0 16px rgba(255, 87, 34, 0.04);
}

/* ── Loader animation ── */
.tmu-lb__loader {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.tmu-lb__loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: tmu-lb-loader-bounce 1s ease-in-out infinite;
}

.tmu-lb__loader span:nth-child(2) { animation-delay: 0.15s; }
.tmu-lb__loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes tmu-lb-loader-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.3; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* ==========================================================================
   DOWNLOADS PAGE — FIRE CARDS OVERHAUL
   ========================================================================== */

/* ── Page title fire text ── */
.dmn-page-title {
  text-align: center;
  padding: 32px 20px;
  margin-bottom: 24px;
  position: relative;
}

.dmn-page-title .nova-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 107, 53, 0.7);
  margin-bottom: 8px;
}

.dmn-page-title h1 {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 8px;
  background: linear-gradient(180deg, #fff 30%, rgba(255, 138, 0, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dmn-page-title .nova-page-lead {
  font-size: 0.9rem;
  color: rgba(240, 244, 251, 0.5);
  margin: 0;
}

/* ── Download grid ── */
.tmu-dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

/* ── Download cards ── */
.tmu-dl-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.15);
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255, 77, 26, 0.04), transparent 50%),
    linear-gradient(165deg, rgba(10, 16, 28, 0.9), rgba(6, 11, 20, 0.94));
  backdrop-filter: blur(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: tmu-dl-card-enter 0.5s ease both;
}

.tmu-dl-card:nth-child(1) { animation-delay: 0.1s; }
.tmu-dl-card:nth-child(2) { animation-delay: 0.2s; }
.tmu-dl-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes tmu-dl-card-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tmu-dl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(255, 120, 50, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.tmu-dl-card:hover {
  border-color: rgba(255, 120, 50, 0.35);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(255, 107, 53, 0.1),
    0 0 48px rgba(255, 120, 50, 0.06);
}

.tmu-dl-card:hover::before {
  opacity: 1;
}

/* ── Card icon ── */
.tmu-dl-card__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.12), rgba(255, 138, 0, 0.06));
  border: 1px solid rgba(255, 107, 53, 0.2);
  font-size: 1.2rem;
  color: rgba(255, 138, 0, 0.9);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.tmu-dl-card:hover .tmu-dl-card__icon {
  background: linear-gradient(135deg, rgba(255, 120, 50, 0.12), rgba(255, 85, 30, 0.06));
  border-color: rgba(255, 120, 50, 0.3);
  color: rgba(255, 120, 50, 0.9);
  box-shadow: 0 0 20px rgba(255, 120, 50, 0.15);
}

/* ── Card body ── */
.tmu-dl-card__body {
  flex: 1;
  min-width: 0;
}

.tmu-dl-card__name {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 1rem;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: 0.05em;
}

.tmu-dl-card__desc {
  font-size: 0.78rem;
  color: rgba(240, 244, 251, 0.45);
  margin: 0;
}

/* ── Download button ── */
.tmu-dl-card__btn {
  flex-shrink: 0;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 6px;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tmu-dl-card__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateY(-50%) skewX(-15deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.tmu-dl-card:hover .tmu-dl-card__btn::after {
  left: 100%;
}

/* ── System specs section ── */
.tmu-specs {
  margin-top: 40px;
}

.tmu-specs__head {
  text-align: center;
  margin-bottom: 24px;
}

.tmu-specs__head h2 {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 1.4rem;
  color: #fff;
  margin: 8px 0 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tmu-specs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.tmu-specs__card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 53, 0.12);
  background: linear-gradient(165deg, rgba(10, 16, 28, 0.85), rgba(6, 11, 20, 0.9));
  position: relative;
  overflow: hidden;
}

.tmu-specs__card--rec {
  border-color: rgba(255, 120, 50, 0.2);
  background: linear-gradient(165deg, rgba(0, 20, 40, 0.4), rgba(6, 11, 20, 0.9));
}

.tmu-specs__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.tmu-specs__badge--min {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: rgba(255, 138, 0, 0.9);
}

.tmu-specs__badge--rec {
  background: rgba(255, 120, 50, 0.08);
  border: 1px solid rgba(255, 120, 50, 0.25);
  color: rgba(255, 120, 50, 0.9);
}

.tmu-specs__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tmu-specs__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
  color: rgba(240, 244, 251, 0.7);
}

.tmu-specs__list li:last-child {
  border-bottom: none;
}

.tmu-specs__list li i {
  width: 20px;
  text-align: center;
  color: rgba(255, 107, 53, 0.6);
  font-size: 0.9rem;
}

.tmu-specs__card--rec .tmu-specs__list li i {
  color: rgba(255, 120, 50, 0.6);
}

/* ==========================================================================
   SITE-WIDE UNIFIED BACKGROUND SYSTEM
   — One background for the ENTIRE site (hero, content, footer — everything)
   — Overrides nova.css body.nova background image completely
   — Visible fire aurora, energy tendrils, particle grid, animated atmosphere
   ========================================================================== */

/* ── Master background — kills nova.css top-fon-home1.jpg ── */
body.nova {
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(255, 50, 10, 0.18), transparent 55%),
    radial-gradient(ellipse 90% 50% at 85% 100%, rgba(0, 100, 255, 0.06), transparent 50%),
    radial-gradient(ellipse 70% 55% at 10% 60%, rgba(168, 60, 255, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 80, 30, 0.04), transparent 55%),
    linear-gradient(180deg, #04060c 0%, #08091a 20%, #0d0814 50%, #060308 80%, #030406 100%) !important;
  background-attachment: fixed !important;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ── Animated fire aurora + vignette (positioned over body) ── */
body.nova::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  filter: none !important;
  opacity: 1 !important;
  animation: siteFireAurora 14s ease-in-out infinite alternate !important;
  background:
    radial-gradient(ellipse 140% 90% at 50% -5%, rgba(255, 55, 10, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(255, 90, 30, 0.07), transparent 45%),
    radial-gradient(ellipse 60% 40% at 85% 8%, rgba(0, 160, 255, 0.04), transparent 40%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(2, 3, 8, 0.6) 100%) !important;
}

@keyframes siteFireAurora {
  0% {
    background:
      radial-gradient(ellipse 140% 90% at 50% -5%, rgba(255, 55, 10, 0.14), transparent 50%),
      radial-gradient(ellipse 80% 50% at 15% 10%, rgba(255, 90, 30, 0.07), transparent 45%),
      radial-gradient(ellipse 60% 40% at 85% 8%, rgba(0, 160, 255, 0.04), transparent 40%),
      radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(2, 3, 8, 0.6) 100%);
  }
  50% {
    background:
      radial-gradient(ellipse 150% 95% at 40% -8%, rgba(255, 70, 20, 0.18), transparent 52%),
      radial-gradient(ellipse 90% 55% at 20% 8%, rgba(255, 110, 40, 0.09), transparent 48%),
      radial-gradient(ellipse 50% 35% at 80% 12%, rgba(255, 85, 30, 0.05), transparent 42%),
      radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(2, 3, 8, 0.6) 100%);
  }
  100% {
    background:
      radial-gradient(ellipse 130% 85% at 55% -3%, rgba(255, 60, 15, 0.16), transparent 48%),
      radial-gradient(ellipse 70% 45% at 12% 15%, rgba(255, 100, 35, 0.08), transparent 42%),
      radial-gradient(ellipse 70% 45% at 88% 5%, rgba(0, 140, 255, 0.045), transparent 44%),
      radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(2, 3, 8, 0.6) 100%);
  }
}

/* ── Ember glow pulse — adds warm presence throughout the page ── */
body.nova::after {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  mix-blend-mode: screen !important;
  filter: none !important;
  animation: siteEmberGlow 8s ease-in-out infinite alternate !important;
  background:
    radial-gradient(ellipse 80% 50% at 50% 3%, rgba(255, 77, 26, 0.10), transparent 55%),
    radial-gradient(ellipse 40% 25% at 25% 5%, rgba(255, 200, 80, 0.05), transparent 45%),
    radial-gradient(ellipse 35% 20% at 75% 4%, rgba(255, 100, 35, 0.035), transparent 40%),
    radial-gradient(ellipse 50% 30% at 50% 96%, rgba(255, 60, 20, 0.06), transparent 50%) !important;
}

@keyframes siteEmberGlow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}

/* ── Network grid + energy tendrils overlay ── */
body.nova .wrapper::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255, 100, 40, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 100, 40, 0.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 25%, black 15%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 25%, black 15%, transparent 65%);
  animation: siteGridDrift 20s linear infinite;
}

@keyframes siteGridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 80px 80px; }
}

/* ── Noise texture for cinematic depth ── */
body.nova .wrapper::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* ── Ensure wrapper is above pseudo-elements ── */
body.nova .wrapper {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   AUDIO PLAYING — Layout & Background Fixes
   Prevent nova.css music reactive CSS from breaking layout/background
   ========================================================================== */

/* Kill nova.css body border additions that shift layout */
body.is-audio-vibing {
  border-left: none !important;
  border-right: none !important;
}

/* Kill nova.css body background-size animation that conflicts with fixed bg */
body.is-audio-playing.nova {
  background-size: auto !important;
  animation: none !important;
  filter: none !important;
}

/* Protect our fire aurora from audio-reactive overrides */
body.is-audio-playing.nova::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 140% 90% at 50% -5%, rgba(255, 55, 10, 0.14), transparent 50%),
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(255, 90, 30, 0.07), transparent 45%),
    radial-gradient(ellipse 60% 40% at 85% 8%, rgba(0, 160, 255, 0.04), transparent 40%),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 30%, rgba(2, 3, 8, 0.6) 100%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
  animation: siteFireAurora 14s ease-in-out infinite alternate !important;
  /* Subtle audio reactivity */
  opacity: calc(0.85 + 0.15 * var(--tmu-rx-bass, 0));
  filter: brightness(calc(1 + 0.15 * var(--tmu-rx-beat, 0))) !important;
  transition: opacity 0.1s linear, filter 0.08s linear;
}

/* Protect our ember glow from audio overrides */
body.is-audio-playing.nova::after {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 80% 50% at 50% 3%, rgba(255, 77, 26, 0.10), transparent 55%),
    radial-gradient(ellipse 40% 25% at 25% 5%, rgba(255, 200, 80, 0.05), transparent 45%),
    radial-gradient(ellipse 35% 20% at 75% 4%, rgba(255, 100, 35, 0.035), transparent 40%),
    radial-gradient(ellipse 50% 30% at 50% 96%, rgba(255, 60, 20, 0.06), transparent 50%) !important;
  mix-blend-mode: screen !important;
  animation: siteEmberGlow 8s ease-in-out infinite alternate !important;
  z-index: 0 !important;
  pointer-events: none !important;
  /* Subtle audio reactivity */
  opacity: calc(0.6 + 0.4 * var(--tmu-rx-energy, 0));
  transition: opacity 0.08s linear;
}

/* Kill vibing body breathing filter that warps the whole page */
body.is-audio-vibing.nova {
  animation: none !important;
  filter: none !important;
}

/* Keep hero pseudo-elements preserved during audio — they have new cinematic styling */
body.is-audio-playing .tmu-hero::before,
body.is-audio-vibing .tmu-hero::before {
  animation: none !important;
  opacity: 0.7 !important;
}

body.is-audio-playing .tmu-hero::after,
body.is-audio-vibing .tmu-hero::after {
  opacity: 1 !important;
}

/* Keep hero decorations visible during audio — just calm animations to avoid conflict */
body.is-audio-playing .tmu-hero__particles,
body.is-audio-playing .tmu-hero__sweep,
body.is-audio-playing .tmu-hero__veil,
body.is-audio-playing .tmu-hero__grid::before,
body.is-audio-playing .tmu-hero__grid::after {
  animation-play-state: running !important;
}

/* Protect footer from audio-induced position: relative issues */
body.is-audio-playing .lwe-footer,
body.is-audio-playing .mu-footer {
  position: relative;
  z-index: 1;
}

/* ── dmn-content above background ── */
.dmn-content {
  position: relative;
  z-index: 2;
}

/* ── Section divider (fire gradient line) ── */
.tmu-fire-divider,
.dmn-page-box + .dmn-page-box::before {
  content: '';
  display: block;
  height: 1px;
  margin: 32px auto;
  width: 80%;
  max-width: 600px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.3) 20%,
    rgba(255, 200, 80, 0.5) 50%,
    rgba(255, 107, 53, 0.3) 80%,
    transparent 100%
  );
  animation: tmu-divider-glow 3s ease-in-out infinite;
}

@keyframes tmu-divider-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── Page boxes unified glass styling ── */
body.nova .dmn-page-box {
  position: relative;
  border: 1px solid rgba(255, 107, 53, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(255, 77, 26, 0.03), transparent 50%),
    linear-gradient(170deg, rgba(8, 14, 24, 0.55), rgba(5, 10, 18, 0.62));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

body.nova .dmn-page-box:hover {
  border-color: rgba(255, 107, 53, 0.2);
}

/* ── Site-wide glass transparency for all content containers ── */
body.nova .mu-panel,
body.nova .widget-fon-discussions,
body.nova .dmn-sidebar-box,
body.nova .box-style1 {
  background: linear-gradient(165deg, rgba(9, 15, 26, 0.5), rgba(7, 12, 22, 0.58)) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.nova .shop-product-list-item,
body.nova .dmn-vault-grid-modern,
body.nova [id="paypal-options"] > li {
  background: linear-gradient(165deg, rgba(9, 16, 27, 0.5), rgba(7, 12, 22, 0.58)) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.nova .alert {
  background: rgba(9, 16, 27, 0.6) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.nova .form-control,
body.nova input[type="text"],
body.nova input[type="password"],
body.nova input[type="email"],
body.nova select,
body.nova textarea {
  background: rgba(8, 14, 24, 0.6) !important;
}

body.nova .button-small {
  background: rgba(8, 14, 24, 0.6) !important;
}

/* ── Page content areas ── */
.dmn-page-content {
  padding: 24px;
}

/* ── All content blocks get fire border on hover ── */
.block-widget-2 {
  position: relative;
}

/* ── Animated entrance for main content ── */
.dmn-content > .dmn-page-box,
.dmn-content > .tmu-lb {
  animation: tmu-content-enter 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes tmu-content-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Homepage sections — scroll-triggered entrance (replaces static animation-delay) ── */
/* Sections start hidden, JS adds .tmu-visible via Intersection Observer */
.lwe-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lwe-section.tmu-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Homepage hero background shimmer ── */
.tmu-hero {
  position: relative;
}

.tmu-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(6, 8, 14, 0.95));
  pointer-events: none;
  z-index: 1;
}

/* ── Footer fire line ── */
.lwe-footer {
  position: relative;
  border-top: 1px solid rgba(255, 107, 53, 0.08);
}

.lwe-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 107, 53, 0.4),
    rgba(255, 120, 50, 0.2),
    rgba(255, 107, 53, 0.4),
    transparent
  );
  animation: tmu-divider-glow 4s ease-in-out infinite;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES FOR NEW COMPONENTS
   ========================================================================== */

@media (max-width: 768px) {
  .tmu-dl-grid {
    grid-template-columns: 1fr;
  }

  .tmu-dl-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .tmu-dl-card__btn {
    width: 100%;
    justify-content: center;
  }

  .tmu-specs__grid {
    grid-template-columns: 1fr;
  }

  .tmu-lb__head {
    padding: 20px;
  }

  .tmu-lb__title {
    font-size: 1.2rem;
  }

  .tmu-lb__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .dmn-page-title h1 {
    font-size: 1.4rem;
  }

  .dmn-page-content {
    padding: 16px;
  }
}

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

  .tmu-lb__badge {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .tmu-lb__badge i {
    font-size: 20px;
  }

  .tmu-specs__card {
    padding: 18px;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .tmu-hero__orb,
  .tmu-hero__sweep::after,
  .tmu-world-bar__dot,
  .tmu-world-bar__meter-fill {
    animation: none;
    opacity: 0.5;
  }

  body.nova::before,
  body.nova::after {
    animation: none;
  }

  .tmu-lb__content .dmn-rankings-table tbody tr,
  .tmu-dl-card,
  .lwe-section,
  .dmn-content > .dmn-page-box {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .tmu-fire-divider,
  .lwe-footer::before {
    animation: none;
    opacity: 0.5;
  }
}

/* ==========================================================================
   ▓▓ SITE-WIDE ANIMATION SYSTEM — SCROLL REVEAL + EFFECTS
   ==========================================================================
   Uses Intersection Observer (JS) to add `.tmu-visible` class on scroll.
   All animations are GPU-accelerated via transform/opacity only.
   ========================================================================== */

/* ── 1. SCROLL REVEAL BASE ── */

.tmu-anim {
  opacity: 0;
  will-change: transform, opacity;
}

.tmu-anim.tmu-visible {
  opacity: 1;
}

/* Fade Up (default) */
.tmu-anim--fade-up {
  transform: translateY(50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tmu-anim--fade-up.tmu-visible { transform: translateY(0); }

/* Fade Down */
.tmu-anim--fade-down {
  transform: translateY(-50px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tmu-anim--fade-down.tmu-visible { transform: translateY(0); }

/* Fade Left */
.tmu-anim--fade-left {
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tmu-anim--fade-left.tmu-visible { transform: translateX(0); }

/* Fade Right */
.tmu-anim--fade-right {
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tmu-anim--fade-right.tmu-visible { transform: translateX(0); }

/* Scale Up */
.tmu-anim--scale-up {
  transform: scale(0.85);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tmu-anim--scale-up.tmu-visible { transform: scale(1); }

/* Zoom Rotate */
.tmu-anim--zoom-rotate {
  transform: scale(0.7) rotate(-5deg);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.tmu-anim--zoom-rotate.tmu-visible { transform: scale(1) rotate(0deg); }

/* Flip Up */
.tmu-anim--flip-up {
  transform: perspective(800px) rotateX(15deg) translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tmu-anim--flip-up.tmu-visible { transform: perspective(800px) rotateX(0deg) translateY(0); }

/* Blur In */
.tmu-anim--blur-in {
  filter: blur(12px);
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  will-change: transform, opacity, filter;
}
.tmu-anim--blur-in.tmu-visible { filter: blur(0); transform: translateY(0); }

/* Stagger delay utilities */
.tmu-anim[data-delay="100"] { transition-delay: 0.1s; }
.tmu-anim[data-delay="200"] { transition-delay: 0.2s; }
.tmu-anim[data-delay="300"] { transition-delay: 0.3s; }
.tmu-anim[data-delay="400"] { transition-delay: 0.4s; }
.tmu-anim[data-delay="500"] { transition-delay: 0.5s; }
.tmu-anim[data-delay="600"] { transition-delay: 0.6s; }
.tmu-anim[data-delay="700"] { transition-delay: 0.7s; }
.tmu-anim[data-delay="800"] { transition-delay: 0.8s; }

/* ── 2. SECTION HEADINGS — GRADIENT TEXT SHIMMER ── */

.lwe-section__title {
  background: linear-gradient(
    90deg, #fff 0%, rgba(255, 138, 0, 0.9) 25%, #fff 50%, rgba(255, 120, 50, 0.9) 75%, #fff 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: tmu-text-shimmer 6s ease-in-out infinite;
}
@keyframes tmu-text-shimmer {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* Eyebrow glow pulse */
.lwe-section__eyebrow {
  animation: tmu-eyebrow-glow 3s ease-in-out infinite;
}
@keyframes tmu-eyebrow-glow {
  0%, 100% { text-shadow: 0 0 6px rgba(255, 107, 53, 0.3); }
  50% { text-shadow: 0 0 16px rgba(255, 107, 53, 0.6), 0 0 30px rgba(255, 107, 53, 0.15); }
}

/* ── 3. CARD HOVER EFFECTS — LIFT + GLOW + SWEEP ── */

.lwe-why-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.lwe-why-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.1), 0 0 60px rgba(255, 107, 53, 0.05);
}

.lwe-why-card__icon i {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
}
.lwe-why-card:hover .lwe-why-card__icon i {
  transform: rotateY(360deg) scale(1.15);
  color: #ffaa55;
}

.lwe-class-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.lwe-class-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.12), 0 0 80px rgba(255, 120, 50, 0.06);
}

.lwe-class-card__sigil {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.4s ease;
}
.lwe-class-card:hover .lwe-class-card__sigil {
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(255, 138, 0, 0.6), 0 0 40px rgba(255, 107, 53, 0.3);
}

.lwe-event-card {
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.lwe-event-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 107, 53, 0.1);
}

.lwe-event-card h3 i {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lwe-event-card:hover h3 i {
  transform: scale(1.3) rotate(-8deg);
}

.lwe-sidebar-panel {
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
              box-shadow 0.4s ease, border-color 0.4s ease;
}
.lwe-sidebar-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 107, 53, 0.06);
  border-color: rgba(255, 120, 50, 0.15);
}

/* ── 4. STEP CARDS ── */

.lwe-step {
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.4s ease;
}
.lwe-step:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 107, 53, 0.1);
}

.lwe-step__num {
  animation: tmu-step-num-glow 3s ease-in-out infinite;
}
@keyframes tmu-step-num-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 107, 53, 0.2); }
  50% { box-shadow: 0 0 24px rgba(255, 107, 53, 0.4), 0 0 48px rgba(255, 107, 53, 0.15); }
}

.lwe-step__arrow i {
  display: inline-block;
  animation: tmu-arrow-bounce 2s ease-in-out infinite;
}
@keyframes tmu-arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ── 5. BUTTON EFFECTS — SHINE SWEEP ── */

.mu-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.mu-btn:hover { transform: translateY(-2px) scale(1.03); }
.mu-btn:active { transform: translateY(0) scale(0.98); }

.mu-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}
.mu-btn:hover::after { left: 130%; }

.mu-btn--primary {
  animation: tmu-btn-glow 3s ease-in-out infinite;
}
@keyframes tmu-btn-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 77, 26, 0.3); }
  50% { box-shadow: 0 4px 25px rgba(255, 77, 26, 0.5), 0 0 40px rgba(255, 107, 53, 0.2); }
}

/* ── 6. CTA SECTION ── */

.lwe-cta {
  animation: tmu-cta-float 6s ease-in-out infinite;
}
@keyframes tmu-cta-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ── 7. NEWS ITEMS ── */

.mu-news__item {
  transition: background 0.3s ease, transform 0.3s ease;
}
.mu-news__item:hover {
  transform: translateX(6px);
  background: rgba(255, 107, 53, 0.04);
}

.lwe-news-badge { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.mu-news__item:hover .lwe-news-badge { transform: scale(1.08); }

/* ── 8. TAB BUTTONS ── */

.news-top-title .tab-button {
  position: relative;
  transition: color 0.3s ease;
}
.news-top-title .tab-button::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tmu-fire-core), #ffaa55);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
}
.news-top-title .tab-button.active::after,
.news-top-title .tab-button:hover::after {
  width: 80%;
  left: 10%;
}

/* ── 9. FOOTER ANIMATIONS ── */

.lwe-social-btn:hover {
  transform: translateY(-3px) scale(1.08);
}

.lwe-footer__nav ul li a { position: relative; }
.lwe-footer__nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffaa55;
  transition: width 0.3s ease;
}
.lwe-footer__nav ul li a:hover::after { width: 100%; }

.lwe-footer__grid > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lwe-footer__grid.tmu-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.lwe-footer__grid.tmu-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.lwe-footer__grid.tmu-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.lwe-footer__grid.tmu-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

/* ── 10. CARD BORDER SWEEP EFFECT ── */

@property --tmu-border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.lwe-why-card::after,
.lwe-class-card::after,
.lwe-event-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--tmu-border-angle, 0deg),
    transparent 60%,
    rgba(255, 107, 53, 0.4) 75%,
    rgba(255, 120, 50, 0.3) 85%,
    transparent 100%
  );
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.lwe-why-card:hover::after,
.lwe-class-card:hover::after,
.lwe-event-card:hover::after {
  opacity: 1;
  animation: tmu-border-spin 3s linear infinite;
}
@keyframes tmu-border-spin {
  to { --tmu-border-angle: 360deg; }
}

/* ── 11. FLOATING PARTICLES — WHY SECTION ── */

.lwe-section--why { position: relative; overflow: hidden; }
.lwe-section--why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(255, 138, 0, 0.25), transparent),
    radial-gradient(1.5px 1.5px at 85% 15%, rgba(255, 120, 50, 0.2), transparent),
    radial-gradient(1px 1px at 45% 75%, rgba(255, 107, 53, 0.2), transparent),
    radial-gradient(1.5px 1.5px at 70% 55%, rgba(255, 200, 80, 0.15), transparent),
    radial-gradient(1px 1px at 30% 45%, rgba(255, 120, 50, 0.15), transparent),
    radial-gradient(1px 1px at 55% 10%, rgba(255, 77, 26, 0.2), transparent),
    radial-gradient(1px 1px at 92% 85%, rgba(255, 100, 35, 0.15), transparent),
    radial-gradient(1px 1px at 8% 90%, rgba(255, 138, 0, 0.15), transparent);
  background-size: 300px 300px;
  animation: tmu-particle-field 40s linear infinite;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
@keyframes tmu-particle-field {
  0%   { background-position: 0 0, 100px 50px, 50px 100px, 200px 30px, 150px 200px, 80px 150px, 250px 100px, 30px 250px; }
  100% { background-position: 300px 300px, 400px 350px, 350px 400px, 500px 330px, 450px 500px, 380px 450px, 550px 400px, 330px 550px; }
}

/* ── 12. GLASS MORPHISM HOVER — PANELS ── */

.lwe-sidebar-panel,
.lwe-rank-panel { position: relative; overflow: hidden; }

.lwe-sidebar-panel::after,
.lwe-rank-panel::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.04) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.lwe-sidebar-panel:hover::after,
.lwe-rank-panel:hover::after { opacity: 1; }

/* ── 13. HERO ENTRANCE ANIMATIONS ── */

.tmu-hero__h1 {
  animation: tmu-hero-title-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes tmu-hero-title-in {
  0%   { opacity: 0; transform: translateY(40px) scale(0.95); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.tmu-hero__lead {
  animation: tmu-hero-lead-in 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}
@keyframes tmu-hero-lead-in {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.tmu-hero__grid {
  animation: tmu-hero-grid-in 1s ease 0.6s both;
}
@keyframes tmu-hero-grid-in {
  0%   { opacity: 0; transform: translateY(30px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── 14. CMD BAR LINK HOVER EFFECTS ── */

.cmd-bar__link { position: relative; overflow: hidden; }
.cmd-bar__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tmu-fire-core), #ffaa55);
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
  z-index: 2;
}
.cmd-bar__link:hover::before,
.cmd-bar__link.is-active::before {
  width: 60%;
  left: 20%;
}

.cmd-bar__link i { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cmd-bar__link:hover i { transform: scale(1.2) translateY(-1px); }

/* ── 15. MEGA DROPDOWN ITEMS ── */

.cmd-bar__mega-item {
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cmd-bar__mega-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cmd-bar__mega-icon i { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease; }
.cmd-bar__mega-item:hover .cmd-bar__mega-icon i {
  transform: scale(1.2) rotate(-5deg);
  color: #ffaa55;
}

/* ── 16. MOBILE DRAWER — SLIDE ITEMS ── */

.cmd-drawer__link {
  transition: background 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
}
.cmd-drawer__link:hover,
.cmd-drawer__link.is-active { transform: translateX(6px); }

/* ── 17. ANNOUNCEMENT BAR ── */

.tmu-announce {
  animation: tmu-announce-slide-down 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes tmu-announce-slide-down {
  0%   { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.tmu-announce__badge { animation: tmu-badge-pulse 2.5s ease-in-out infinite; }
@keyframes tmu-badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ── 18. LOADING SKELETON SHIMMER ── */

.tmu-skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: tmu-skeleton-shimmer 1.5s ease infinite;
  border-radius: 8px;
}
@keyframes tmu-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── 19. NOVA CREST — CASTLE EMBLEM ── */

.nova-crest { animation: tmu-crest-breathe 4s ease-in-out infinite; }
@keyframes tmu-crest-breathe {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.2)); }
  50%      { transform: scale(1.05); filter: drop-shadow(0 0 16px rgba(255, 107, 53, 0.4)); }
}

/* ── 20. DISCUSSIONS — ITEM HOVER ── */

.discussionsContent { transition: background 0.3s ease, transform 0.3s ease; }
.discussionsContent:hover { transform: translateX(4px); background: rgba(255, 255, 255, 0.02); }

/* ── 21. WORLD BAR STATS ── */

.tmu-world-bar__value { transition: transform 0.3s ease; }
.tmu-world-bar__cell:hover .tmu-world-bar__value { transform: scale(1.1); }

/* ── 22. SCROLLBAR — FIRE THEME ── */

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(6, 8, 14, 0.8); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.4), rgba(255, 77, 26, 0.2));
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.1);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(255, 107, 53, 0.6), rgba(255, 77, 26, 0.4));
}

/* ── 23. SELECTION STYLING ── */

::selection { background: rgba(255, 107, 53, 0.3); color: #fff; }

/* ── 24. SMOOTH SCROLL ── */

html { scroll-behavior: smooth; }

/* ── 25. PAGE FADE IN ── */

body.nova { animation: tmu-page-fade-in 0.6s ease both; }
@keyframes tmu-page-fade-in {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* ── 26. GLOWING DIVIDER BETWEEN SECTIONS ── */

.lwe-section + .lwe-section::before {
  content: '';
  display: block;
  width: 60%;
  max-width: 400px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), rgba(0,240,255,0.2), rgba(255,107,53,0.3), transparent);
  animation: tmu-divider-glow 3s ease-in-out infinite;
}

/* ── 27. FOCUS VISIBLE ── */

*:focus-visible {
  outline: 2px solid rgba(255, 120, 50, 0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── 28. TAG HOVER ── */

.lwe-tag { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.lwe-tag:hover { transform: scale(1.08); box-shadow: 0 0 12px rgba(255, 107, 53, 0.2); }

/* ==========================================================================
   SIDEBAR MINI-ARENA — Premium ranking redesign for homepage sidebar
   Mirrors the rankings page podium + list design in a compact format
   ========================================================================== */

/* ── Container ── */
.lwe-sb-arena {
  padding: 12px;
}

/* ── Mini Podium Grid: Silver | Gold (center, taller) | Bronze ── */
.lwe-sb-arena__podium {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 0 16px;
  align-items: end;
}

/* ── Individual podium card ── */
.lwe-sb-arena__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(165deg, rgba(12, 18, 32, 0.85), rgba(6, 10, 18, 0.92));
  backdrop-filter: blur(8px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: lwe-sb-card-enter 0.6s ease both;
  text-align: center;
}

.lwe-sb-arena__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.lwe-sb-arena__card:hover {
  transform: translateY(-4px) scale(1.02);
}

.lwe-sb-arena__card:hover::before {
  opacity: 1;
}

@keyframes lwe-sb-card-enter {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Gold card — center, slightly larger ── */
.lwe-sb-arena__card--gold {
  border-color: rgba(255, 138, 0, 0.3);
  box-shadow:
    0 0 30px rgba(255, 107, 53, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 20px 8px 16px;
  z-index: 2;
}

.lwe-sb-arena__card--gold::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.1), transparent 60%);
}

.lwe-sb-arena__card--gold:hover {
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow:
    0 0 45px rgba(255, 107, 53, 0.18),
    0 12px 36px rgba(0, 0, 0, 0.3);
}

/* ── Silver card ── */
.lwe-sb-arena__card--silver {
  border-color: rgba(192, 192, 192, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.lwe-sb-arena__card--silver::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(192, 192, 192, 0.06), transparent 60%);
}

.lwe-sb-arena__card--silver:hover {
  border-color: rgba(192, 192, 192, 0.4);
}

/* ── Bronze card ── */
.lwe-sb-arena__card--bronze {
  border-color: rgba(205, 127, 50, 0.2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.lwe-sb-arena__card--bronze::before {
  background: radial-gradient(ellipse at 50% 0%, rgba(205, 127, 50, 0.06), transparent 60%);
}

.lwe-sb-arena__card--bronze:hover {
  border-color: rgba(205, 127, 50, 0.4);
}

/* ── Rank badge (top-right corner) ── */
.lwe-sb-arena__rank {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  border-radius: 0 14px 0 10px;
  color: #fff;
}

.lwe-sb-arena__card--gold .lwe-sb-arena__rank {
  background: linear-gradient(135deg, #ff6b35, #ff8a00);
}
.lwe-sb-arena__card--silver .lwe-sb-arena__rank {
  background: linear-gradient(135deg, #c0c0c0, #999);
}
.lwe-sb-arena__card--bronze .lwe-sb-arena__rank {
  background: linear-gradient(135deg, #cd7f32, #a0622a);
}

/* ── Crown / medal icon ── */
.lwe-sb-arena__crown {
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1;
}

.lwe-sb-arena__card--gold .lwe-sb-arena__crown {
  color: #ff8a00;
  filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.4));
  animation: lwe-sb-crown-pulse 2.5s ease-in-out infinite;
}
.lwe-sb-arena__card--silver .lwe-sb-arena__crown {
  color: #d0d0d0;
  filter: drop-shadow(0 0 4px rgba(192, 192, 192, 0.3));
}
.lwe-sb-arena__card--bronze .lwe-sb-arena__crown {
  color: #cd7f32;
  filter: drop-shadow(0 0 4px rgba(205, 127, 50, 0.3));
}

@keyframes lwe-sb-crown-pulse {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(255, 107, 53, 0.4)); transform: scale(1); }
  50%      { filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.6)); transform: scale(1.1); }
}

/* ── Character / guild icon ── */
.lwe-sb-arena__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: rgba(20, 28, 48, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lwe-sb-arena__card--gold .lwe-sb-arena__icon {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.15), 0 2px 10px rgba(0, 0, 0, 0.3);
}
.lwe-sb-arena__card--silver .lwe-sb-arena__icon {
  border-color: rgba(192, 192, 192, 0.3);
}
.lwe-sb-arena__card--bronze .lwe-sb-arena__icon {
  border-color: rgba(205, 127, 50, 0.3);
}

/* ── Guild mark (for guilds template) ── */
.lwe-sb-arena__guild-mark {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lwe-sb-arena__guild-mark img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lwe-sb-arena__guild-fallback {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  font-size: 9px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.lwe-sb-arena__guild-fallback-sm {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: #ff6b35;
  font-size: 7px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Name ── */
.lwe-sb-arena__name {
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 2px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lwe-sb-arena__name a {
  color: var(--tmu-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lwe-sb-arena__name a:hover {
  color: #ff6b35;
}

.lwe-sb-arena__card--gold .lwe-sb-arena__name a {
  background: linear-gradient(135deg, #ff8a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Class label ── */
.lwe-sb-arena__class {
  font-size: 0.58rem;
  color: var(--tmu-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* ── Stats row ── */
.lwe-sb-arena__stats {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.lwe-sb-arena__stat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tmu-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.2;
}

.lwe-sb-arena__stat em {
  font-style: normal;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tmu-muted);
}

.lwe-sb-arena__stat sup {
  font-size: 0.5rem;
  color: rgba(255, 107, 53, 0.8);
  margin-left: 1px;
}

/* ── Bottom pedestal glow bar ── */
.lwe-sb-arena__pedestal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.lwe-sb-arena__pedestal--gold {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.65), transparent);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.lwe-sb-arena__pedestal--silver {
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.5), transparent);
  box-shadow: 0 0 6px rgba(192, 192, 192, 0.15);
}

.lwe-sb-arena__pedestal--bronze {
  background: linear-gradient(90deg, transparent, rgba(205, 127, 50, 0.5), transparent);
  box-shadow: 0 0 6px rgba(205, 127, 50, 0.15);
}

/* ── Player/Guild List (4th+) ── */
.lwe-sb-arena__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 107, 53, 0.08);
}

.lwe-sb-arena__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(10, 16, 28, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
  animation: lwe-sb-row-enter 0.35s ease both;
}

.lwe-sb-arena__row:hover {
  background: rgba(255, 77, 26, 0.06);
  border-color: rgba(255, 107, 53, 0.15);
  transform: translateX(3px);
}

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

/* ── Row rank number ── */
.lwe-sb-arena__row-rank {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--tmu-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* ── Row character icon ── */
.lwe-sb-arena__row-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: rgba(20, 28, 48, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* ── Row guild mark ── */
.lwe-sb-arena__row-guild-mark {
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Row info (name + class) ── */
.lwe-sb-arena__row-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.lwe-sb-arena__row-name {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--tmu-text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}

.lwe-sb-arena__row-name:hover {
  color: #ff6b35;
  text-decoration: none;
}

.lwe-sb-arena__row-class {
  font-size: 0.58rem;
  color: var(--tmu-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Row stats (level, resets) ── */
.lwe-sb-arena__row-stats {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.lwe-sb-arena__row-val {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--tmu-text);
}

.lwe-sb-arena__row-val sup {
  font-size: 0.5rem;
  color: rgba(255, 107, 53, 0.7);
  margin-left: 2px;
}

/* ── Responsive: stack podium on very narrow panels ── */
@media (max-width: 420px) {
  .lwe-sb-arena__podium {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lwe-sb-arena__card {
    flex-direction: row;
    padding: 10px 12px;
    gap: 10px;
    text-align: left;
  }

  .lwe-sb-arena__icon,
  .lwe-sb-arena__guild-mark {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }

  .lwe-sb-arena__crown {
    display: none;
  }

  .lwe-sb-arena__stats {
    margin-left: auto;
    flex-direction: row;
  }
}

/* ==========================================================================
   HALL OF LEGENDS — .tmu-arena  (LWE fire overrides)
   ========================================================================== */

/* ── Header fire veil ── */
.tmu-arena__header {
  border-color: rgba(255, 107, 53, 0.18);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 77, 26, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(9, 14, 24, 0.98), rgba(6, 10, 18, 0.94));
}

.tmu-arena__header-veil {
  background:
    radial-gradient(ellipse 50% 70% at 50% 10%, rgba(255, 107, 53, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 60% at 25% 80%, rgba(255, 60, 20, 0.06), transparent 50%),
    radial-gradient(ellipse 40% 60% at 75% 70%, rgba(255, 120, 50, 0.04), transparent 50%);
}

.tmu-arena__orb--1 { background: rgba(255, 107, 53, 0.15); }
.tmu-arena__orb--2 { background: rgba(255, 60, 20, 0.12); }
.tmu-arena__orb--3 { background: rgba(255, 120, 50, 0.06); }
.tmu-arena__orb--4 { background: rgba(255, 138, 0, 0.1); }
.tmu-arena__orb--5 { background: rgba(255, 77, 26, 0.08); }

.tmu-arena__sigil {
  border-color: rgba(255, 107, 53, 0.06);
  box-shadow: 0 0 80px rgba(255, 107, 53, 0.03);
}

.tmu-arena__trophy {
  background: linear-gradient(135deg, rgba(255, 77, 26, 0.2), rgba(255, 138, 0, 0.1));
  border-color: rgba(255, 107, 53, 0.35);
  box-shadow: 0 0 40px rgba(255, 107, 53, 0.15), 0 0 80px rgba(255, 77, 26, 0.06);
  color: #ff6b35;
}

@keyframes arena-trophy-glow-lwe {
  0%, 100% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.15), 0 0 80px rgba(255, 77, 26, 0.06); }
  50%      { box-shadow: 0 0 60px rgba(255, 107, 53, 0.25), 0 0 100px rgba(255, 77, 26, 0.12); }
}

.tmu-arena__trophy {
  animation: arena-trophy-glow-lwe 3s ease-in-out infinite;
}

.tmu-arena__title {
  background: linear-gradient(180deg, #fff 20%, rgba(255, 138, 0, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.tmu-arena__divider span:nth-child(1) {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5));
}
.tmu-arena__divider span:nth-child(3) {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.5), transparent);
}
.tmu-arena__divider span:nth-child(2) {
  background: rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}

/* ── Stage fire border ── */
.tmu-arena__stage {
  border-color: rgba(255, 107, 53, 0.18);
  background:
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(255, 77, 26, 0.03), transparent 50%),
    rgba(6, 10, 18, 0.5);
}

.tmu-arena__stage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
}

/* ── Podium fire glow ── */
.tmu-arena__podium-card--gold {
  border-color: rgba(255, 138, 0, 0.35);
  box-shadow:
    0 0 50px rgba(255, 107, 53, 0.12),
    0 0 100px rgba(255, 77, 26, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.3);
}

.tmu-arena__podium-card--gold::before {
  background:
    radial-gradient(ellipse 80% 80% at 50% -20%, rgba(255, 107, 53, 0.1), transparent 50%);
  opacity: 1;
}

.tmu-arena__podium-card--gold::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 40px;
  background: linear-gradient(to top, rgba(255, 107, 53, 0.06), transparent);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.tmu-arena__podium-card--gold:hover {
  border-color: rgba(255, 138, 0, 0.55);
  box-shadow:
    0 0 70px rgba(255, 107, 53, 0.2),
    0 0 120px rgba(255, 77, 26, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.35);
}

.tmu-arena__podium-card--gold .tmu-arena__podium-rank {
  background: linear-gradient(135deg, #ff6b35, #ff8a00);
}

.tmu-arena__podium-card--gold .tmu-arena__podium-crown {
  color: #ff8a00;
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
}

.tmu-arena__podium-card--gold .tmu-arena__podium-name a {
  background: linear-gradient(135deg, #ff8a00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tmu-arena__podium-card--gold .tmu-arena__podium-icon {
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 0 28px rgba(255, 107, 53, 0.2), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tmu-arena__podium-pedestal--gold {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.7), transparent);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.35);
}

/* ── Silver podium fire glow ── */
.tmu-arena__podium-card--silver {
  border-color: rgba(192, 192, 192, 0.25);
  box-shadow:
    0 0 40px rgba(192, 192, 192, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.25);
}

.tmu-arena__podium-card--silver::before {
  background:
    radial-gradient(ellipse 80% 80% at 50% -20%, rgba(192, 192, 192, 0.08), transparent 50%);
}

.tmu-arena__podium-card--silver::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 40px;
  background: linear-gradient(to top, rgba(192, 192, 192, 0.04), transparent);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.tmu-arena__podium-card--silver:hover {
  border-color: rgba(192, 192, 192, 0.45);
  box-shadow:
    0 0 55px rgba(192, 192, 192, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.3);
}

.tmu-arena__podium-card--silver .tmu-arena__podium-rank {
  background: linear-gradient(135deg, #c0c0c0, #999);
}

.tmu-arena__podium-card--silver .tmu-arena__podium-crown {
  color: #d0d0d0;
  filter: drop-shadow(0 0 8px rgba(192, 192, 192, 0.4));
}

.tmu-arena__podium-card--silver .tmu-arena__podium-icon {
  border-color: rgba(192, 192, 192, 0.35);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.12), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tmu-arena__podium-pedestal--silver {
  background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.55), transparent);
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

/* ── Bronze podium fire glow ── */
.tmu-arena__podium-card--bronze {
  border-color: rgba(205, 127, 50, 0.25);
  box-shadow:
    0 0 40px rgba(205, 127, 50, 0.08),
    0 16px 40px rgba(0, 0, 0, 0.25);
}

.tmu-arena__podium-card--bronze::before {
  background:
    radial-gradient(ellipse 80% 80% at 50% -20%, rgba(205, 127, 50, 0.08), transparent 50%);
}

.tmu-arena__podium-card--bronze::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 40px;
  background: linear-gradient(to top, rgba(205, 127, 50, 0.04), transparent);
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}

.tmu-arena__podium-card--bronze:hover {
  border-color: rgba(205, 127, 50, 0.45);
  box-shadow:
    0 0 55px rgba(205, 127, 50, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.3);
}

.tmu-arena__podium-card--bronze .tmu-arena__podium-rank {
  background: linear-gradient(135deg, #cd7f32, #a0622a);
}

.tmu-arena__podium-card--bronze .tmu-arena__podium-crown {
  color: #cd7f32;
  filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.4));
}

.tmu-arena__podium-card--bronze .tmu-arena__podium-name a {
  color: #cd7f32;
}

.tmu-arena__podium-card--bronze .tmu-arena__podium-icon {
  border-color: rgba(205, 127, 50, 0.35);
  box-shadow: 0 0 20px rgba(205, 127, 50, 0.12), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.tmu-arena__podium-pedestal--bronze {
  background: linear-gradient(90deg, transparent, rgba(205, 127, 50, 0.55), transparent);
  box-shadow: 0 0 10px rgba(205, 127, 50, 0.2);
}

/* ── Filters fire style ── */
.tmu-arena__filter-btn {
  border-color: rgba(255, 107, 53, 0.12);
}

.tmu-arena__filter-btn:hover {
  border-color: rgba(255, 107, 53, 0.3);
  background: rgba(255, 77, 26, 0.08);
}

.tmu-arena__filter-btn.is-active {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 77, 26, 0.08));
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.12);
  color: #fff;
}

/* ── List head fire underline ── */
.tmu-arena__list-head {
  border-bottom-color: rgba(255, 107, 53, 0.12);
}

/* ── Row fire hover ── */
.tmu-arena__row {
  border-color: rgba(255, 107, 53, 0.04);
}

.tmu-arena__row:hover {
  background: rgba(255, 77, 26, 0.06);
  border-color: rgba(255, 107, 53, 0.18);
  box-shadow: inset 0 0 20px rgba(255, 87, 34, 0.03);
}

.tmu-arena__row:nth-child(-n+3) .tmu-arena__rank-num {
  color: #fff;
}

.tmu-arena__row:nth-child(1) .tmu-arena__rank-num {
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.2), rgba(255, 107, 53, 0.1));
  border-color: rgba(255, 138, 0, 0.3);
  color: #ff8a00;
}

/* ── Search fire ── */
.tmu-arena__search-wrap {
  border-color: rgba(255, 107, 53, 0.18);
}

.tmu-arena__search-wrap:focus-within {
  border-color: rgba(255, 107, 53, 0.45);
  box-shadow: 0 0 24px rgba(255, 107, 53, 0.1);
}

.tmu-arena__search-btn {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 77, 26, 0.1));
  color: #ff6b35;
}

.tmu-arena__search-btn:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.35), rgba(255, 77, 26, 0.2));
}

/* ── Stat accents ── */
.tmu-arena__ml,
.tmu-arena__gr {
  color: rgba(255, 107, 53, 0.7);
}

.tmu-arena__podium-stat-val sup {
  color: rgba(255, 107, 53, 0.8);
}

.tmu-arena__char-name:hover {
  color: #ff6b35 !important;
}

/* ── Loader fire ── */
.tmu-arena__loader-ring {
  border-color: rgba(255, 107, 53, 0.15);
  border-top-color: #ff6b35;
}

/* ── REDUCED MOTION — DISABLE CUSTOM ANIMATIONS ── */

@media (prefers-reduced-motion: reduce) {
  .tmu-anim { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .lwe-section__title { animation: none; -webkit-text-fill-color: #fff; }
  .lwe-section__eyebrow { animation: none; }
  .lwe-step__num, .mu-btn--primary, .nova-crest, .lwe-cta,
  .tmu-announce__badge, .lwe-step__arrow i { animation: none !important; }
  .lwe-why-card, .lwe-class-card, .lwe-event-card, .lwe-rank-panel,
  .lwe-sidebar-panel, .lwe-step, .mu-btn { transition: none !important; }
  .lwe-footer__grid > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .tmu-arena__orb, .tmu-arena__sigil, .tmu-arena__trophy,
  .tmu-arena__podium-crown, .tmu-arena__podium-card,
  .tmu-arena__row, .tmu-arena__loader-ring { animation: none !important; }
  html { scroll-behavior: auto; }
  body.nova { animation: none; }
}

/* ==========================================================================
   MOBILE AI BOT FIX — Prevent overlap with bottom tab bar Home button
   ========================================================================== */

@media (max-width: 768px) {
  /* Push AI toggle above the mobile tabbar (68px bar + safe area + spacing) */
  .tmu-aibot-toggle {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
    left: 16px !important;
    width: 56px !important;
    height: 56px !important;
  }

  .tmu-aibot-toggle svg {
    width: 22px !important;
    height: 22px !important;
  }

  .tmu-aibot-toggle__dot {
    width: 10px !important;
    height: 10px !important;
    top: 0 !important;
    right: 0 !important;
  }

  /* Reposition chat window above the toggle */
  .tmu-aibot-window {
    bottom: calc(146px + env(safe-area-inset-bottom, 0px)) !important;
    left: 8px !important;
    width: calc(100vw - 16px) !important;
    max-width: none !important;
    max-height: calc(100vh - 160px - env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 14px !important;
  }

  /* AI hint bubble also needs to move up */
  .tmu-aibot-hint {
    bottom: calc(142px + env(safe-area-inset-bottom, 0px)) !important;
    left: 80px !important;
  }
}
