    :root {
      --primary-deep: #0c2461;
      --primary: #273c75;
      --background: #faf9f5;
      --foreground: #3d3929;
      --border: #dad9d4;
      --muted: #ede9de;
      --surface: #ffffff;
      --surface-soft: #f5f2e9;
      --text-soft: #6f6a5d;
      --text-dim: #8d877a;
      --green: #20865d;
      --green-soft: #e7f4ed;
      --red: #b42318;
      --red-soft: #fbe9e7;
      --shadow: 0 18px 55px rgba(61, 57, 41, 0.08);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --page: min(1600px, calc(100vw - 48px));
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      background: var(--background);
    }

    body {
      margin: 0;
      min-width: 320px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      font-family: "Google Sans", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
      font-variation-settings: "GRAD" 0;
      color: var(--foreground);
      background:
        radial-gradient(circle at 88% 4%, rgba(39, 60, 117, 0.07), transparent 31rem),
        linear-gradient(180deg, #faf9f5 0%, #f8f6f0 100%);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    button,
    a { font: inherit; }

    a {
      color: inherit;
      text-decoration: none;
    }

    button { border: 0; }

    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(39, 60, 117, 0.38);
      outline-offset: 3px;
    }

    .page-shell {
      width: var(--page);
      margin: 0 auto;
    }

    main.page-shell {
      flex: 1 0 auto;
    }

    .tab-nav {
      display: flex;
      gap: 8px;
      margin-bottom: 18px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .tab-nav::-webkit-scrollbar { display: none; }

    .tab-button {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      min-height: 40px;
      padding: 0 15px;
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--text-soft);
      background: var(--surface);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .tab-button svg {
      width: 15px;
      height: 15px;
      stroke-width: 1.8;
    }

    .home-button { text-decoration: none; }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .language-switcher {
      position: relative;
      display: block;
    }

    .language-trigger {
      min-width: 62px;
      min-height: 36px;
      padding: 0 25px 0 13px;
      border: 1px dashed var(--border);
      border-radius: 999px;
      color: var(--primary-deep);
      background: var(--muted);
      border-color: #d7d2c5;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      cursor: pointer;
      text-transform: uppercase;
    }

    .language-trigger svg {
      position: absolute;
      right: 9px;
      top: 50%;
      width: 14px;
      height: 14px;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .language-trigger:hover,
    .language-trigger[aria-expanded="true"] { border-color: var(--primary); }

    .language-menu {
      position: absolute;
      top: calc(100% + 7px);
      right: 0;
      z-index: 20;
      display: none;
      min-width: 100%;
      padding: 5px;
      border: 1px dashed var(--border);
      border-radius: 14px;
      background: var(--surface);
      box-shadow: 0 14px 30px rgba(61, 57, 41, 0.12);
    }

    .language-menu.is-open { display: grid; gap: 3px; }

    .language-option {
      min-height: 32px;
      padding: 0 11px;
      border: 0;
      border-radius: 9px;
      color: var(--text-soft);
      background: transparent;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-align: left;
      cursor: pointer;
    }

    .language-option:hover,
    .language-option.is-active {
      color: var(--primary-deep);
      background: var(--muted);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .tab-button.is-active,
    .tab-button:hover {
      color: #ffffff;
      border-color: var(--primary);
      background: var(--primary);
    }

    .tab-panel { display: none; }
    .tab-panel.is-active { display: block; }

    .player-list-card { min-height: 180px; padding: 24px; }
    .empty-state { color: var(--text-soft); font-size: 14px; }
    .empty-state code { color: var(--primary); }
    .map-card {
      grid-column: 1 / -1;
    }

    .map-link,
    .social-card .button {
      width: auto;
      height: 48px;
      min-height: 48px;
      max-height: 48px;
      padding: 0 18px;
      margin-top: 24px;
    }

    .tab-panel[data-panel="map"] .info-title,
    .tab-panel[data-panel="rules"] .info-title,
    .tab-panel[data-panel="discord"] .info-title {
      font-size: clamp(22px, 2.4vw, 32px);
      letter-spacing: -0.025em;
    }

    .social-card .hero-description {
      max-width: 520px;
      margin-top: 14px;
      font-size: 15px;
      line-height: 1.5;
    }

    .rules-shell {
      padding: clamp(22px, 4vw, 48px);
      border: 1px dashed var(--border);
      border-radius: var(--radius-xl);
      color: var(--foreground);
      background: var(--surface-soft);
      box-shadow: var(--shadow);
    }

    .rules-heading { max-width: 650px; }
    .rules-heading .info-kicker { color: var(--primary); }
    .rules-heading .info-title { color: var(--foreground); }
    .rules-intro { margin: 12px 0 0; color: var(--text-soft); font-size: 15px; line-height: 1.5; }

    .rules-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }

    .rules-tab {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 0 14px;
      border: 1px dashed var(--border);
      border-radius: 999px;
      color: var(--text-soft);
      background: var(--surface);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
    }

    .rules-tab svg { width: 16px; height: 16px; stroke-width: 1.8; }
    .rules-tab.is-active,
    .rules-tab:hover { color: #ffffff; background: var(--primary); border-color: var(--primary); }

    .rules-panel {
      display: none;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .rules-panel.is-active { display: grid; }

    .rule-card {
      min-width: 0;
      padding: 20px;
      border: 1px dashed var(--border);
      border-radius: var(--radius-lg);
      background: var(--surface);
    }

    .rule-card-top { display: flex; align-items: center; gap: 10px; min-height: 24px; }
    .rule-card-top > svg { width: 19px; height: 19px; color: var(--primary); stroke-width: 1.7; }
    .rule-number { color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
    .rule-card h3 { margin: 18px 0 10px; color: var(--foreground); font-size: 18px; line-height: 1.2; }
    .rule-card p { margin: 0 0 10px; color: var(--text-soft); font-size: 14px; line-height: 1.55; }
    .rule-card p:last-child { margin-bottom: 0; }

    .rule-severity { margin-left: auto; padding: 5px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.04em; white-space: nowrap; }
    .severity-ban { color: var(--red); background: var(--red-soft); }
    .severity-warning { color: var(--foreground); background: var(--muted); }
    .severity-info { color: var(--primary); background: var(--green-soft); }
    .rule-penalty { display: flex; align-items: flex-start; gap: 8px; color: var(--red) !important; font-weight: 600; }
    .rule-penalty svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 2px; }

    .moderation-notice { display: flex; gap: 14px; margin-top: 18px; padding: 18px; border: 1px dashed var(--border); border-radius: var(--radius-md); color: var(--text-soft); background: var(--muted); }
    .moderation-notice > svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--primary); }
    .moderation-notice strong { color: var(--foreground); font-size: 14px; }
    .moderation-notice p { margin: 6px 0 8px; font-size: 13px; line-height: 1.5; }
    .moderation-notice ol { margin: 0; padding-left: 18px; font-size: 12px; line-height: 1.7; }

    [data-rule-lang="ru"] { display: none; }
    html[lang="ru"] [data-rule-lang="en"] { display: none; }
    html[lang="ru"] [data-rule-lang="ru"] { display: block; }
    [data-rule-lang][hidden] { display: none !important; }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 24px 0 18px;
    }

    .brand-lockup {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .brand-copy { min-width: 0; }

    .brand-title {
      display: block;
      margin: 0;
      color: var(--primary-deep);
      font-size: 15px;
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: 0.075em;
      white-space: nowrap;
    }

    .brand-subtitle {
      display: block;
      margin: 4px 0 0;
      color: var(--text-dim);
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .dev-badge,
    .server-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 36px;
      padding: 0 13px;
      border: 1px dashed var(--border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.82);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .dev-badge {
      color: var(--primary-deep);
      background: var(--muted);
      border-color: #d7d2c5;
    }

    .hero {
      overflow: hidden;
      border: 1px dashed var(--border);
      border-radius: var(--radius-xl);
      background: var(--surface);
      box-shadow: var(--shadow);
    }

    .hero-banner {
      display: block;
      width: 100%;
      aspect-ratio: 2 / 1;
      overflow: hidden;
      background: var(--muted);
      border-bottom: 1px solid var(--border);
    }

    .hero-banner img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: clamp(30px, 5vw, 86px);
      align-items: center;
      padding: clamp(28px, 4.5vw, 68px);
    }

    .hero-copy,
    .hero-panel,
    .metric-card,
    .info-card,
    .section-head > * {
      min-width: 0;
    }

    .hero-copy { max-width: 850px; }

    .eyebrow {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .server-badge {
      min-height: 34px;
      padding: 0 12px;
      color: var(--foreground);
      background: var(--surface-soft);
    }

    .status-dot {
      width: 9px;
      height: 9px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--text-dim);
      box-shadow: 0 0 0 0 rgba(141, 135, 122, 0.38);
    }

    .server-badge.is-online .status-dot {
      background: var(--green);
      animation: pulse-online 1.8s infinite;
    }

    .server-badge.is-offline .status-dot {
      background: var(--red);
      box-shadow: 0 0 0 5px rgba(180, 35, 24, 0.08);
    }

    @keyframes pulse-online {
      0% { box-shadow: 0 0 0 0 rgba(32, 134, 93, 0.40); }
      70% { box-shadow: 0 0 0 8px rgba(32, 134, 93, 0); }
      100% { box-shadow: 0 0 0 0 rgba(32, 134, 93, 0); }
    }

    .mode-label {
      color: var(--primary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.11em;
      text-transform: uppercase;
    }

    h1 {
      max-width: 920px;
      margin: 0;
      color: var(--foreground);
      font-size: clamp(45px, 6.6vw, 112px);
      line-height: 0.90;
      font-weight: 700;
      letter-spacing: -0.055em;
      text-transform: uppercase;
      text-wrap: balance;
    }

    .rust-word { color: #f5ad1b; }

    .hero-description {
      max-width: 660px;
      margin: 22px 0 0;
      color: var(--text-soft);
      font-size: clamp(16px, 1.5vw, 22px);
      line-height: 1.48;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .button {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 48px;
      min-height: 48px;
      max-height: 48px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 12px;
      font-size: 14px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
      -webkit-tap-highlight-color: transparent;
    }

    .button-primary,
    .button-secondary {
      border-style: solid;
    }

    .button:hover { transform: translateY(-1px); }
    .button:active { transform: translateY(0); }

    .button-primary {
      color: #ffffff;
      background: var(--primary-deep);
      border-color: var(--primary-deep);
    }

    .button-primary:hover {
      background: var(--primary);
      border-color: var(--primary);
    }

    .button-secondary {
      color: var(--primary-deep);
      background: var(--surface);
      border-color: var(--border);
    }

    .button-secondary:hover {
      color: #ffffff;
      border-color: var(--primary);
      background: var(--primary);
    }

    .button svg {
      width: 18px;
      height: 18px;
      stroke-width: 1.8;
    }

    .development-note {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      max-width: 680px;
      margin-top: 22px;
      padding: 16px;
      border: 1px dashed var(--border);
      border-radius: var(--radius-md);
      color: var(--text-soft);
      background: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .development-note svg {
      flex: 0 0 auto;
      color: var(--primary);
    }

    .development-note strong {
      color: var(--foreground);
      font-weight: 600;
    }

    .hero-panel {
      width: min(100%, 460px);
      justify-self: end;
      padding: 24px;
      border: 1px dashed var(--border);
      border-radius: var(--radius-lg);
      background: var(--surface-soft);
      box-shadow: 0 16px 38px rgba(61, 57, 41, 0.06);
    }

    .hero-panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 20px;
    }

    .panel-kicker {
      margin: 0 0 6px;
      color: var(--text-dim);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .panel-title {
      margin: 0;
      color: var(--foreground);
      font-size: 18px;
      line-height: 1.25;
      font-weight: 700;
    }

    .live-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--green);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .players-line {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
    }

    .players-value {
      color: var(--primary-deep);
      font-size: clamp(38px, 4vw, 62px);
      line-height: 0.95;
      font-weight: 700;
      letter-spacing: -0.045em;
    }

    .players-meta {
      margin-bottom: 5px;
      color: var(--text-dim);
      font-size: 12px;
      text-align: right;
    }

    .progress-track {
      position: relative;
      height: 8px;
      margin-top: 15px;
      overflow: hidden;
      border-radius: 999px;
      background: #dfddd4;
    }

    .progress-fill {
      width: 0%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary-deep), var(--primary));
      transition: width 420ms ease;
    }

    .queue-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 13px;
    }

    .tiny-badge {
      display: none;
      align-items: center;
      min-height: 28px;
      padding: 0 9px;
      border: 1px dashed var(--border);
      border-radius: 999px;
      color: var(--foreground);
      background: var(--surface);
      font-size: 11px;
      font-weight: 600;
    }

    .tiny-badge.is-visible { display: inline-flex; }

    .server-address {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
    }

    .server-address-text { min-width: 0; }

    .server-address-label {
      margin-bottom: 4px;
      color: var(--text-dim);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .server-address-value {
      overflow: hidden;
      color: var(--foreground);
      font-size: 13px;
      font-weight: 600;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .section { padding-top: clamp(42px, 6vw, 88px); }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 22px;
    }

    .section-kicker,
    .info-kicker {
      margin: 0 0 7px;
      color: var(--primary);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      color: var(--foreground);
      font-size: clamp(27px, 3vw, 44px);
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: -0.035em;
    }

    .section-note {
      max-width: 560px;
      margin: 0;
      color: var(--text-dim);
      font-size: 13px;
      line-height: 1.55;
      text-align: right;
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .metric-card,
    .info-card {
      border: 1px dashed var(--border);
      background: var(--surface);
      box-shadow: 0 8px 24px rgba(61, 57, 41, 0.035);
    }

    .metric-card {
      min-height: 170px;
      padding: 20px;
      border-radius: var(--radius-lg);
    }

    .metric-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      margin-bottom: 24px;
      border: 1px dashed var(--border);
      border-radius: 11px;
      background: var(--muted);
      color: var(--primary);
    }

    .metric-icon.is-good {
      color: var(--green);
      border-color: #b9dcca;
      background: var(--green-soft);
    }

    .metric-icon svg {
      width: 19px;
      height: 19px;
      stroke-width: 1.8;
    }

    .metric-label {
      margin: 0 0 8px;
      color: var(--text-dim);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .metric-value {
      margin: 0;
      color: var(--foreground);
      font-size: clamp(23px, 2.2vw, 34px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .metric-foot {
      margin: 9px 0 0;
      color: var(--text-dim);
      font-size: 12px;
      line-height: 1.4;
    }

    .content-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: 14px;
    }

    .info-card {
      padding: clamp(22px, 3vw, 32px);
      border-radius: var(--radius-lg);
    }

    .wipe-card {
      position: relative;
      overflow: hidden;
    }

    .wipe-card::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -140px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(39, 60, 117, 0.10) 0%, transparent 68%);
      pointer-events: none;
    }

    .info-title {
      margin: 0;
      color: var(--foreground);
      font-size: clamp(25px, 2.6vw, 38px);
      line-height: 1.05;
      font-weight: 700;
      letter-spacing: -0.035em;
    }

    .wipe-schedule {
      margin-top: 12px;
      color: var(--text-soft);
      font-size: 14px;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 9px;
      margin-top: 24px;
    }

    .countdown-cell {
      padding: 16px 14px;
      border: 1px dashed var(--border);
      border-radius: 13px;
      background: var(--muted);
    }

    .countdown-value {
      display: block;
      color: var(--primary-deep);
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1;
      font-weight: 700;
      letter-spacing: -0.04em;
    }

    .countdown-label {
      display: block;
      margin-top: 7px;
      color: var(--text-dim);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .rules-list {
      display: grid;
      gap: 0;
      margin-top: 22px;
      overflow: hidden;
      border: 1px dashed var(--border);
      border-radius: 14px;
    }

    .rule-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 15px;
      background: var(--surface);
      border-bottom: 1px dashed var(--border);
    }

    .rule-row:last-child {
      border-bottom: 0;
    }

    .rule-label {
      color: var(--text-dim);
      font-size: 12px;
    }

    .rule-value {
      color: var(--foreground);
      font-size: 12px;
      font-weight: 600;
      text-align: right;
    }

    .link-stack {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .text-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 44px;
      padding: 0 13px;
      border: 1px dashed var(--border);
      border-radius: 12px;
      color: var(--primary-deep);
      background: var(--surface-soft);
      font-size: 12px;
      font-weight: 600;
      transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
    }

    .text-link:hover {
      color: #ffffff;
      border-color: var(--primary);
      background: var(--primary);
    }

    .text-link svg {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
      stroke-width: 1.8;
    }

    .footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: clamp(52px, 7vw, 96px);
      padding: 24px 0 34px;
      border-top: 1px solid var(--border);
      color: var(--text-dim);
      font-size: 11px;
    }

    .footer strong {
      color: var(--primary-deep);
      font-weight: 600;
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: max(24px, env(safe-area-inset-bottom));
      z-index: 50;
      transform: translate(-50%, 18px);
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: calc(100vw - 32px);
      padding: 13px 16px;
      border: 1px dashed var(--border);
      border-radius: 12px;
      color: var(--foreground);
      background: rgba(255, 255, 255, 0.97);
      box-shadow: 0 18px 50px rgba(61, 57, 41, 0.15);
      opacity: 0;
      pointer-events: none;
      transition: opacity 180ms ease, transform 180ms ease;
      backdrop-filter: blur(12px);
      font-size: 13px;
    }

    .toast.is-visible {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    .toast-dot {
      width: 8px;
      height: 8px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--green);
    }

    @media (max-width: 1120px) {
      :root { --page: min(100% - 36px, 1120px); }

      .hero-grid {
        grid-template-columns: 1fr;
        align-content: start;
      }

      .hero-panel {
        width: 100%;
        max-width: none;
        justify-self: stretch;
      }

      .metrics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .content-grid { grid-template-columns: 1fr; }
      .rules-panel { grid-template-columns: 1fr; }
    }

    @media (max-width: 720px) {
      :root {
        --page: calc(100% - 24px);
        --radius-xl: 20px;
        --radius-lg: 17px;
      }

      .topbar { padding-top: 16px; }
      .brand-subtitle { display: none; }

      .header-actions { gap: 6px; }
      .language-button { min-width: 29px; }

      .tab-nav {
        gap: 6px;
        margin-bottom: 12px;
        padding-bottom: 2px;
      }

      .tab-button {
        min-height: 42px;
        padding: 0 13px;
      }

      .dev-badge {
        min-height: 32px;
        padding: 0 10px;
        font-size: 10px;
      }

      .hero-grid {
        gap: 24px;
        padding: 22px;
      }

      h1 { font-size: clamp(44px, 17vw, 74px); }

      .hero-description {
        margin-top: 16px;
        font-size: 15px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 22px;
      }

      .button {
        width: 100%;
        height: 48px;
        max-height: none;
      }
      .hero-panel { padding: 19px; }

      .map-link,
      .social-card .button {
        width: 100%;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .section-note { text-align: left; }
      .metrics-grid { grid-template-columns: 1fr; }
      .metric-card { min-height: 0; }
      .metric-icon { margin-bottom: 18px; }
      .rules-shell { padding: 20px; }
      .rules-tab { flex: 1 1 100%; justify-content: center; }
      .rule-card { padding: 17px; }

      .footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }
    }

    @media (max-width: 430px) {
      .topbar { gap: 10px; }
      .brand-title { font-size: 13px; }
      .hero-grid { padding: 17px; }
      .mode-label { font-size: 10px; }

      .players-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
      }

      .players-meta {
        margin-bottom: 0;
        text-align: left;
      }

      .server-address {
        align-items: flex-start;
        flex-direction: column;
      }

      .countdown-cell { padding: 13px 10px; }
    }

    @media (min-width: 1900px) {
      :root { --page: min(1760px, calc(100vw - 96px)); }
      .topbar { padding-top: 30px; }
      .hero-grid { padding: 76px; }
      .metric-card { min-height: 190px; padding: 24px; }
      .info-card { padding: 36px; }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
