:root {
  --bg: #071014;
  --bg-soft: #0d171b;
  --card: rgba(10, 19, 22, 0.76);
  --card-strong: rgba(8, 15, 18, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --text: #edf4ee;
  --muted: #b8c3bb;
  --accent: #d3a164;
  --accent-soft: #f0c487;
  --accent-deep: rgba(211, 161, 100, 0.18);
  --glow: rgba(211, 161, 100, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --maxw: 1180px;
  --page-header-height: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top, var(--glow), transparent 28%),
    linear-gradient(180deg, #05090b 0%, #081114 38%, #0c1619 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

code {
  padding: 0.16rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Space Grotesk", monospace;
  font-size: 0.92em;
}

.wrap {
  width: min(var(--maxw), calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(6, 11, 15, 0.94), rgba(6, 11, 15, 0.76));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 14px 0;
}

/* ── Hamburger ── */
.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.header-burger:hover,
.header-burger:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
}

.header-burger svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  padding: 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-copy small {
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.top-links a,
.server-switcher a,
.btn,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.top-links a,
.server-switcher a {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.top-links a:hover,
.top-links a:focus-visible,
.server-switcher a:hover,
.server-switcher a:focus-visible,
.btn:hover,
.btn:focus-visible,
.back-link:hover,
.back-link:focus-visible,
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.14);
  outline: none;
}

.top-links a.is-accent,
.btn-primary {
  border-color: transparent;
  color: #1b140b;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 18px 34px var(--accent-deep);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.btn-ghost,
.back-link {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.vip-glow,
[data-server-vip-link] {
  border-color: rgba(244, 198, 111, 0.72);
  box-shadow:
    0 0 0 1px rgba(244, 198, 111, 0.22) inset,
    0 0 16px rgba(244, 198, 111, 0.34),
    0 0 34px rgba(244, 198, 111, 0.24);
  animation: vip-gold-glow 2.6s ease-in-out infinite;
}

.vip-glow:hover,
.vip-glow:focus-visible,
[data-server-vip-link]:hover,
[data-server-vip-link]:focus-visible {
  border-color: rgba(255, 220, 152, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 220, 152, 0.26) inset,
    0 0 22px rgba(255, 220, 152, 0.45),
    0 0 44px rgba(255, 220, 152, 0.34);
}

@keyframes vip-gold-glow {

  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(244, 198, 111, 0.2) inset,
      0 0 12px rgba(244, 198, 111, 0.24),
      0 0 28px rgba(244, 198, 111, 0.16);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255, 220, 152, 0.3) inset,
      0 0 24px rgba(255, 220, 152, 0.5),
      0 0 50px rgba(255, 220, 152, 0.32);
  }
}

.switcher-wrap {
  padding-bottom: 16px;
}

.server-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.server-switcher a[aria-current="page"] {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  height: calc(100svh - var(--page-header-height));
  height: calc(100dvh - var(--page-header-height));
  height: calc(100vh - var(--page-header-height));
  min-height: 640px;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #04090b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(4, 8, 11, 0.04), rgba(4, 8, 11, 0.1) 40%, rgba(4, 8, 11, 0.34) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #04090b;
  --hero-poster: none;
  --hero-poster-position: center center;
}

.hero-media-fallback {
  position: absolute;
  inset: 0;
  background-image: var(--hero-poster);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--hero-poster-position);
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.04);
}

.hero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.hero-media-embed {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  max-width: none;
  min-width: 177.78vh;
  min-height: 100vh;
  border: 0;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1.18);
  filter: saturate(1.04) contrast(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, var(--glow), transparent 34%),
    linear-gradient(180deg, rgba(2, 5, 7, 0.02) 0%, rgba(2, 5, 7, 0.08) 54%, rgba(2, 5, 7, 0.22) 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 24px 0 clamp(44px, 7vh, 76px);
}

.hero-glass {
  width: min(1040px, 100%);
  margin-inline: auto;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(10, 20, 24, 0.54), rgba(10, 20, 24, 0.26));
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.28);
}

.hero-glass-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-trailer-bar {
  align-self: center;
}

.hero-copy {
  display: grid;
  gap: 6px;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.85rem, 4.8vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-summary {
  margin: 0;
  color: var(--text);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  max-width: 62ch;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.hero-media-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.audio-btn:hover,
.audio-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.audio-btn {
  border-color: rgba(126, 202, 127, 0.25);
  background: rgba(17, 38, 25, 0.72);
  color: #a8e6a0;
  box-shadow: 0 0 0 1px rgba(126, 202, 127, 0.08) inset, 0 0 12px rgba(87, 180, 95, 0.18);
}

.audio-btn[data-sound="off"] {
  animation: audio-btn-pulse 2.8s ease-in-out infinite;
}

.audio-btn[data-sound="on"] {
  background: rgba(72, 22, 22, 0.78);
  color: #f8a0a0;
  border-color: rgba(228, 123, 123, 0.35);
  box-shadow: 0 0 0 1px rgba(228, 123, 123, 0.08) inset, 0 0 10px rgba(188, 67, 67, 0.14);
}

.audio-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.audio-icon-on,
.audio-icon-off {
  display: none;
}

.audio-btn[data-sound="off"] .audio-icon-on {
  display: block;
}

.audio-btn[data-sound="on"] .audio-icon-off {
  display: block;
}

@keyframes audio-btn-pulse {

  0%,
  100% {
    border-color: rgba(146, 205, 142, 0.18);
    box-shadow: 0 0 0 1px rgba(126, 202, 127, 0.08) inset, 0 0 10px rgba(87, 180, 95, 0.08);
  }

  50% {
    border-color: rgba(146, 205, 142, 0.28);
    box-shadow: 0 0 0 1px rgba(126, 202, 127, 0.1) inset, 0 0 18px rgba(87, 180, 95, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {

  .audio-btn[data-sound="off"],
  .vip-glow,
  [data-server-vip-link] {
    animation: none;
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 18px;
}

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

.stat-card {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(8, 15, 18, 0.62), rgba(8, 15, 18, 0.4));
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
}

.section {
  padding: 30px 0;
}

.section-hero-overview {
  padding-top: 24px;
}

.section-anchor-nav {
  padding: 14px 0 8px;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anchor-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.anchor-nav-link:hover,
.anchor-nav-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--text);
  outline: none;
}

.anchor-nav-link-external {
  border-color: rgba(211, 161, 100, 0.32);
  color: var(--text);
  background: rgba(211, 161, 100, 0.12);
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-grid.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-overview-card {
  padding-top: 22px;
}

.intro-back-link {
  margin-bottom: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 42%),
    var(--card);
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--glow), transparent 70%);
  pointer-events: none;
}

.card>* {
  position: relative;
  z-index: 1;
}

.card h2,
.card h3 {
  margin: 10px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.28rem, 3vw, 1.86rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.card ul,
.card ol {
  margin: 14px 0 0;
  padding-left: 18px;
}

.card li+li {
  margin-top: 10px;
}

.spotlight-copy {
  margin-top: 12px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 700;
}

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

.mini-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.mini-card ul,
.mini-card ol {
  margin-top: 10px;
}

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

.tier-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.tier-card h4 {
  color: var(--accent-soft);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vip-shell {
  display: grid;
  gap: 22px;
  margin-top: 14px;
}

.vip-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.vip-overview-copy>p:first-child {
  margin-top: 0;
}

.vip-support-box {
  padding: 20px;
  border: 1px solid rgba(135, 110, 255, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16, 23, 44, 0.94), rgba(8, 13, 28, 0.98)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 48px rgba(4, 8, 24, 0.24);
}

.vip-support-box-wide {
  width: 100%;
}

.vip-support-intro {
  margin: 14px 0 0;
}

.vip-support-box h3,
.vip-rank-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  line-height: 1.1;
}

.vip-support-box ul {
  margin-top: 14px;
}

.vip-support-box .pill-list {
  margin-top: 12px;
}

.vip-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.vip-action,
.vip-buy-link,
.vip-inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.vip-action:hover,
.vip-action:focus-visible,
.vip-buy-link:hover,
.vip-buy-link:focus-visible,
.vip-inline-link:hover,
.vip-inline-link:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.vip-action-primary {
  color: #1b1309;
  background: linear-gradient(135deg, #f6d285, #d39a47);
  box-shadow: 0 14px 28px rgba(211, 161, 100, 0.18);
}

.vip-action-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-action-ghost,
.vip-inline-link {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vip-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.vip-rank-card {
  --vip-glow: rgba(115, 130, 255, 0.18);
  --vip-hover-glow: rgba(115, 130, 255, 0.58);
  --vip-border: rgba(115, 130, 255, 0.16);
  --vip-hover-border: rgba(171, 186, 255, 0.58);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  border: 1px solid var(--vip-border);
  background:
    linear-gradient(180deg, rgba(18, 27, 51, 0.96), rgba(9, 14, 29, 0.99));
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.vip-rank-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 180px;
  background: radial-gradient(circle at top center, var(--vip-glow), transparent 72%);
  opacity: 0.38;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vip-rank-card::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at center, var(--vip-hover-glow), transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.vip-rank-card:hover {
  border-color: var(--vip-hover-border);
  transform: translateY(-6px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.42),
    0 0 34px var(--vip-hover-glow),
    0 0 82px var(--vip-hover-glow);
}

.vip-rank-card:hover::before {
  opacity: 0.98;
  transform: scale(1.08);
}

.vip-rank-card:hover::after {
  opacity: 0.8;
  transform: scale(1.05);
}

.vip-rank-card-bronze {
  --vip-glow: rgba(239, 124, 50, 0.18);
  --vip-hover-glow: rgba(255, 132, 37, 0.6);
  --vip-border: rgba(239, 124, 50, 0.18);
  --vip-hover-border: rgba(255, 161, 95, 0.64);
}

.vip-rank-card-iron {
  --vip-glow: rgba(76, 110, 255, 0.18);
  --vip-hover-glow: rgba(93, 128, 255, 0.6);
  --vip-border: rgba(93, 128, 255, 0.18);
  --vip-hover-border: rgba(142, 168, 255, 0.62);
}

.vip-rank-card-gold {
  --vip-glow: rgba(239, 206, 65, 0.18);
  --vip-hover-glow: rgba(245, 225, 79, 0.6);
  --vip-border: rgba(239, 206, 65, 0.18);
  --vip-hover-border: rgba(255, 239, 134, 0.64);
}

.vip-rank-card-titan {
  --vip-glow: rgba(22, 240, 192, 0.18);
  --vip-hover-glow: rgba(23, 245, 207, 0.58);
  --vip-border: rgba(22, 240, 192, 0.16);
  --vip-hover-border: rgba(118, 255, 223, 0.58);
}

.vip-rank-card-player {
  --vip-glow: rgba(71, 208, 121, 0.18);
  --vip-hover-glow: rgba(97, 222, 138, 0.58);
  --vip-border: rgba(71, 208, 121, 0.16);
  --vip-hover-border: rgba(142, 244, 176, 0.58);
}

.vip-rank-card-creator {
  --vip-glow: rgba(255, 106, 128, 0.18);
  --vip-hover-glow: rgba(255, 114, 137, 0.58);
  --vip-border: rgba(255, 106, 128, 0.16);
  --vip-hover-border: rgba(255, 156, 170, 0.58);
}

.vip-rank-card-legend {
  --vip-glow: rgba(255, 187, 74, 0.18);
  --vip-hover-glow: rgba(255, 200, 92, 0.56);
  --vip-border: rgba(211, 144, 55, 0.16);
  --vip-hover-border: rgba(255, 214, 133, 0.58);
}

.vip-rank-card-legend:last-child {
  grid-column: 2;
}

.vip-rank-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 14px;
  text-align: center;
}

.vip-rank-image-link {
  display: block;
  width: min(100%, 240px);
  margin: 0 auto 12px;
}

.vip-rank-image-link img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.26));
}

.vip-rank-tagline {
  width: 100%;
  max-width: none;
  margin: 8px auto 0;
  padding: 0 6px;
  color: rgba(227, 235, 246, 0.82);
  font-size: 0.97rem;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  max-height: calc(1.4em * 2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.vip-card-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}

.vip-rank-card.is-open .vip-card-highlights {
  margin-top: 18px;
  padding-top: 0;
}

.vip-card-highlight {
  display: grid;
  align-items: center;
  min-height: 58px;
  padding: 10px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
}

.vip-card-toggle {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  margin: 0 20px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #5d2ab5, #8e44ec);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(93, 42, 181, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vip-card-toggle:hover,
.vip-card-toggle:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(93, 42, 181, 0.32);
  outline: none;
}

.vip-card-arrow {
  transition: transform 0.2s ease;
}

.vip-rank-card.is-open .vip-card-arrow {
  transform: rotate(180deg);
}

.vip-card-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid transparent;
}

.vip-rank-card.is-open .vip-card-panel {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.vip-card-panel-inner {
  padding: 18px 20px 20px;
}

.vip-fact-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.vip-fact-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.vip-fact-row dt,
.vip-fact-row dd {
  margin: 0;
}

.vip-fact-row dt {
  color: var(--muted);
  font-size: 0.92rem;
}

.vip-fact-row dd {
  text-align: right;
  font-weight: 800;
}

.vip-fact-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 54px;
  min-height: 34px;
  padding: 4px 12px;
  border-radius: 999px;
}

.vip-fact-value-yes {
  color: #deffe9;
  background: rgba(52, 176, 92, 0.28);
  border: 1px solid rgba(100, 232, 143, 0.34);
  box-shadow: inset 0 0 18px rgba(62, 182, 101, 0.18);
}

.vip-fact-value-no {
  color: #ffe3e3;
  background: rgba(185, 54, 54, 0.28);
  border: 1px solid rgba(255, 112, 112, 0.34);
  box-shadow: inset 0 0 18px rgba(196, 60, 60, 0.18);
}

.vip-fact-value-zero {
  color: #c5ffd1;
  background: rgba(45, 173, 92, 0.3);
  border: 1px solid rgba(110, 245, 156, 0.4);
  box-shadow: inset 0 0 18px rgba(70, 202, 118, 0.2);
}

.vip-bonus-block {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.vip-bonus-block ul {
  margin-top: 0;
}

.vip-buy-link {
  width: 100%;
  margin-top: 18px;
  min-height: 46px;
  border-radius: 12px;
  color: #101010;
}

.vip-buy-bronze {
  background: linear-gradient(135deg, #f49a58 0%, #ffcf77 100%);
}

.vip-buy-iron {
  color: #eef4ff;
  background: linear-gradient(135deg, #31559f 0%, #7ea9ff 100%);
}

.vip-buy-gold {
  background: linear-gradient(135deg, #fff25c 0%, #ffe2a0 100%);
}

.vip-buy-titan {
  background: linear-gradient(135deg, #39f0a9 0%, #98ffd9 100%);
}

.vip-buy-player {
  background: linear-gradient(135deg, #20995c 0%, #7ff0a5 100%);
}

.vip-buy-creator {
  color: #fff3f6;
  background: linear-gradient(135deg, #a53049 0%, #ff7890 100%);
}

.vip-buy-legend {
  background: linear-gradient(135deg, #c48620 0%, #ffe287 100%);
}

.vip-thanks-note {
  padding: 18px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-align: center;
}

.vip-thanks-note strong {
  color: #dbe7ff;
}

.section-note {
  color: var(--muted);
  font-size: 0.94rem;
}

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

.link-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.link-card strong {
  display: block;
  font-size: 0.98rem;
}

.link-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.creator-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.creator-hero-card::before {
  display: none;
}

.creator-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 13, 26, 0.9) 14%, rgba(18, 10, 40, 0.72) 52%, rgba(28, 18, 54, 0.42) 100%),
    url("../assets/content-creator-hero.jpg") center 34% / cover no-repeat,
    url("../assets/content-creator-bg.jpg") center center / cover no-repeat;
  transform: scale(1.02);
}

.creator-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(227, 193, 112, 0.28), transparent 68%);
  pointer-events: none;
}

.creator-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 26px;
  align-items: center;
}

.creator-hero-copy {
  max-width: 680px;
}

.creator-hero-copy p {
  max-width: 62ch;
}

.creator-hero-media {
  display: flex;
  justify-content: center;
}

.creator-hero-media img {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.34));
}

.creator-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.creator-benefit-card {
  display: grid;
  gap: 14px;
}

.creator-benefit-card h3 {
  margin-top: 0;
}

.creator-benefit-card ul {
  margin-top: 0;
}

.creator-benefit-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 152px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15, 20, 41, 0.94), rgba(14, 10, 32, 0.96)),
    rgba(255, 255, 255, 0.03);
}

.creator-benefit-media img {
  max-width: min(100%, 180px);
  max-height: 124px;
  width: auto;
  height: auto;
}

.creator-table-card {
  background:
    linear-gradient(180deg, rgba(16, 18, 34, 0.92), rgba(12, 9, 26, 0.94)),
    var(--card);
}

.creator-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.creator-table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.creator-table th,
.creator-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.creator-table th {
  color: var(--accent-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.creator-table tr:last-child td {
  border-bottom: 0;
}

.creator-table td:first-child {
  font-weight: 800;
  color: var(--text);
}

.creator-activity-note {
  max-width: 70ch;
}

.full-span {
  grid-column: 1 / -1;
}

#overview,
#join,
#rules,
#vip,
#mods,
#links {
  scroll-margin-top: calc(var(--page-header-height) + 16px);
}

.empty-state {
  text-align: center;
  padding: 80px 0 96px;
}

.footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1080px) {
  /* Hamburger menu */
  .header-burger {
    display: flex;
    position: relative;
    z-index: 101;
  }

  .brand {
    position: relative;
    z-index: 101;
  }

  .top-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: rgba(6, 11, 15, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    padding: 24px 24px 32px;
    animation: none;
  }

  .top-links.is-open {
    display: flex;
  }

  .top-links a {
    font-size: 1.1rem;
    min-height: 52px;
    padding: 0 28px;
    width: 100%;
    text-align: center;
  }

  .switcher-wrap {
    display: none;
  }

  .hero-stats,
  .section-grid,
  .tier-grid,
  .link-card-grid,
  .mini-grid,
  .vip-rank-grid,
  .creator-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vip-overview {
    grid-template-columns: 1fr;
  }

  .creator-hero-shell {
    grid-template-columns: 1fr;
  }

  .creator-hero-copy {
    max-width: none;
  }

  .vip-rank-card-legend:last-child {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .anchor-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }

  .anchor-nav-link {
    white-space: nowrap;
  }

  .hero {
    min-height: 540px;
  }

  .hero-inner {
    padding: 18px 0 22px;
  }

  .hero-glass {
    padding: 14px 14px 16px;
    border-radius: 22px;
  }

  .hero-media-embed {
    transform: translate(-50%, -50%) scale(1.34);
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.7rem);
  }

  .hero-summary {
    font-size: 0.96rem;
  }

  .hero-stats,
  .section-grid,
  .tier-grid,
  .link-card-grid,
  .mini-grid,
  .vip-rank-grid,
  .creator-benefit-grid {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 22px;
  }

  .vip-fact-row {
    grid-template-columns: 1fr;
  }

  .vip-fact-row dd {
    text-align: left;
  }

  .vip-fact-value {
    justify-self: start;
  }

  .vip-card-highlights {
    grid-template-columns: 1fr;
  }

  .creator-hero-card {
    min-height: auto;
  }

  .creator-hero-media img {
    width: min(100%, 300px);
  }

  .footer-inner {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════
   NAVIGAČNÍ LIŠTA – jeden řádek na podstránky
═══════════════════════════════════════════ */

.sdnav-bar {
  position: sticky;
  top: var(--page-header-height, 76px);
  z-index: 90;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 14, 26, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
}

.sdnav-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
}

.sdnav-row::-webkit-scrollbar {
  display: none;
}

.sdnav-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.sdnav-pill-current {
  background: var(--accent-deep);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.sdnav-pill:hover,
.sdnav-pill:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  outline: none;
}

.sdnav-pill-accent {
  border-color: rgba(var(--accent-rgb, 211, 161, 100), 0.38);
  background: rgba(var(--accent-rgb, 211, 161, 100), 0.1);
  color: var(--accent-soft, #f0c487);
  font-weight: 700;
}

.sdnav-pill-accent:hover {
  background: rgba(var(--accent-rgb, 211, 161, 100), 0.18);
  border-color: var(--accent, #d3a164);
}

.sdnav-pill-vip {
  border-color: rgba(255, 215, 80, 0.3);
  background: rgba(255, 200, 60, 0.08);
  color: #ffe177;
}

.sdnav-pill span:first-child {
  font-size: 1.05rem;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   PŘEHLED SERVERU – popis, stats, proč hrát
═══════════════════════════════════════════ */

.sdoverview {
  padding: 36px 0 64px;
}

.sdoverview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.sdoverview-main {
  /* inherits .card */
}

.sdoverview-main h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 10px 0 0;
}

.sdoverview-main p {
  color: var(--muted);
  margin: 14px 0 0;
  line-height: 1.65;
}

.sdoverview-why {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.sdoverview-why li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.97rem;
  line-height: 1.5;
  color: var(--text);
}

.sdoverview-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.sdoverview-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE PRO NOVÉ SEKCE
═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .sdoverview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .sdnav-bar {
    top: 0;
  }

  .sdoverview {
    padding: 24px 0 48px;
  }
}


.sdnav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.sdnav-card:hover,
.sdnav-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.sdnav-card-accent {
  border-color: rgba(var(--accent-rgb, 211, 161, 100), 0.32);
  background: rgba(var(--accent-rgb, 211, 161, 100), 0.08);
}

.sdnav-card-accent:hover {
  border-color: var(--accent, #d3a164);
  background: rgba(var(--accent-rgb, 211, 161, 100), 0.14);
  box-shadow: 0 8px 28px rgba(var(--accent-rgb, 211, 161, 100), 0.18);
}

.sdnav-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.sdnav-card strong {
  display: block;
  font-size: 0.95rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.sdnav-card span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   POPIS SERVERU + STATS
═══════════════════════════════════════════ */

.sddesc-section {
  padding: 28px 0 0;
}

.sddesc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.85fr);
  gap: 18px;
  align-items: start;
}

.sddesc-copy {
  /* inherits .card */
}

.sddesc-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 10px 0 0;
}

.sddesc-copy p {
  color: var(--muted);
  margin: 14px 0 0;
}

.sddesc-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sdstats-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sdstat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.sdstat-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sdstat-value {
  display: block;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
}

.sdstat-ip {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.sdstat-ip .sdstat-label {
  width: 100%;
}

.sdstat-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.12s ease;
  flex-shrink: 0;
}

.sdstat-copy:hover,
.sdstat-copy:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--text);
  transform: scale(1.08);
  outline: none;
}

.sdstat-copy-ok {
  background: rgba(111, 159, 103, 0.22);
  border-color: rgba(111, 159, 103, 0.5);
  color: #a8e6a0;
}

/* ═══════════════════════════════════════════
   HRAJ S NÁMI – PROČ SE PŘIDAT
═══════════════════════════════════════════ */

.sdwhy-section {
  padding: 28px 0 0;
}

.sdwhy-card {
  /* inherits .card */
}

.sdwhy-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: 32px;
  align-items: center;
}

.sdwhy-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 10px 0 0;
}

.sdwhy-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.sdwhy-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.sdwhy-check {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(111, 159, 103, 0.18);
  border: 1px solid rgba(111, 159, 103, 0.34);
  color: #a8e6a0;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 2px;
}

.sdwhy-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sdwhy-btn {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  font-size: 1.02rem;
  border-radius: 14px;
}

/* ═══════════════════════════════════════════
   PRAKTICKÉ FUNKCE / MAPA / PRŮVODCE
═══════════════════════════════════════════ */

.sdpractical-section {
  padding: 40px 0 0;
}

.sdpractical-kicker {
  margin-bottom: 4px;
}

.sdpractical-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0 0 22px;
}

.sdpractical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sdpractical-card {
  /* inherits .card */
}

.sdpractical-card h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  color: var(--accent-soft);
  letter-spacing: 0.01em;
}

.sdpractical-card ul,
.sdpractical-card ol {
  margin-top: 0;
}

/* ═══════════════════════════════════════════
   PRAVIDLA / JOIN / VIP / MODY – STRÁNKOVÉ SEKCE
═══════════════════════════════════════════ */

.sdrules-section,
.sdjoin-section,
.sdvip-section {
  padding: 28px 0 0;
  scroll-margin-top: calc(var(--page-header-height, 76px) + 16px);
}

.sdmods-section {
  padding: 28px 0 64px;
  scroll-margin-top: calc(var(--page-header-height, 76px) + 16px);
}

.sdvip-section h2,
.sdmods-section h2,
.sdrules-section h2,
.sdjoin-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 8px 0 18px;
}

.sdjoin-action {
  margin-top: 20px;
}

.sdmods-highlights,
.sdmods-recommended {
  margin-top: 22px;
}

.sdmods-highlights h3,
.sdmods-recommended h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: var(--accent-soft);
  margin: 0 0 12px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE OVERRIDES PRO NOVÉ SEKCE
═══════════════════════════════════════════ */

@media (max-width: 1080px) {

  .sddesc-grid,
  .sdpractical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sddesc-stats {
    grid-column: 1 / -1;
  }

  .sdstats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sdnav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sddesc-grid,
  .sdpractical-grid,
  .sdstats-grid {
    grid-template-columns: 1fr;
  }

  .sdwhy-inner {
    grid-template-columns: 1fr;
  }

  .sdwhy-cta {
    flex-direction: column;
  }

  .sdpractical-title {
    margin-bottom: 16px;
  }
}

/* ==========================================================================
   Lightbox & Galerie
   ========================================================================== */

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.gallery-grid-item {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 10, 12, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  width: 90%;
  height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox[aria-hidden="false"] .lightbox-stage img {
  transform: scale(1);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.lightbox-close { 
  top: 30px; 
  right: 30px; 
  width: 50px; 
  height: 50px; 
}

.lightbox-prev, .lightbox-next { 
  top: 50%; 
  transform: translateY(-50%); 
  width: 60px; 
  height: 60px; 
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(0) scale(1.1);
}
.lightbox-prev:hover, .lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}