/* RF Ascension — inspired by RF Online Next layout (not a copy) */

:root {
  --black: #000;
  --dark: #0a0a0a;
  --dark-2: #111;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --white: #fff;
  --muted: rgba(255,255,255,.55);
  --dim: rgba(255,255,255,.3);
  --orange: #e85a0a;
  --orange-hover: #ff6b1a;
  --gold: #f0c040;
  --online: #4ade80;
  --font: 'Roboto', sans-serif;
  --font-display: 'Oswald', sans-serif;
  --header: 64px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--header);
  background: rgba(0,0,0,.85);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
.header.is-solid { background: #000; }

.header__bar {
  max-width: 1400px; margin: 0 auto;
  height: 100%; padding: 0 32px;
  display: flex; align-items: center; gap: 24px;
}

.header__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  flex-shrink: 0;
}
.header__logo { height: 32px; width: auto; }

.header__nav {
  flex: 1; display: flex; align-items: center; gap: 4px;
}
.header__link {
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.header__link:hover { color: var(--white); }
.header__link.active { color: var(--orange); }

.header__right {
  display: flex; align-items: center; gap: 20px;
  flex-shrink: 0;
}
.header__online {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
}
.header__online i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--online);
  box-shadow: 0 0 8px var(--online);
}
.header__online b { color: var(--white); }

.lang-switch { position: relative; flex-shrink: 0; }
.lang-switch__btn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 34px; padding: 0 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  letter-spacing: .12em;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.lang-switch__btn:hover,
.lang-switch__btn[aria-expanded="true"] {
  border-color: var(--orange);
  background: rgba(232,90,10,.1);
  color: var(--orange);
}
.lang-switch__arrow {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .8;
}
.lang-switch__menu {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 400;
  min-width: 140px;
  list-style: none;
  margin: 0; padding: 6px;
  background: #0a0a0a;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0,0,0,.6);
}
.lang-switch__menu button {
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.lang-switch__menu button:hover,
.lang-switch__menu button.is-active {
  color: var(--orange);
  background: rgba(232,90,10,.08);
}

.header__menu {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 28px; height: 20px; position: relative;
  margin-left: auto;
}
.header__menu span {
  display: block; width: 100%; height: 2px;
  background: var(--white); position: absolute; left: 0;
}
.header__menu span:nth-child(1) { top: 0; }
.header__menu span:nth-child(2) { top: 9px; }
.header__menu span:nth-child(3) { top: 18px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: background .2s, border-color .2s, color .2s;
}
.btn--dl {
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
}
.btn--dl:hover { background: var(--orange-hover); }
.btn--cp {
  padding: 10px 22px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line-strong);
}
.btn--cp:hover { border-color: var(--orange); color: var(--orange); }

/* ===== MAIN ===== */
.main { position: relative; z-index: 1; }
body.has-maint .main { padding-top: var(--maint-h, 160px); }
body.has-maint .hero__center { padding-top: calc(var(--header) + var(--maint-h, 160px) + 24px); }

/* ===== MANUTENÇÃO / COUNTDOWN ===== */
.maint {
  position: fixed;
  top: var(--header);
  left: 0; right: 0;
  z-index: 280;
  background:
    linear-gradient(90deg, rgba(232,90,10,.12) 0%, transparent 40%),
    linear-gradient(180deg, rgba(12,12,12,.98) 0%, rgba(6,6,6,.96) 100%);
  border-bottom: 2px solid rgba(232,90,10,.45);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.maint[hidden] { display: none; }
.maint__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.maint__visual {
  flex-shrink: 0;
  min-width: 120px;
  min-height: 88px;
  padding: 6px;
  border: 1px solid rgba(232,90,10,.3);
  background: rgba(0,0,0,.5);
  box-shadow: 0 0 24px rgba(232,90,10,.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.maint__visual.is-missing .maint__img { display: none; }
.maint__visual.is-missing::before {
  content: '';
  width: 40px; height: 40px;
  border: 3px solid rgba(232,90,10,.25);
  border-radius: 50%;
  border-top-color: var(--orange);
}
.maint__img {
  display: block;
  height: 110px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  border-radius: 2px;
}
.maint__info { flex: 1; min-width: 0; }
.maint__label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.maint__date {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.maint__waiting {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.maint--paused .maint__clock { display: none; }
.maint__clock {
  display: flex;
  align-items: center;
  gap: 6px;
}
.maint__unit {
  min-width: 56px;
  padding: 8px 6px 6px;
  text-align: center;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(232,90,10,.35);
  border-radius: 4px;
}
.maint__unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(240,192,64,.35);
}
.maint__unit span {
  display: block;
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
}
.maint__sep {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  padding-bottom: 14px;
}

@media (max-width: 700px) {
  .maint__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 14px 16px;
  }
  .maint__img { height: 72px; }
  .maint__clock { justify-content: center; flex-wrap: wrap; }
  .maint__unit { min-width: 48px; }
  .maint__sep { display: none; }
}

.page { animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.page-loader {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
}
.page-loader span {
  width: 24px; height: 24px;
  border: 2px solid var(--line);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== HOME HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: #0d1520 center / cover no-repeat;
  background-image: url('../img/hero.jpg');
}
.hero__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
}
.hero.has-video .hero__video { opacity: 1; }
.hero.has-video .hero__bg { opacity: 0; }
.hero__scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.03) 2px,
    rgba(0,0,0,.03) 4px
  );
}
.hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,.7) 100%),
    linear-gradient(180deg, rgba(0,0,0,.4) 0%, transparent 30%, rgba(0,0,0,.85) 100%);
}

.hero__center {
  position: relative; z-index: 2;
  text-align: center;
  padding: calc(var(--header) + 40px) 24px 100px;
  max-width: 900px;
}

.hero__logo-img {
  max-height: 120px; width: auto; margin: 0 auto 16px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.8));
}
.hero__logo-text {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 700; letter-spacing: .08em;
  line-height: 1; margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,.8);
}
.hero__logo-text em {
  font-style: normal;
  background: linear-gradient(180deg, #fff 30%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}

.hero__downloads {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 20px;
}
.dl-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  background: rgba(0,0,0,.65);
  border: 1px solid var(--line-strong);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  transition: border-color .2s, background .2s;
  min-width: 160px; justify-content: center;
}
.dl-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

.hero__remote {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted);
  letter-spacing: .06em; text-transform: uppercase;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.hero__remote:hover { color: var(--white); border-color: var(--line); }

.hero__social {
  position: absolute; bottom: 40px; left: 40px; z-index: 2;
  display: flex; gap: 12px;
}
.hero__social a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  background: rgba(0,0,0,.4);
  transition: border-color .2s, color .2s;
}
.hero__social a:hover { border-color: var(--white); color: var(--white); }

.hero__scroll {
  position: absolute; bottom: 40px; right: 40px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--dim);
}
.hero__scroll i {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--dim), transparent);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SHOWCASE SLIDER ===== */
.showcase {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: var(--black);
  overflow: hidden;
}
.showcase__track {
  display: flex;
  height: 100%;
  transition: transform .7s var(--ease);
}
.showcase__slide {
  flex: 0 0 100%;
  position: relative;
  height: 100%;
}
.showcase__bg {
  position: absolute; inset: 0;
  background: #151515 center / cover no-repeat;
  transition: transform 8s linear;
}
.showcase__slide.is-active .showcase__bg { transform: scale(1.05); }
.showcase__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.3) 100%),
    linear-gradient(0deg, rgba(0,0,0,.6), transparent 40%);
}

.showcase__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 10% 0 8%;
  max-width: 600px;
}

.showcase__num {
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.15);
  margin-bottom: -10px;
}

.showcase__title {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.showcase__title h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.showcase__title .deco {
  display: block; width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  position: relative;
}
.showcase__title .deco::after {
  content: '';
  position: absolute; top: 50%; left: -3px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.showcase__content p {
  color: var(--muted);
  font-size: 15px;
  max-width: 380px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.showcase__arrow {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color .2s, background .2s;
  position: relative;
}
.showcase__arrow::after {
  content: '';
  width: 8px; height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg) translate(-2px, 0);
}
.showcase__arrow:hover {
  border-color: var(--orange);
  background: rgba(232,90,10,.15);
}

.showcase__nav {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; align-items: center; gap: 20px;
}
.showcase__prev, .showcase__next {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  cursor: pointer;
  position: relative;
  transition: border-color .2s;
}
.showcase__prev:hover, .showcase__next:hover { border-color: var(--white); }
.showcase__prev::after, .showcase__next::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 8px; height: 8px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}
.showcase__prev::after { transform: translate(-30%, -50%) rotate(45deg); }
.showcase__next::after { transform: translate(-70%, -50%) rotate(-135deg); }

.showcase__dots { display: flex; gap: 8px; }
.showcase__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background .2s, border-color .2s;
}
.showcase__dots button.is-active {
  background: var(--orange);
  border-color: var(--orange);
}

/* ===== HOME BOTTOM ===== */
.home-bottom {
  background: var(--dark);
  border-top: 1px solid var(--line);
  padding: 60px 32px;
}
.home-bottom__inner { max-width: 1200px; margin: 0 auto; }

.status-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 48px;
}
.status-strip__item {
  background: var(--dark-2);
  padding: 24px;
  text-align: center;
}
.status-strip__item label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--dim);
  margin-bottom: 6px;
}
.status-strip__item strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
}
.is-on { color: var(--online); }
.is-off { color: #f87171; }

.header__online.is-offline .header__online-text { color: var(--muted); }
.header__online.is-offline #header-status-dot {
  background: #f87171;
  box-shadow: 0 0 8px #f87171;
}

.media-section__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.media-section__head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.media-section__links { display: flex; gap: 24px; }
.media-section__links a {
  font-size: 12px;
  text-transform: lowercase;
  color: var(--muted);
  letter-spacing: .04em;
  transition: color .2s;
}
.media-section__links a:hover { color: var(--orange); }

.news-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-item {
  padding: 20px 0;
  border-top: 2px solid transparent;
  transition: border-color .2s;
}
.news-item:hover { border-top-color: var(--orange); }
.news-item time {
  font-size: 11px;
  color: var(--dim);
  letter-spacing: .08em;
}
.news-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0 6px;
  letter-spacing: .04em;
}
.news-item p { font-size: 13px; color: var(--muted); }

/* ===== INNER PAGES ===== */
.page-hero {
  position: relative;
  min-height: 340px;
  display: flex; align-items: flex-end;
  margin-top: var(--header);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: #0d1520 center / cover no-repeat;
}
.page-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.95));
}
.page-hero__body {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 48px 32px;
  width: 100%;
}
.page-hero__body h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.page-hero__body p { color: var(--muted); margin-top: 8px; font-size: 15px; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

/* Download */
.dl-single {
  max-width: 480px;
  margin: 0 auto 48px;
}
.dl-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
.dl-card {
  border: 1px solid var(--line);
  background: var(--dark-2);
  padding: 28px;
  transition: border-color .2s;
}
.dl-card:hover { border-color: var(--line-strong); }
.dl-card--main { border-color: rgba(232,90,10,.4); }
.dl-card__tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.dl-card h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 8px;
}
.dl-card > p { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.dl-card__meta { list-style: none; margin-bottom: 24px; }
.dl-card__meta li {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.dl-card__meta span { color: var(--muted); }

.btn--outline {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--white);
  width: 100%;
}
.btn--outline:hover { border-color: var(--white); }
.btn--fill {
  padding: 12px 24px;
  background: var(--orange);
  color: var(--white);
  width: 100%;
}
.btn--fill:hover { background: var(--orange-hover); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.split h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.steps { list-style: none; }
.steps li {
  display: flex; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.steps li span {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  color: var(--orange); flex-shrink: 0; line-height: 1;
}
.steps strong { display: block; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 13px; }
.req { border: 1px solid var(--line); padding: 20px; margin-bottom: 12px; }
.req h3 { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); margin-bottom: 10px; }
.req ul { list-style: none; }
.req li { font-size: 13px; color: var(--muted); padding: 4px 0; }

.support-block {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.support-block h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.support-block__intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 720px;
  line-height: 1.7;
}
.support-block__intro code,
.steps code,
.support-steps code {
  background: rgba(255,255,255,.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--orange);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.support-steps { list-style: none; }
.support-steps li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}
.support-steps li:last-child { border-bottom: none; }
.support-steps li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--orange);
}
.fix-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid rgba(232,90,10,.35);
  background: rgba(232,90,10,.06);
  padding: 24px 28px;
  border-radius: 12px;
}
.fix-box strong { display: block; margin-bottom: 4px; font-size: 15px; }
.fix-box p { font-size: 13px; color: var(--muted); }
.fix-box .btn--fill { flex-shrink: 0; }

/* Tabs */
.tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.tabs__btn {
  padding: 14px 24px;
  background: none; border: none;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.tabs__btn:hover { color: var(--white); }
.tabs__btn.active { color: var(--orange); border-bottom-color: var(--orange); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rate-note {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 4px;
}

.info-intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.coming-soon {
  text-align: center;
  padding: 80px 32px;
  border: 1px solid var(--line);
  background: var(--dark-2);
  border-radius: 8px;
}
.coming-soon--compact {
  padding: 56px 24px;
  margin-top: 8px;
}
.coming-soon__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.coming-soon__text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

.quest-video {
  max-width: 900px;
  margin: 40px auto 0;
}
.quest-video__card {
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(232,90,10,.08) 0%, transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.03) 0%, transparent 55%),
    var(--dark-2);
  box-shadow:
    0 24px 64px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
}
.quest-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(232,90,10,.28);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 16px 48px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 0 40px rgba(232,90,10,.12);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.quest-video__card:hover .quest-video__frame {
  border-color: rgba(232,90,10,.55);
  box-shadow:
    0 20px 56px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 48px rgba(232,90,10,.22);
  transform: translateY(-2px);
}
.quest-video__glow {
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse at center, rgba(232,90,10,.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  opacity: .85;
}
.quest-video__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, transparent 22%, transparent 78%, rgba(0,0,0,.35) 100%),
    linear-gradient(90deg, rgba(0,0,0,.18) 0%, transparent 12%, transparent 88%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
  z-index: 2;
}
.quest-video__player {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #000;
  transform: scale(1.02);
}
.quest-video__caption {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: rgba(0,0,0,.28);
  text-align: left;
}
.quest-video__desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin: 0;
  letter-spacing: .01em;
}
@media (max-width: 768px) {
  .quest-video__card { padding: 18px 16px 16px; }
  .quest-video__caption { padding: 14px 16px; }
  .quest-video__desc { font-size: 14px; }
}

.quest-list {
  max-width: 900px;
  margin: 32px auto 0;
}
.mob-acc--quest .mob-acc__item.is-open .mob-acc__body { max-height: 720px; }
.quest-daily {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quest-daily__objectives {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quest-daily__objectives li {
  position: relative;
  padding: 12px 16px 12px 42px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.quest-daily__objectives li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(232,90,10,.55);
}
.quest-daily__note {
  margin: 0;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gold);
  background: rgba(240,192,64,.08);
  border: 1px solid rgba(240,192,64,.28);
  border-radius: 8px;
  text-align: center;
}
.quest-daily__img-wrap {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.quest-daily__img {
  display: block;
  width: 100%;
  max-height: 280px;
  height: auto;
  object-fit: contain;
}

/* PB Drops */
.mob-acc--pbs .mob-acc__item.is-open .mob-acc__body { max-height: 3200px; }
.pb-drops {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pb-drops__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.pb-drops__list li {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  color: rgba(255,255,255,.9);
  background: rgba(0,0,0,.28);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color .2s, background .2s;
}
.pb-drops__list li:hover {
  border-color: rgba(232,90,10,.4);
  background: rgba(232,90,10,.08);
}
.pb-drops__list--accent li {
  border-color: rgba(232,90,10,.25);
  background: rgba(232,90,10,.06);
}
.pb-drops__sub {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.pb-drops__sub--first {
  padding-top: 0;
  border-top: none;
}
.pb-drops__group {
  margin-top: 18px;
}
.pb-drops__group:first-of-type {
  margin-top: 14px;
}
.pb-drops__group-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.pb-drops__sub-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.pb-drops__pending {
  margin: 0;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(0,0,0,.2);
}

.info-subtitle {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.table-wrap { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.info-table td:first-child { color: var(--text); width: 45%; }
.info-table .hl { color: var(--orange); font-weight: 600; }
.info-table .hl.on { color: var(--online); }
.info-table .sub { font-size: 12px; color: var(--muted); font-weight: 400; }
.info-table a { color: var(--orange); }

/* Talicação Rate */
.tali-legend {
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  margin-bottom: 20px;
}
.tali-legend__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.tali-legend__item i {
  width: 10px; height: 10px; border-radius: 2px; flex-shrink: 0;
}
.tali-legend__item--ok i { background: var(--online); box-shadow: 0 0 8px rgba(74,222,128,.5); }
.tali-legend__item--down i { background: var(--gold); box-shadow: 0 0 8px rgba(240,192,64,.4); }
.tali-legend__item--destroy i { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,.45); }
.tali-legend__item--off i { background: var(--dim); }

.tali-wrap { border-color: rgba(232,90,10,.25); box-shadow: 0 0 40px rgba(232,90,10,.06); }
.tali-table th { text-align: center; }
.tali-table th:first-child { text-align: left; }
.tali-table td { text-align: center; vertical-align: middle; }
.tali-table td:first-child { text-align: left; }

.tali-row--safe td { background: rgba(74,222,128,.03); }
.tali-row--risk td { background: rgba(232,90,10,.05); }
.tali-row--ccr td { background: rgba(240,192,64,.04); }
.tali-row--off td { background: rgba(255,255,255,.02); opacity: .85; }

.tali-level {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 32px; padding: 0 10px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: .04em;
  color: var(--online);
  border: 1px solid rgba(74,222,128,.35);
  background: rgba(74,222,128,.08);
  border-radius: 6px;
}
.tali-level--risk {
  color: var(--orange);
  border-color: rgba(232,90,10,.45);
  background: rgba(232,90,10,.12);
}
.tali-level--gold {
  color: var(--gold);
  border-color: rgba(240,192,64,.45);
  background: rgba(240,192,64,.1);
  text-shadow: 0 0 12px rgba(240,192,64,.35);
}
.tali-level--off {
  color: var(--dim);
  border-color: var(--line);
  background: transparent;
}

.tali-pill {
  display: inline-block;
  min-width: 72px; padding: 6px 12px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  border-radius: 4px;
}
.tali-pill--success {
  color: var(--online);
  background: rgba(74,222,128,.12);
  border: 1px solid rgba(74,222,128,.3);
}
.tali-pill--none {
  color: var(--dim);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
}
.tali-pill--warn {
  color: var(--orange);
  background: rgba(232,90,10,.12);
  border: 1px solid rgba(232,90,10,.35);
}
.tali-pill--down {
  color: var(--gold);
  background: rgba(240,192,64,.1);
  border: 1px solid rgba(240,192,64,.3);
}
.tali-pill--destroy {
  color: #f87171;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
}
.tali-pill--ccr {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(240,192,64,.15), rgba(232,90,10,.1));
  border: 1px solid rgba(240,192,64,.4);
  text-shadow: 0 0 8px rgba(240,192,64,.3);
}
.tali-pill--disabled {
  color: var(--dim);
  background: rgba(255,255,255,.04);
  border: 1px dashed var(--line);
  font-size: 11px;
}

.tali-bar {
  width: 100%; max-width: 100px; height: 4px;
  margin: 8px auto 0;
  background: rgba(255,255,255,.08);
  border-radius: 2px; overflow: hidden;
}
.tali-bar__fill { height: 100%; border-radius: 2px; transition: width .4s var(--ease); }
.tali-bar--success .tali-bar__fill { background: var(--online); box-shadow: 0 0 6px rgba(74,222,128,.6); }
.tali-bar--down .tali-bar__fill { background: var(--gold); box-shadow: 0 0 6px rgba(240,192,64,.5); }
.tali-bar--destroy .tali-bar__fill { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,.5); }

.tali-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.tali-note {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark-2);
}
.tali-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .06em;
  margin-bottom: 6px;
}
.tali-note p { font-size: 12px; color: var(--muted); line-height: 1.5; }
.tali-note--safe { border-left: 3px solid var(--online); }
.tali-note--safe strong { color: var(--online); }
.tali-note--risk { border-left: 3px solid var(--orange); }
.tali-note--risk strong { color: var(--orange); }
.tali-note--ccr { border-left: 3px solid var(--gold); }
.tali-note--ccr strong { color: var(--gold); }
.tali-note--off { border-left: 3px solid var(--dim); }
.tali-note--off strong { color: var(--dim); }

@media (max-width: 900px) {
  .tali-notes { grid-template-columns: 1fr 1fr; }
  .tali-table { font-size: 12px; }
  .tali-pill { min-width: 56px; padding: 5px 8px; font-size: 11px; }
}
@media (max-width: 600px) {
  .tali-notes { grid-template-columns: 1fr; }
  .tali-legend { gap: 10px 16px; }
}

/* Drops Mobs accordion */
.mob-acc { display: flex; flex-direction: column; gap: 10px; }
.mob-acc__item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--dark-2);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.mob-acc__item.is-open {
  border-color: rgba(232,90,10,.45);
  box-shadow: 0 0 24px rgba(232,90,10,.08);
}
.mob-acc__head {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  transition: background .2s;
}
.mob-acc__head:hover { background: rgba(255,255,255,.03); }
.mob-acc__item.is-open .mob-acc__head { background: rgba(232,90,10,.06); }
.mob-acc__title {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.mob-acc__item.is-open .mob-acc__title { color: var(--orange); }
.mob-acc__meta {
  font-family: var(--font);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.mob-acc__chev {
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .25s var(--ease), border-color .25s;
  flex-shrink: 0;
  margin-left: 4px;
}
.mob-acc__item.is-open .mob-acc__chev {
  transform: rotate(-135deg);
  border-color: var(--orange);
  margin-top: 4px;
}
.mob-acc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.mob-acc__item.is-open .mob-acc__body { max-height: 1600px; }
.mob-acc__body .table-wrap {
  overflow: hidden;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--line);
}
.mob-maps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.25);
}
.btn--map {
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(232,90,10,.45);
  background: rgba(232,90,10,.08);
  color: var(--orange);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.btn--map:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn--map::before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6'/%3E%3Cline x1='8' y1='2' x2='8' y2='18'/%3E%3Cline x1='16' y1='6' x2='16' y2='22'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6'/%3E%3Cline x1='8' y1='2' x2='8' y2='18'/%3E%3Cline x1='16' y1='6' x2='16' y2='22'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: .85;
}

.map-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.map-modal[hidden] { display: none; }
.map-modal__backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(232,90,10,.08) 0%, transparent 55%),
    rgba(0,0,0,.92);
  backdrop-filter: blur(8px);
  animation: mapFadeIn .25s ease;
}
.map-modal__box {
  position: relative; z-index: 1;
  width: min(620px, calc(100vw - 32px));
  max-height: min(82vh, 680px);
  display: flex; flex-direction: column;
  border: 1px solid rgba(232,90,10,.35);
  background:
    linear-gradient(180deg, rgba(20,20,20,.98) 0%, rgba(8,8,8,.98) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 0 40px rgba(232,90,10,.12),
    0 24px 64px rgba(0,0,0,.75);
  animation: mapSlideIn .35s var(--ease);
  overflow: hidden;
}
@keyframes mapFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes mapSlideIn {
  from { opacity: 0; transform: scale(.94) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.map-modal__corners::before,
.map-modal__corners::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--orange);
  opacity: .7;
  pointer-events: none;
  z-index: 3;
}
.map-modal__corners::before {
  top: 8px; left: 8px;
  border-right: none; border-bottom: none;
}
.map-modal__corners::after {
  bottom: 8px; right: 8px;
  border-left: none; border-top: none;
}
.map-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px 12px 20px;
  border-bottom: 1px solid rgba(232,90,10,.2);
  background: linear-gradient(90deg, rgba(232,90,10,.1) 0%, transparent 60%);
}
.map-modal__label {
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2px;
}
.map-modal__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.map-modal__close {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.5);
  cursor: pointer;
  position: relative;
  transition: border-color .2s, background .2s;
}
.map-modal__close span {
  position: absolute; inset: 0;
  margin: auto;
  width: 14px; height: 14px;
}
.map-modal__close span::before,
.map-modal__close span::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: var(--muted);
  transition: background .2s;
}
.map-modal__close span::before { transform: translateY(-50%) rotate(45deg); }
.map-modal__close span::after { transform: translateY(-50%) rotate(-45deg); }
.map-modal__close:hover {
  border-color: var(--orange);
  background: rgba(232,90,10,.15);
}
.map-modal__close:hover span::before,
.map-modal__close:hover span::after { background: var(--orange); }
.map-modal__frame {
  flex: 1;
  min-height: 0;
  padding: 12px;
  background:
    radial-gradient(ellipse at center, rgba(232,90,10,.04) 0%, transparent 70%),
    #050505;
}
.map-modal__viewport {
  height: 100%;
  max-height: calc(82vh - 130px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.6);
  box-shadow: 0 0 24px rgba(0,0,0,.5) inset;
  overflow: hidden;
}
.map-modal__img {
  display: block;
  max-width: 100%;
  max-height: calc(82vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 2px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.map-modal__hint {
  padding: 10px 16px 12px;
  text-align: center;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dim);
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.35);
}

@media (max-width: 600px) {
  .map-modal { padding: 12px; }
  .map-modal__box { width: 100%; max-height: 88vh; }
  .map-modal__viewport { max-height: calc(88vh - 120px); }
  .map-modal__img { max-height: calc(88vh - 150px); }
}

.mob-table td:first-child { color: var(--white); font-weight: 500; }
.mob-table .hl { color: var(--orange); font-weight: 500; }
.mob-table__sep td {
  background: rgba(255,255,255,.03);
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 10px 16px;
}

.rate {
  border: 1px solid var(--line);
  padding: 32px; text-align: center;
  background: var(--dark-2);
}
.rate label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--dim); margin-bottom: 8px; }
.rate strong {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--orange);
}

.rules, .feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rule, .feat {
  border: 1px solid var(--line);
  padding: 24px; background: var(--dark-2);
  transition: border-color .2s;
}
.rule:hover, .feat:hover { border-color: var(--line-strong); }
.rule h3, .feat h3 {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 8px;
  color: var(--orange);
}
.rule p, .feat p { font-size: 13px; color: var(--muted); }

/* Rules page */
.rules-page { padding-bottom: 64px; }
.rules-tabs { margin-bottom: 28px; }
.rules-section__label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(232,90,10,.25);
}
.rules-page__hero {
  text-align: center;
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.rules-page__brand {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.rules-page__hero h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.rules-page__intro {
  color: var(--muted);
  font-size: 14px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.rules-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rules-block {
  border: 1px solid var(--line);
  background: var(--dark-2);
  padding: 22px 24px;
  border-left: 3px solid var(--orange);
  transition: border-color .2s, box-shadow .2s;
}
.rules-block:hover {
  border-color: rgba(232,90,10,.35);
  box-shadow: 0 0 20px rgba(232,90,10,.06);
}
.rules-block--danger {
  border-left-color: #ef4444;
  background: rgba(239,68,68,.04);
}
.rules-block--warn {
  border-left-color: var(--gold);
  background: rgba(240,192,64,.04);
}
.rules-block__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.rules-block--danger .rules-block__title { color: #f87171; }
.rules-block--warn .rules-block__title { color: var(--gold); }
.rules-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rules-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.rules-list li::before {
  position: absolute;
  left: 0;
  font-size: 12px;
}
.rules-list--ok li::before { content: '✓'; color: var(--online); }
.rules-list--no li::before { content: '✕'; color: #f87171; }
.rules-list--ban li::before { content: '✕'; color: #ef4444; }
.rules-list--warn li::before { content: '◆'; color: var(--gold); }
.rules-block__alert {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fca5a5;
  text-align: center;
}
.rules-block__alert strong { color: #ef4444; }
.rules-block__note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--dim);
  padding: 8px 12px;
  background: rgba(74,222,128,.06);
  border-left: 2px solid var(--online);
}
.rules-block__note--highlight {
  background: rgba(232,90,10,.08);
  border-left-color: var(--orange);
  color: var(--muted);
  font-size: 13px;
  margin-top: 0;
}
.rules-page__foot {
  margin-top: 48px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232,90,10,.06) 0%, transparent 100%);
}
.rules-page__foot p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}
.rules-page__foot strong { color: var(--white); }
.rules-page__tagline {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange) !important;
  margin-bottom: 0 !important;
}

.races { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.race {
  border: 1px solid var(--line);
  overflow: hidden;
}
.race__head {
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.race--b .race__head { background: rgba(212,160,23,.12); color: #d4a017; }
.race--c .race__head { background: rgba(155,89,182,.12); color: #9b59b6; }
.race--a .race__head { background: rgba(192,57,43,.12); color: #c0392b; }
.race p { padding: 16px 20px 8px; font-size: 13px; color: var(--muted); }
.race ul { list-style: none; padding: 0 20px 20px; }
.race li { font-size: 12px; padding: 4px 0; color: var(--muted); border-bottom: 1px solid var(--line); }

/* Combination */
.toolbar { display: flex; gap: 12px; margin-bottom: 24px; }
.toolbar input, .toolbar select {
  background: var(--dark-2);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 13px;
  outline: none;
}
.toolbar input { flex: 1; }
.toolbar input:focus, .toolbar select:focus { border-color: var(--orange); }

.combo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Combination — Hero videos */
.combo-page { padding-bottom: 64px; }
.combo-heroes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.combo-hero { min-width: 0; }
.combo-hero__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #000;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.45), inset 0 0 0 1px rgba(232,90,10,.12);
  transition: border-color .25s, box-shadow .25s;
}
.combo-hero:hover .combo-hero__frame {
  border-color: rgba(232,90,10,.55);
  box-shadow: 0 12px 40px rgba(0,0,0,.55), 0 0 24px rgba(232,90,10,.15);
}
.combo-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.combo-hero__race {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--orange);
}
.combo-intro {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 36px 32px 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(232,90,10,.06) 0%, var(--dark-2) 42%);
  border-radius: 8px;
}
.combo-intro__deco {
  width: 48px;
  height: 3px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  border-radius: 2px;
}
.combo-intro__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.combo-intro__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}
.combo-intro__lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}
.combo-intro__hint {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0;
}
.combo-section-head {
  text-align: center;
  margin-bottom: 24px;
}
.combo-section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.combo-section-head p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.mob-acc__item--combo.is-open .mob-acc__body { max-height: 2800px; }
.combo-recipe {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mob-acc--nested { gap: 8px; }
.mob-acc--nested .mob-acc__head { padding: 14px 16px; }
.mob-acc--nested .mob-acc__title { font-size: 14px; }
.mob-acc--nested .mob-acc__body .combo-recipe__mats { padding: 0 16px 16px; }

/* YouTube-style player */
.yt-player {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.yt-player__screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  background: #0a0a0a;
  cursor: pointer;
}
.yt-player__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.yt-player__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.75) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.yt-player.is-paused .yt-player__shade,
.yt-player.is-hover .yt-player__shade { opacity: 1; }
.yt-player__bigplay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(232,90,10,.92);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  transition: transform .2s, background .2s, opacity .2s;
  z-index: 2;
}
.yt-player__bigplay svg { width: 28px; height: 28px; margin-left: 4px; }
.yt-player__bigplay:hover { transform: translate(-50%, -50%) scale(1.06); background: var(--orange); }
.yt-player:not(.is-paused) .yt-player__bigplay { opacity: 0; pointer-events: none; }
.yt-player__bar {
  background: linear-gradient(180deg, #1a1a1a, #111);
  padding: 8px 12px 10px;
}
.yt-player__progress-wrap {
  position: relative;
  height: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  cursor: pointer;
}
.yt-player__progress {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,.2);
  border-radius: 2px;
  overflow: hidden;
}
.yt-player__buffer {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(255,255,255,.35);
  pointer-events: none;
}
.yt-player__played {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--orange);
  pointer-events: none;
}
.yt-player__seek {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  height: 18px;
}
.yt-player__row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.yt-player__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #eee;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.yt-player__btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.yt-player__btn svg { width: 22px; height: 22px; fill: currentColor; }
.yt-player__btn--speed { min-width: 44px; font-family: var(--font-display); letter-spacing: .04em; }
.yt-player:not(.is-paused) .yt-player__icon--play { display: none; }
.yt-player.is-paused .yt-player__icon--pause { display: none; }
.yt-player:not(.is-muted) .yt-player__icon--muted { display: none; }
.yt-player.is-muted .yt-player__icon--vol { display: none; }
.yt-player__time {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: #ddd;
  white-space: nowrap;
  margin-left: 4px;
}
.yt-player__spacer { flex: 1; min-width: 8px; }
.yt-player__volume {
  width: 72px;
  height: 4px;
  accent-color: var(--orange);
  cursor: pointer;
}
.yt-player.is-fs {
  position: fixed;
  inset: 0;
  z-index: 9999;
  border-radius: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}
.yt-player.is-fs .yt-player__screen { flex: 1; min-height: 0; aspect-ratio: auto; }
.yt-player.is-fs .yt-player__video { object-fit: contain; }

@media (min-width: 900px) {
  .yt-player__screen { min-height: 400px; }
}

.combo-recipe__mats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.combo-recipe__mats li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0,0,0,.25);
  transition: border-color .2s;
}
.combo-recipe__mats li:hover { border-color: rgba(232,90,10,.35); }
.combo-mat__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.combo-mat__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.combo-recipe__mats--set {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.combo-recipe__mats--set .combo-mat-card {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-height: 0;
  padding: 12px;
  text-align: center;
  background: rgba(0,0,0,.35);
}
.combo-mat-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  padding: 12px;
  background: linear-gradient(180deg, #f2eee6 0%, #d8d2c8 100%);
  border: 2px solid rgba(232,90,10,.6);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
  overflow: hidden;
}
.combo-mat-card__img img {
  display: block;
  width: 112px;
  height: 112px;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  transform: scale(2.4);
  transform-origin: center center;
  filter: contrast(1.15) brightness(1.05);
}
.combo-mat-card__img.is-missing {
  background: rgba(255,255,255,.08);
  border-style: dashed;
}
.combo-mat-card__img.is-missing::after {
  content: '?';
  font-size: 28px;
  font-weight: 700;
  color: var(--dim);
}
.combo-mat-card__img.is-missing img { display: none; }
.combo-recipe__mats--set .combo-mat-card span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255,255,255,.95);
}
@media (max-width: 768px) {
  .combo-recipe__mats--set {
    grid-template-columns: 1fr;
  }
  .combo-mat-card__img {
    min-height: 160px;
  }
  .combo-mat-card__img img {
    width: 128px;
    height: 128px;
    transform: scale(2.6);
  }
}
.combo-craft-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  margin-bottom: 20px;
  padding: 16px;
  background: linear-gradient(180deg, #f2eee6 0%, #d8d2c8 100%);
  border: 2px solid rgba(232,90,10,.6);
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
  overflow: hidden;
}
.combo-craft-preview img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  object-position: center;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  filter: contrast(1.1) brightness(1.03);
}
.combo-craft-preview.is-missing {
  background: rgba(255,255,255,.08);
  border-style: dashed;
}
.combo-craft-preview.is-missing::after {
  content: '?';
  font-size: 32px;
  font-weight: 700;
  color: var(--dim);
}
.combo-craft-preview.is-missing img { display: none; }
.combo-recipe__mats--craft {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.combo-craft-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(232,90,10,.28);
  border-radius: 10px;
  background: rgba(0,0,0,.32);
  text-align: center;
  transition: border-color .2s, background .2s;
}
.combo-craft-item:hover {
  border-color: rgba(232,90,10,.55);
  background: rgba(232,90,10,.08);
}
.combo-craft-item span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  letter-spacing: .02em;
}
@media (max-width: 768px) {
  .combo-recipe__mats--craft {
    grid-template-columns: 1fr;
  }
  .combo-craft-preview {
    min-height: 180px;
  }
}
.combo-mat__icon.is-missing::after {
  content: '?';
  font-size: 20px;
  font-weight: 700;
  color: var(--dim);
}
.combo-mat__icon.is-missing img { display: none; }
.combo-recipe__mats span {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
}

.combo {
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--dark-2);
  transition: border-color .2s;
}
.combo:hover { border-color: var(--line-strong); }
.combo.hidden { display: none; }
.combo header span {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange);
}
.combo header h3 { font-size: 15px; font-weight: 600; margin: 6px 0 12px; }
.combo__result { color: var(--gold); font-size: 13px; margin-bottom: 12px; }
.combo ul { list-style: none; margin-bottom: 16px; }
.combo li { font-size: 12px; color: var(--muted); padding: 3px 0; }
.combo footer {
  display: flex; justify-content: space-between;
  padding-top: 12px; border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted);
}
.r-max { color: var(--online); }
.r-high { color: #86efac; }
.r-mid { color: var(--gold); }
.r-low { color: #f87171; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; }
.form-box, .info-box {
  border: 1px solid var(--line);
  padding: 32px;
  background: var(--dark-2);
}
.form-box h2, .info-box h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--dim); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 13px;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 100px; }
.form-msg {
  margin-top: 12px; padding: 12px;
  border: 1px solid rgba(74,222,128,.3);
  color: var(--online); font-size: 13px; text-align: center;
}
.info-side { display: flex; flex-direction: column; gap: 16px; }
.channel li, .hours li {
  display: flex; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: 13px; list-style: none;
}
.channel span, .hours span { color: var(--muted); }
.channel a { color: var(--orange); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 14px 0; cursor: pointer; font-size: 13px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { padding-bottom: 14px; font-size: 13px; color: var(--muted); }

/* GameCP */
.cp-grid { display: grid; grid-template-columns: 360px 1fr; gap: 24px; margin-bottom: 48px; }
.cp-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cp-feats article {
  border: 1px solid var(--line);
  padding: 20px; background: var(--dark-2);
}
.cp-feats h3 { font-size: 13px; font-weight: 600; margin-bottom: 4px; color: var(--orange); }
.cp-feats p { font-size: 12px; color: var(--muted); }
.cp-links { display: flex; justify-content: space-between; margin-top: 16px; font-size: 12px; }
.cp-links a { color: var(--muted); }
.cp-links a:hover { color: var(--orange); }

.cp-panel__desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.cp-panel .btn--fill { margin-bottom: 16px; }

.table-wrap { border: 1px solid var(--line); overflow: hidden; }
.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  text-align: left; padding: 14px 16px;
  background: var(--dark-2);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.data-table tr:hover td { background: rgba(255,255,255,.02); }
.data-table td:nth-child(2) { color: var(--white); }
.rk1 { color: #ffd700 !important; font-weight: 700; }
.rk2 { color: #c0c0c0 !important; font-weight: 700; }
.rk3 { color: #cd7f32 !important; font-weight: 700; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: var(--black);
  padding: 40px 32px 24px;
}
.footer__inner {
  max-width: 1200px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.footer__nav, .footer__social { display: flex; gap: 24px; }
.footer__nav a, .footer__social a {
  font-size: 12px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .06em;
  transition: color .2s;
}
.footer__nav a:hover { color: var(--orange); }
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 600;
}
.footer__social a:hover { border-color: var(--white); color: var(--white); }
.footer__copy {
  max-width: 1200px; margin: 0 auto;
  text-align: center;
  font-size: 11px; color: var(--dim);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 1024px) {
  .showcase__content { padding: 0 6%; max-width: 100%; }
  .dl-grid, .combo-grid, .combo-heroes, .news-row, .rates, .races, .rules-page__grid { grid-template-columns: 1fr 1fr; }
  .status-strip { grid-template-columns: repeat(3, 1fr); }
  .cp-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header__menu { display: block; }
  .header__nav {
    display: none;
    position: absolute; top: var(--header); left: 0; right: 0;
    flex-direction: column;
    background: #000;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }
  .header__nav.open { display: flex; }
  .header__right { display: none; }
  .hero__social { left: 20px; bottom: 80px; }
  .hero__scroll { right: 20px; bottom: 20px; }
  .showcase { height: 80vh; min-height: 500px; }
  .showcase__num { font-size: 60px; }
  .dl-grid, .combo-grid, .combo-heroes, .news-row, .rates, .rules, .feats, .races,
  .rules-page__grid,
  .split, .contact-grid, .cp-feats { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .fix-box { flex-direction: column; align-items: stretch; }
  .fix-box .btn--fill { width: 100%; }
  .status-strip { grid-template-columns: 1fr 1fr; }
  .media-section__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}
