:root {
  --bg: #f3f3f4;
  --bg-2: #eaeaec;
  --card: #ffffff;
  --card-2: #f7f7f8;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --text: #0c0c0d;
  --muted: #6b6f76;
  --accent: #111111;
  --accent-2: #2a2a2c;
  --soft: #ececee;
  --focus: rgba(17, 17, 17, 0.12);
  --ok: #1a1a1a;
  --bar: linear-gradient(90deg, #1a1a1a, #6e6e73);
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --spring: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "DM Sans", "Segoe UI", sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(0, 0, 0, 0.04), transparent 55%),
    radial-gradient(900px 400px at 90% 0%, rgba(0, 0, 0, 0.03), transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(1.2) blur(16px);
  -webkit-backdrop-filter: saturate(1.2) blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 66px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 15px;
  white-space: nowrap;
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  flex: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: background 0.28s var(--spring), color 0.28s var(--spring), transform 0.28s var(--spring);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: var(--soft);
  transform: translateY(-1px);
}

.nav-link svg {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.nav-clans {
  margin-left: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--spring), box-shadow 0.28s var(--spring);
}

.nav-clans:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.lang-btn,
.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  transition: transform 0.28s var(--spring), box-shadow 0.28s var(--spring), background 0.2s;
}

.lang-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--card);
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  border: 1px solid var(--border);
}

.lang-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-green,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.btn-green:hover,
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.btn-green:active,
.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

/* Help dropdown — bridge + delayed close */
.help-wrap {
  position: relative;
}

.help-wrap > .nav-link {
  position: relative;
  z-index: 2;
}

.help-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 200px;
  padding: 8px;
  padding-top: 14px;
  background: transparent;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px) scale(0.98);
  transition:
    opacity 0.22s var(--spring),
    transform 0.28s var(--spring),
    visibility 0.22s;
  z-index: 60;
}

.help-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  z-index: -1;
}

.help-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s var(--spring), color 0.2s, transform 0.2s var(--spring);
}

.help-menu a:hover {
  background: var(--soft);
  color: var(--text);
  transform: translateX(2px);
}

.help-wrap.is-open .help-menu,
.help-wrap:hover .help-menu,
.help-wrap:focus-within .help-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Main */
main {
  padding: 24px 0 72px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.breadcrumb a:hover {
  color: var(--text);
}

.page-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 8px 0 20px;
  letter-spacing: -0.03em;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--spring), box-shadow 0.28s var(--spring);
}

.stat:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat strong {
  color: var(--text);
  font-size: 18px;
  display: block;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 14px;
}

/* Hero — full-bleed image plane */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 240px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 44px;
  color: #fff;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 48%, rgba(0, 0, 0, 0.25) 100%),
    url("../assets/hero-zones.png") center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 1.2s var(--spring);
}

.hero:hover .hero-bg {
  transform: scale(1.06);
}

.hero-copy {
  max-width: 460px;
  animation: rise-in 0.7s var(--spring) both;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-copy p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.hero .btn-green {
  background: #fff;
  color: #111;
}

.hero .btn-green:hover {
  background: #f0f0f0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hero-art {
  width: min(280px, 38%);
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  animation: float 6s ease-in-out infinite;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Shop */
.mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
  max-width: 100%;
  box-shadow: var(--shadow-sm);
}

.mode-tab {
  padding: 10px 16px;
  border-radius: 999px;
  background: transparent;
  border: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.28s var(--spring), color 0.28s, transform 0.28s var(--spring);
}

.mode-tab.is-active,
.mode-tab:hover {
  color: #fff;
  background: var(--accent);
  transform: translateY(-1px);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.search {
  flex: 1;
  min-width: 200px;
  height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.28s var(--spring);
}

.search:focus {
  border-color: var(--border-strong);
  box-shadow: 0 0 0 4px var(--focus), var(--shadow-sm);
}

.cat-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 36px), transparent);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 calc(100% - 36px), transparent);
}

.cat-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.cat-btn {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--spring), background 0.2s, color 0.2s, border-color 0.2s;
}

.cat-btn.is-active,
.cat-btn:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
}

.product {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--spring), border-color 0.2s, box-shadow 0.35s var(--spring);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
}

.product.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.product-img {
  height: 96px;
  display: grid;
  place-items: center;
  background: var(--card-2);
  border-radius: 12px;
}

.product-img img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
  transition: transform 0.35s var(--spring);
}

.product:hover .product-img img {
  transform: scale(1.06);
}

.product-name {
  font-size: 13px;
  font-weight: 700;
  min-height: 2.6em;
  line-height: 1.3;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.price {
  font-weight: 800;
  color: var(--text);
}

.qty {
  color: var(--muted);
  font-size: 12px;
}

.btn-buy {
  width: 100%;
  margin-top: 4px;
  padding: 10px;
  border-radius: 12px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.28s var(--spring), background 0.2s;
}

.btn-buy:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}

.empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* Servers layout */
.servers-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
}

.servers-banner {
  grid-column: 1 / -1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 140px;
  position: relative;
  margin-bottom: 4px;
  box-shadow: var(--shadow-sm);
}

.servers-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}

.servers-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 40%);
}

.filters {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  position: sticky;
  top: 84px;
  box-shadow: var(--shadow-sm);
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group h3 {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-option {
  position: relative;
  display: inline-flex;
  cursor: pointer;
}

.filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-option span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.28s var(--spring), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.28s;
}

.filter-option:hover span {
  transform: translateY(-1px);
  color: var(--text);
  border-color: var(--border-strong);
}

.filter-option input:checked + span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.filter-option input:focus-visible + span {
  outline: 3px solid var(--focus);
}

.btn-reset {
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.28s var(--spring), color 0.2s, background 0.2s;
}

.btn-reset:hover {
  color: var(--text);
  background: var(--soft);
  transform: translateY(-1px);
}

.server-table {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.server-head,
.server-row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
}

.server-head {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
  background: var(--card-2);
}

.server-row {
  border-top: 1px solid var(--border);
  transition: background 0.25s var(--spring), transform 0.28s var(--spring);
}

.server-row:hover {
  background: rgba(0, 0, 0, 0.02);
}

.server-name {
  font-weight: 800;
}

.server-sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.connect-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  color: var(--muted);
}

.copy-btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card-2);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.28s var(--spring), background 0.2s;
}

.copy-btn:hover {
  transform: scale(1.06);
  background: var(--soft);
}

.online-cell strong {
  display: block;
  font-size: 14px;
}

.bar {
  margin-top: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--bar);
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 0;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.28s var(--spring), box-shadow 0.28s var(--spring);
}

.play-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.servers-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  max-width: 720px;
}

.servers-note a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Content pages */
.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  animation: rise-in 0.55s var(--spring) both;
}

.content-card h1 {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.content-card p,
.content-card li {
  color: rgba(12, 12, 13, 0.82);
}

.content-card ol,
.content-card ul {
  padding-left: 20px;
}

.content-card details {
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.content-card summary {
  cursor: pointer;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.support-item {
  padding: 18px;
  border-radius: 14px;
  background: var(--card-2);
  border: 1px solid var(--border);
  font-weight: 700;
  transition: transform 0.28s var(--spring), border-color 0.2s, box-shadow 0.28s var(--spring);
}

.support-item:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.support-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.45);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0;
}

.footer-links a:hover {
  color: var(--text);
}

/* Cookie */
.cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  max-width: 360px;
  padding: 14px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  animation: rise-in 0.45s var(--spring) both;
}

.cookie.is-hidden {
  display: none;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-card {
  width: min(100%, 400px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  animation: pop 0.32s var(--spring);
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.modal-actions .btn {
  flex: 1;
  padding: 12px;
  font-weight: 700;
}

.btn-ghost {
  background: var(--card-2);
  border: 1px solid var(--border);
  color: var(--text);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: #fff;
  border: 0;
  padding: 11px 16px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.28s var(--spring);
  z-index: 90;
  box-shadow: var(--shadow);
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mobile-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--spring), transform 0.55s var(--spring);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .servers-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }

  .server-head {
    display: none;
  }

  .server-row {
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .connect-cell,
  .online-cell {
    grid-column: 1 / -1;
  }

  .play-btn {
    grid-row: 1;
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .nav {
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px;
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open {
    display: flex;
  }

  .mobile-nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-inner {
    position: relative;
  }

  .hero {
    flex-direction: column;
    padding: 28px 22px;
    align-items: flex-start;
  }

  .hero-art {
    width: 160px;
  }

  .nav-clans {
    margin-left: 0;
  }

  .mode-tabs {
    border-radius: 16px;
  }
}
