/* =============================================
   FOX ROLEPLAY — STYLE SHEET
============================================= */

:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --border: rgba(255, 255, 255, 0.08);
  --orange: #f05300;
  --orange-light: #ff8c42;
  --orange-glow: rgba(240, 83, 0, 0.45);
  --white: #ffffff;
  --gray: #b7b7b7;
  --gray-dim: #7a7a7a;
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --radius: 14px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--orange); }

::selection { background: var(--orange); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }

/* =============================================
   LOADER
============================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 4px;
  color: var(--white);
  animation: pulse-glow 1.4s ease-in-out infinite;
}
.loader__logo em {
  font-style: normal;
  color: var(--orange);
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 20px var(--orange-glow); }
  50% { text-shadow: 0 0 45px var(--orange-glow), 0 0 10px var(--orange); }
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--orange), #ff7a1a);
  color: #fff;
  box-shadow: 0 0 25px var(--orange-glow);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px var(--orange-glow), 0 0 50px rgba(240,83,0,.6);
}
.btn--outline {
  border: 2px solid var(--orange);
  color: var(--white);
  background: rgba(240, 83, 0, 0.06);
}
.btn--outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--orange-glow);
}
.btn--lg { padding: 18px 42px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.8rem; }

.center { text-align: center; margin-top: 48px; }

/* =============================================
   HEADER
============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 20px 0;
  transition: padding var(--transition);
}
.header.scrolled { padding: 14px 0; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: fit-content;
  max-width: calc(100vw - 32px);
  margin: 0 auto;
  background: rgba(17, 17, 17, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 10px 12px 10px 26px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
  transition: box-shadow var(--transition), background var(--transition);
}
.header.scrolled .header__inner {
  background: rgba(12, 12, 12, 0.92);
  box-shadow: 0 12px 45px rgba(0,0,0,0.55);
}
.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.brand__mark { color: var(--orange); text-shadow: 0 0 20px var(--orange-glow); }
.brand__sub { color: var(--white); font-size: 1.1rem; letter-spacing: 3px; }

.brand__logo {
  display: none;
  height: 90px;
  width: auto;
}
.brand__logo.is-loaded { display: block; }
.brand__logo.is-loaded + .brand__text { display: none; }

.nav__list { display: flex; gap: 4px; }
.nav__link {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  padding: 10px 18px;
  border-radius: 30px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav__link.active { color: #fff; background: var(--orange); box-shadow: 0 0 20px var(--orange-glow); }

.header__actions { display: flex; align-items: center; gap: 16px; }
.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  transition: all var(--transition);
}
.icon-btn:hover {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 600;
}
.burger span {
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(85%, 360px);
  height: 100vh;
  background: #0d0d0d;
  border-left: 1px solid var(--border);
  z-index: 550;
  padding: 120px 32px 40px;
  transition: right 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-menu.active { right: 0; box-shadow: -20px 0 60px rgba(0,0,0,0.6); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-link:hover { color: var(--orange); padding-left: 8px; }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; }
.mobile-menu__actions .btn { width: 100%; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0705 50%, #0a0a0a 100%);
  z-index: 0;
}
/* .hero__media (imagem/vídeo de fundo, ex: arte da pichação) fica aqui como
   primeiro elemento dentro de #heroBg — ver assets/img/LEIA-ME.txt */
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 60%, #0a0a0a 100%);
  z-index: 1;
}
.hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  filter: blur(40px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}
.hero__glow--1 { top: -10%; left: -10%; }
.hero__glow--2 { bottom: -15%; right: -10%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__logo .fox {
  color: var(--white);
  text-shadow: 0 0 40px rgba(255,255,255,0.15);
}
.hero__logo .rp {
  color: var(--orange);
  text-shadow: 0 0 40px var(--orange-glow), 0 0 80px var(--orange-glow);
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 2rem);
  margin-top: 24px;
  color: var(--white);
}
.hero__desc {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 12px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.hero__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
}
.hero__social-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  transition: all var(--transition);
}
.hero__social-icon:hover {
  color: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 20px var(--orange-glow);
  transform: translateY(-3px);
}
.hero__social p {
  font-size: 0.72rem;
  color: var(--gray-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  width: 22px; height: 36px;
  border: 2px solid var(--gray-dim);
  border-radius: 20px;
  position: relative;
}
.hero__scroll span::after {
  content: "";
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease infinite;
}
@keyframes scroll-dot {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}
.hero__scroll p { font-size: 0.7rem; color: var(--gray-dim); letter-spacing: 1px; }

/* =============================================
   SECTIONS - GENERIC
============================================= */
.section { padding: 120px 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.eyebrow {
  font-family: var(--font-display);
  color: var(--orange);
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}
.section__subtitle {
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 56px;
  font-size: 1.05rem;
}

/* =============================================
   SOBRE
============================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}
.about__text p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about__text strong { color: var(--orange); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.about__card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 15px 40px rgba(240,83,0,0.15);
}
.about__icon { font-size: 1.8rem; margin-bottom: 14px; }
.about__card h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.about__card p { color: var(--gray-dim); font-size: 0.9rem; }

/* =============================================
   STEPS
============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.step:hover { transform: translateY(-6px); border-color: var(--orange); }
.step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--orange);
  margin-bottom: 16px;
}
.step h3 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--gray-dim); font-size: 0.9rem; }

/* =============================================
   TEAM (dentro da seção Sobre)
============================================= */
.team { margin-top: 96px; padding-top: 64px; border-top: 1px solid var(--border); }
.team__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}
.team .section__subtitle { margin-bottom: 48px; }

.team-tier { margin-bottom: 44px; }
.team-tier:last-child { margin-bottom: 0; }
.team-tier__title {
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 15px 35px rgba(240,83,0,0.15);
}
.team-card__avatar {
  position: relative;
  width: 100px; height: 100px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff7a1a);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 0 20px var(--orange-glow);
  margin-bottom: 12px;
  overflow: hidden;
}
.team-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h5 { font-size: 0.98rem; font-weight: 700; }
.team-card p { font-size: 0.82rem; color: var(--gray-dim); }

/* =============================================
   PATCH NOTES
============================================= */
.patch {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.patch:hover { transform: translateX(6px); box-shadow: 0 10px 30px rgba(240,83,0,0.12); }
.patch__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.patch__tag {
  background: var(--orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 6px;
}
.patch__date { color: var(--gray-dim); font-size: 0.85rem; }
.patch h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 14px; }
.patch__list li {
  color: var(--gray);
  font-size: 0.92rem;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.patch__list li::before {
  content: "▸";
  color: var(--orange);
  position: absolute;
  left: 0;
}

/* =============================================
   UTILITÁRIO — CONTEÚDO CENTRALIZADO
============================================= */
.center-block { text-align: center; }
.center-block .section__subtitle { margin-left: auto; margin-right: auto; }

/* =============================================
   FAQ
============================================= */
.faq-list { max-width: 800px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition);
}
.faq-item__q:hover { color: var(--orange); }
.faq-item__icon {
  color: var(--orange);
  font-size: 1.4rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-item.active .faq-item__a { max-height: 200px; padding-bottom: 20px; }
.faq-item__a p { color: var(--gray); font-size: 0.95rem; padding: 0 4px; }

/* =============================================
   PÁGINA DE REGRAS (regras.html)
============================================= */
.page-hero {
  padding: 160px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, #0d0705 0%, #0a0a0a 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
}
.page-hero__desc {
  color: var(--gray);
  max-width: 560px;
  margin: 16px auto 0;
}

.rules-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.rules-toc {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
}
.rules-toc a {
  padding: 12px 16px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray);
  transition: background var(--transition), color var(--transition);
}
.rules-toc a:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.rules-toc a.active { background: var(--orange); color: #fff; box-shadow: 0 0 20px var(--orange-glow); }

.rules-content { display: flex; flex-direction: column; gap: 56px; }
.rules-category { scroll-margin-top: 110px; }
.rules-category__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.rules-category ol {
  list-style: none;
  counter-reset: rule-counter;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rules-category ol li {
  counter-increment: rule-counter;
  position: relative;
  padding-left: 40px;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.7;
}
.rules-category ol li::before {
  content: counter(rule-counter);
  position: absolute;
  left: 0; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
}

/* =============================================
   COMMUNITY BANNER
============================================= */
.community {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
}
.community__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 400px;
  background: radial-gradient(circle, var(--orange-glow), transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  opacity: 0.5;
}
.community__inner { position: relative; z-index: 1; }
.community h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.community p {
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 32px;
}

/* =============================================
   FOOTER
============================================= */
.footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand p { color: var(--gray-dim); font-size: 0.88rem; margin-top: 12px; max-width: 260px; }
.footer__col h4 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.footer__col a {
  display: block;
  color: var(--gray-dim);
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: color var(--transition), padding-left var(--transition);
}
.footer__col a:hover { color: var(--orange); padding-left: 4px; }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
  color: var(--gray-dim);
  font-size: 0.85rem;
}

/* =============================================
   FLOATING PLAY BUTTON
============================================= */
.float-play {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  background: linear-gradient(135deg, var(--orange), #ff7a1a);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 0 30px var(--orange-glow);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.float-play.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-play:hover { box-shadow: 0 8px 40px var(--orange-glow); transform: translateY(-4px); }

/* =============================================
   SCROLL REVEAL
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .rules-layout { grid-template-columns: 1fr; }
  .rules-toc { position: static; flex-direction: row; overflow-x: auto; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: flex; }
  .header__actions .btn { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .header__inner { padding: 8px 8px 8px 20px; }
  .brand__logo { height: 36px; }
}

@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .hero__logo { gap: 8px; }
  .footer__inner { grid-template-columns: 1fr; }
  .float-play { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 0.75rem; }
  .section { padding: 80px 0; }
  .team { margin-top: 64px; padding-top: 48px; }
  .rules-toc a { white-space: nowrap; }
  .page-hero { padding: 130px 0 48px; }
}
