:root {
  --bg: #070707;
  --bg-soft: #0c0c0c;
  --text: #f6f6f6;
  --muted: #b9b9b9;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.14);
  --primary: #ff4d4d;
  --primary-2: #b31212;
  --accent: #ffffff;
  --success: #62ff9c;
  --danger: #ff6464;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1220px;
  --header-height: 84px;
  --page-bg-image: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.58), rgba(5, 5, 5, 0.9)),
    var(--page-bg-image) center top / cover no-repeat fixed;
  filter: saturate(1.04);
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 77, 77, 0.16), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(179, 18, 18, 0.12), transparent 20%),
    radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.03), transparent 24%);
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(9, 9, 9, 0.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(255, 77, 77, 0.35));
  flex-shrink: 0;
}

.brand-text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.brand-title {
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: white !important;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 28px rgba(179, 18, 18, 0.28);
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: white;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 84px;
}

.hero-bg-mark {
  position: absolute;
  top: -30px;
  right: max(4vw, 26px);
  width: min(48vw, 760px);
  opacity: 0.17;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.18s ease-out;
  mix-blend-mode: screen;
  filter: blur(0.2px);
}

.hero-bg-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  mask-image: radial-gradient(circle at center, rgba(255,255,255,0.95), rgba(255,255,255,0.25) 68%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, rgba(255,255,255,0.95), rgba(255,255,255,0.25) 68%, transparent 100%);
  filter: drop-shadow(0 18px 48px rgba(255, 77, 77, 0.18));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.hero-content {
  max-width: 700px;
  padding-top: 38px;
}

.hero-visual {
  display: grid;
}

.eyebrow {
  margin: 0 0 0.95rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffb7b7;
}

.hero h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 6.4rem);
}

.hero-description,
.section-heading p,
.cta-card p,
.faq-answer,
.timeline-card p,
.world-card p,
.rank-card p,
.about-card p,
.feature-card p,
.discord-description,
.status-item span,
.vote-card p {
  color: var(--muted);
}

.hero-description {
  max-width: 64ch;
  margin: 1.25rem 0 0.95rem;
  line-height: 1.78;
  font-size: 1.05rem;
}

.hero-summary {
  margin: 0 0 1.35rem;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #d7d7d7;
  max-width: 64ch;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 32px rgba(179, 18, 18, 0.3);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.server-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.55rem 0 0;
}

.server-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.82rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.server-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #ffb7b7;
}

.server-value {
  font-weight: 700;
}

.hero-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 77, 77, 0.18), transparent 66%);
  pointer-events: none;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-label {
  margin: 0;
  color: #ffb7b7;
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.status-row h3 {
  margin: 0.3rem 0 0;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
}

.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #7f7f7f;
  box-shadow: 0 0 0 8px rgba(127, 127, 127, 0.14);
  flex-shrink: 0;
}

.status-dot.is-online {
  background: var(--success);
  box-shadow: 0 0 0 8px rgba(98, 255, 156, 0.15);
}

.status-dot.is-offline {
  background: var(--danger);
  box-shadow: 0 0 0 8px rgba(255, 100, 100, 0.14);
}

.status-subtext {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.3rem 0;
}

.status-item {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 0.32rem;
  position: relative;
  min-width: 0;
}

.status-item strong {
  font-size: 1rem;
  min-width: 0;
}

.status-item-wide {
  grid-column: 1 / -1;
}

.status-item-wide strong {
  font-size: 0.98rem;
  line-height: 1.55;
  white-space: normal;
  word-break: break-word;
}

.status-item-players {
  cursor: default;
}

.players-hover {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(8px);
  min-width: 240px;
  max-width: 320px;
  width: max-content;
  max-height: 220px;
  overflow: auto;
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(13, 13, 13, 0.96);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
  z-index: 30;
}

.status-item-players:hover .players-hover {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.players-hover strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.players-list {
  display: grid;
  gap: 0.5rem;
}

.player-chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.44rem 0.66rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 700;
}

.preview-terminal {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #080808;
}

.terminal-top {
  display: flex;
  gap: 0.45rem;
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
}

.terminal-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.terminal-top span:nth-child(1) { background: #ff6b6b; }
.terminal-top span:nth-child(2) { background: #ffd56b; }
.terminal-top span:nth-child(3) { background: #6bff9a; }

.terminal-body {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.terminal-line {
  color: #f1f1f1;
  opacity: 0.96;
}

.terminal-line .prompt {
  color: #ff8a8a;
  font-weight: 800;
  margin-right: 0.45rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-heading p {
  margin: 0;
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-grid,
.feature-grid,
.world-grid,
.ranks-grid,
.vote-grid {
  display: grid;
  gap: 1.2rem;
}

.about-grid,
.feature-grid,
.world-grid,
.vote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ranks-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-card,
.feature-card,
.world-card,
.rank-card,
.timeline-card,
.faq-item,
.vote-card {
  padding: 1.3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-card:hover,
.feature-card:hover,
.world-card:hover,
.rank-card:hover,
.timeline-card:hover,
.faq-item:hover,
.vote-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.055);
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.2), rgba(179, 18, 18, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card h3,
.feature-card h3,
.world-card h3,
.rank-card h3,
.vote-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.about-card p,
.feature-card p,
.world-card p,
.rank-card p,
.vote-card p {
  margin: 0;
  line-height: 1.7;
}

.feature-tags,
.world-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #f4f4f4;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
}

.world-card {
  position: relative;
  overflow: hidden;
}

.world-card::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 77, 0.14), transparent 70%);
  pointer-events: none;
}

.world-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
}

.world-status {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.world-status.live {
  color: #bbffd3;
  background: rgba(98, 255, 156, 0.1);
}

.world-status.coming-soon {
  color: #ffd8a7;
  background: rgba(255, 181, 76, 0.12);
}

.discord-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.discord-info,
.discord-chat,
.video-shell {
  border-radius: calc(var(--radius) + 4px);
}

.discord-info {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.discord-server-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.discord-server-icon {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.discord-server-row h3 {
  margin: 0.28rem 0 0;
  font-size: 1.45rem;
}

.discord-description {
  margin: 0;
  line-height: 1.75;
}

.discord-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.discord-meta-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 0.34rem;
}

.discord-meta-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.discord-chat {
  padding: 1rem;
  max-height: 640px;
  overflow: hidden;
}

.discord-chat-top {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.8rem;
}

.discord-channel-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.58rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-weight: 800;
}

.discord-messages {
  display: grid;
  gap: 0.85rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.discord-messages::-webkit-scrollbar,
.players-hover::-webkit-scrollbar {
  width: 8px;
}

.discord-messages::-webkit-scrollbar-thumb,
.players-hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.discord-message {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.discord-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255, 77, 77, 0.24), rgba(179, 18, 18, 0.22));
  display: grid;
  place-items: center;
  font-weight: 900;
  color: white;
  overflow: hidden;
  flex-shrink: 0;
}

.discord-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discord-message-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}

.discord-author {
  font-weight: 800;
}

.discord-time {
  color: #8f8f8f;
  font-size: 0.82rem;
}

.discord-text {
  color: #e8e8e8;
  line-height: 1.7;
  word-break: break-word;
  white-space: pre-wrap;
}

.video-shell {
  padding: 1rem;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--border);
  background: #050505;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.vote-card-head {
  display: grid;
  gap: 0.85rem;
}

.vote-site-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.1rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffb7b7;
}

.vote-card h3 {
  line-height: 1.25;
  word-break: break-word;
}

.rank-card {
  text-align: center;
  display: grid;
  align-content: start;
  gap: 0.85rem;
}

.rank-image-wrap {
  min-height: 92px;
  display: grid;
  place-items: center;
}

.rank-image {
  max-width: 124px;
  max-height: 42px;
  object-fit: contain;
  image-rendering: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.rank-card h3 {
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-step {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(179, 18, 18, 0.28);
}

.timeline-card h3 {
  margin: 0 0 0.45rem;
}

.timeline-card p {
  margin: 0;
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.3rem;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-question span:last-child {
  font-size: 1.4rem;
  line-height: 1;
  color: #ffb7b7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 1.3rem;
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  padding-bottom: 1.3rem;
}

.cta-card {
  border-radius: calc(var(--radius) + 8px);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.cta-card h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.8rem;
}

.cta-actions .btn {
  min-width: 170px;
}

.site-footer {
  padding: 2rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
}

.footer-column a {
  display: block;
  color: var(--muted);
  margin: 0.45rem 0;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.94);
  border: 1px solid var(--border);
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 2000;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1180px) {
  .hero-grid,
  .discord-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 24px;
  }

  .hero-bg-mark {
    width: min(62vw, 620px);
    right: 16px;
  }

  .about-grid,
  .feature-grid,
  .world-grid,
  .vote-grid,
  .ranks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .mobile-menu-btn {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(var(--header-height) + 8px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-bg-mark {
    top: 10px;
    right: 50%;
    width: min(78vw, 520px);
    transform: translateX(50%);
    opacity: 0.12;
  }

  .hero-actions,
  .cta-actions {
    gap: 0.75rem;
  }

  .about-grid,
  .feature-grid,
  .world-grid,
  .vote-grid,
  .ranks-grid,
  .discord-meta {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand-logo,
  .footer-logo {
    width: 48px;
    height: 48px;
  }

  .brand-subtitle {
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .hero-description,
  .hero-summary,
  .section-heading p,
  .discord-description,
  .faq-answer,
  .timeline-card p,
  .about-card p,
  .feature-card p,
  .world-card p,
  .vote-card p,
  .rank-card p {
    font-size: 0.98rem;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .vote-card .btn,
  .discord-info .btn {
    width: 100%;
  }

  .server-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .server-pill {
    width: 100%;
    justify-content: space-between;
  }

  .status-grid,
  .timeline-card {
    grid-template-columns: 1fr;
  }

  .status-item-wide {
    grid-column: auto;
  }

  .discord-message {
    grid-template-columns: 40px 1fr;
    gap: 0.75rem;
  }

  .discord-avatar {
    width: 40px;
    height: 40px;
  }

  .hero-card,
  .discord-info,
  .discord-chat,
  .vote-card,
  .about-card,
  .feature-card,
  .world-card,
  .rank-card,
  .timeline-card,
  .video-shell {
    padding: 1.05rem;
  }

  .faq-question {
    padding: 1rem 1.05rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.05rem 1.05rem;
  }

  .discord-messages {
    max-height: 420px;
  }

  .players-hover {
    left: 0;
    right: 0;
    width: auto;
    min-width: 0;
    max-width: none;
    transform: translateY(8px);
  }

  .status-item-players:hover .players-hover {
    transform: translateY(0);
  }

  .footer-grid,
  .footer-links,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .world-top {
    flex-direction: column;
    align-items: flex-start;
  }
}