:root {
  color-scheme: dark;
  --bg: #020714;
  --panel: #061226;
  --panel-soft: #0a1b35;
  --panel-lift: #10284a;
  --line: rgba(123, 160, 219, 0.25);
  --line-bright: rgba(226, 238, 255, 0.4);
  --text: #f7faff;
  --muted: #aabbd5;
  --muted-strong: #d9e4f3;
  --accent: #2f6fd4;
  --accent-light: #8fb8ff;
  --accent-dark: #123a79;
  --signal: #d92343;
  --signal-light: #ff6a80;
  --white: #f8fbff;
  --gold: #d89a23;
  --gold-light: #ffd36b;
  --gold-dark: #8d5410;
  --success: #70e6a5;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(33, 82, 151, 0.3), transparent 36%),
    linear-gradient(180deg, #020611 0%, #071225 56%, #020611 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-glow {
  position: fixed;
  z-index: -2;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.page-glow-left {
  top: 22%;
  left: -340px;
  background: rgba(47, 111, 212, 0.22);
}

.page-glow-right {
  right: -330px;
  bottom: 8%;
  background: rgba(217, 35, 67, 0.15);
}

.site-shell {
  width: min(1460px, calc(100% - 48px));
  margin: 22px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(5, 9, 15, 0.78);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 clamp(24px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 15, 0.9);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: #ffc44d;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 2px 0 #612b00, 0 0 24px rgba(255, 142, 0, 0.24);
}

.wordmark-mk {
  color: #fff1bf;
  background: linear-gradient(180deg, #ffe3a0 0%, #ff9d0a 48%, #a84600 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  gap: clamp(18px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--muted-strong);
  font-size: 1rem;
  text-decoration: none;
  transition: color 180ms ease;
}

.language-switch {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.language-switch > span[aria-current="true"] {
  color: var(--gold-light);
}

.site-nav .language-switch > a {
  display: inline;
  color: var(--muted-strong);
  font-size: inherit;
  font-weight: inherit;
}

.site-nav .language-switch > a:hover,
.site-nav .language-switch > a:focus-visible {
  color: var(--gold-light);
}

.site-nav .language-switch > a::after {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--gold-light);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 18px;
  padding: clamp(28px, 3vw, 44px) clamp(28px, 6vw, 92px) 32px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 8, 14, 0.98) 0%, rgba(4, 8, 14, 0.85) 43%, rgba(4, 8, 14, 0.2) 78%),
    radial-gradient(circle at 74% 52%, rgba(47, 111, 212, 0.17), transparent 30%);
}

.hero::after {
  position: absolute;
  right: -5%;
  bottom: 5%;
  z-index: -2;
  width: 66%;
  height: 46%;
  content: "";
  opacity: 0.55;
  background:
    linear-gradient(168deg, transparent 0 42%, #151b24 42.5% 46%, transparent 46.5%),
    linear-gradient(192deg, transparent 0 45%, #0e131b 45.5% 51%, transparent 51.5%);
  filter: drop-shadow(0 -20px 25px rgba(217, 35, 67, 0.1));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(216, 154, 35, 0.58);
}

.hero h1,
.section-heading h2,
.about-section h2 {
  margin: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 520px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.4vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.36);
}

.hero h1 strong {
  display: block;
  color: var(--accent);
  font-weight: inherit;
  background: linear-gradient(180deg, #ff8395 0%, #df2342 50%, #8e1029 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 18px rgba(217, 35, 67, 0.22));
}

.hero-text {
  max-width: 520px;
  margin: 16px 0 20px;
  color: var(--muted-strong);
  font-size: clamp(0.94rem, 1.05vw, 1.02rem);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 11px;
  font: inherit;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, filter 160ms ease;
}

.button svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button-primary {
  border-color: var(--gold-light);
  background: linear-gradient(180deg, #4f8cea 0%, #245db9 100%);
  color: var(--white);
  box-shadow: 0 11px 25px rgba(31, 91, 184, 0.32), 0 0 16px rgba(216, 154, 35, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(38, 101, 200, 0.44), 0 0 22px rgba(216, 154, 35, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  filter: saturate(1.08);
}

.hero-emblem {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
}

.emblem {
  position: relative;
  z-index: 2;
  width: min(100%, 350px);
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.72));
  animation: emblem-arrive 900ms cubic-bezier(.2, .72, .22, 1) both;
}

.emblem-shadow {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  width: 52%;
  height: 16px;
  border-radius: 50%;
  background: #ff9d0a;
  box-shadow: 0 0 28px 9px rgba(255, 105, 0, 0.58), 0 0 80px 22px rgba(255, 105, 0, 0.18);
  filter: blur(2px);
}

.ember {
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffb22b;
  box-shadow: 0 0 12px 3px rgba(255, 119, 0, 0.55);
  animation: ember-rise 4.8s infinite ease-in;
}

.ember-one { right: 15%; bottom: 20%; }
.ember-two { right: 36%; bottom: 7%; animation-delay: -1.7s; }
.ember-three { left: 19%; bottom: 14%; animation-delay: -3.1s; }

.games-section {
  padding: 34px clamp(24px, 4vw, 48px) clamp(70px, 7vw, 100px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 30px;
}

.section-heading h2,
.about-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.game-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(250px, 0.88fr);
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(17, 26, 40, 0.94), rgba(6, 11, 18, 0.98));
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.game-card:hover {
  border-color: rgba(104, 158, 244, 0.62);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.42), 0 0 30px rgba(47, 111, 212, 0.12);
  transform: translateY(-3px);
}

.game-image-wrap {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  background: #121822;
}

.game-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 55%, rgba(6, 11, 18, 0.7) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.22), transparent 36%);
  pointer-events: none;
}

.game-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(.2, .7, .2, 1);
}

.game-card:hover .game-image-wrap img {
  transform: scale(1.025);
}

.game-card-live .game-image-wrap img {
  object-position: 50% 50%;
}

.game-card-coming .game-image-wrap img {
  object-position: 62% 50%;
  filter: saturate(0.78) contrast(1.04);
}

.status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 10, 16, 0.82);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.status-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px rgba(112, 230, 165, 0.8);
}

.status-coming {
  border-color: rgba(255, 106, 128, 0.45);
  color: var(--signal-light);
}

.game-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 28px 24px;
}

.game-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--gold-light);
}

.game-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  filter: drop-shadow(0 0 9px rgba(216, 154, 35, 0.32));
}

.game-kicker {
  margin: 0 0 6px;
  color: var(--gold-light);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.game-content h3 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
  line-height: 1;
}

.game-description {
  margin: 0 0 24px;
  color: var(--muted-strong);
}

.button-wide {
  width: 100%;
  margin-top: auto;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.button-muted {
  border-color: var(--line);
  background: linear-gradient(180deg, #1a2330, #101721);
  color: #8792a3;
  cursor: not-allowed;
}

.game-details {
  width: 100%;
  margin-top: 12px;
}

.game-details summary {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 154, 35, 0.68);
  border-radius: 10px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease, background 160ms ease;
}

.game-details summary::-webkit-details-marker {
  display: none;
}

.game-details summary:hover,
.game-details summary:focus-visible {
  background: rgba(216, 154, 35, 0.1);
  color: var(--text);
}

.game-details p {
  margin: 10px 2px 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.future-card {
  width: min(660px, 100%);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 30px auto 0;
  padding: 24px 38px;
  border: 1px solid var(--line-bright);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 24% 50%, rgba(14, 81, 134, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(15, 23, 35, 0.88), rgba(8, 13, 21, 0.96));
}

.future-controller {
  position: relative;
  width: 120px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(104, 158, 244, 0.8);
  border-radius: 38px 38px 45px 45px;
  color: var(--accent);
  box-shadow: 0 0 24px rgba(47, 111, 212, 0.2), inset 0 0 26px rgba(16, 73, 120, 0.24);
}

.future-controller::before,
.future-controller::after {
  position: absolute;
  bottom: -12px;
  width: 43px;
  height: 30px;
  content: "";
  border-bottom: 2px solid rgba(104, 158, 244, 0.8);
}

.future-controller::before { left: -1px; border-radius: 0 0 0 28px; transform: rotate(16deg); }
.future-controller::after { right: -1px; border-radius: 0 0 28px 0; transform: rotate(-16deg); }

.future-controller span {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 16px rgba(47, 111, 212, 0.4);
}

.future-card p,
.future-card h3 {
  margin: 0;
}

.future-card p {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 850;
}

.future-card h3 {
  margin-bottom: 9px;
  color: var(--signal-light);
  font-size: 1.6rem;
}

.future-card div:last-child > span {
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: 110px minmax(0, 760px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 50px);
  padding: clamp(34px, 4vw, 52px) clamp(28px, 7vw, 100px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 52%, rgba(217, 35, 67, 0.1), transparent 25%),
    linear-gradient(135deg, rgba(12, 18, 28, 0.92), rgba(6, 10, 17, 0.95));
}

.about-mark {
  width: 100px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid rgba(104, 158, 244, 0.75);
  clip-path: polygon(50% 0, 91% 15%, 91% 60%, 50% 100%, 9% 60%, 9% 15%);
  background: linear-gradient(145deg, #202733, #080b10 65%);
  color: var(--signal-light);
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: -0.06em;
  text-shadow: 0 0 22px rgba(217, 35, 67, 0.32);
}

.about-section > div:last-child > p:last-child {
  max-width: 730px;
  margin: 14px 0 0;
  color: var(--muted-strong);
  font-size: 1rem;
}

.about-section h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(260px, 380px);
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 7vw, 90px);
  padding: clamp(64px, 7vw, 92px) clamp(28px, 7vw, 100px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 50%, rgba(47, 111, 212, 0.13), transparent 28%),
    linear-gradient(135deg, rgba(7, 18, 38, 0.96), rgba(4, 10, 22, 0.98));
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.contact-text {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.contact-placeholder {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(216, 154, 35, 0.58);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(16, 40, 74, 0.82), rgba(6, 18, 38, 0.94));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-placeholder svg {
  width: 42px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 9px rgba(216, 154, 35, 0.26));
}

.contact-placeholder span,
.contact-placeholder small {
  display: block;
}

.contact-placeholder span {
  color: var(--text);
  font-weight: 800;
}

.contact-placeholder small {
  margin-top: 4px;
  color: var(--muted);
}

.contact-addresses a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 7px;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-addresses a small {
  margin: 0 0 1px;
  color: var(--muted);
  font-size: 0.76em;
  font-weight: 600;
}

.contact-addresses a:hover,
.contact-addresses a:focus-visible {
  color: #fff1b6;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 18px 30px;
  border-top: 1px solid var(--line);
  color: #8f99a9;
  font-size: 0.9rem;
  text-align: center;
}

.site-footer a {
  color: var(--accent-light);
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}

@keyframes emblem-arrive {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes ember-rise {
  0% { opacity: 0; transform: translateY(0) translateX(0) scale(0.7); }
  25% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-160px) translateX(28px) scale(0.2); }
}

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

  .game-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 24px, 760px);
    margin: 12px auto;
    border-radius: 20px;
  }

  .site-header {
    min-height: auto;
    flex-direction: column;
    gap: 14px;
    padding: 22px 20px 0;
  }

  .site-nav {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    gap: clamp(20px, 8vw, 48px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 36px;
    text-align: center;
  }

  .hero-copy {
    max-width: 650px;
    margin: 0 auto;
  }

  .eyebrow,
  .hero .button {
    justify-content: center;
  }

  .hero-text {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-emblem {
    min-height: 240px;
  }

  .emblem {
    width: min(100%, 324px);
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading .eyebrow {
    justify-content: flex-start;
  }

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

  .game-image-wrap {
    min-height: 290px;
  }

  .game-image-wrap::after {
    background: linear-gradient(0deg, rgba(6, 11, 18, 0.72), transparent 35%);
  }

  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-mark {
    width: 90px;
    margin: 0 auto;
  }

  .about-section .eyebrow {
    justify-content: center;
  }

  .contact-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-section .eyebrow {
    justify-content: center;
  }

  .contact-placeholder {
    width: min(100%, 430px);
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: 100%;
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .wordmark {
    font-size: 2rem;
  }

  .site-nav {
    gap: clamp(10px, 3.5vw, 16px);
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .language-switch {
    gap: 4px;
    font-size: 0.72rem;
  }

  .hero {
    gap: 4px;
    padding: 34px 22px 28px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.75rem);
    letter-spacing: 0.005em;
  }

  .hero-emblem {
    min-height: 180px;
  }

  .emblem {
    width: min(100%, 252px);
  }

  .games-section {
    padding: 30px 14px 64px;
  }

  .section-heading {
    padding: 0 8px;
  }

  .game-image-wrap {
    min-height: 235px;
  }

  .game-content {
    padding: 24px 20px 20px;
  }

  .game-icon {
    margin-bottom: 12px;
  }

  .future-card {
    flex-direction: column;
    gap: 22px;
    padding: 28px 22px;
    text-align: center;
  }

  .future-controller {
    width: 105px;
    height: 72px;
  }

  .about-section {
    padding: 68px 24px;
  }

  .site-footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Compact layout: približne polovičná vizuálna stopa pôvodného návrhu. */
.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto;
  border-radius: 20px;
}

.site-header {
  min-height: 58px;
  gap: 20px;
  padding: 0 clamp(18px, 3vw, 34px);
}

.wordmark {
  gap: 7px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.site-nav {
  gap: clamp(14px, 2.4vw, 28px);
}

.site-nav a {
  font-size: 0.78rem;
}

.language-switch {
  gap: 4px;
  font-size: 0.68rem;
}

.hero {
  min-height: 270px;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 1.05fr);
  gap: 10px;
  padding: clamp(18px, 2vw, 26px) clamp(24px, 4vw, 50px) 18px;
}

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

.eyebrow {
  gap: 7px;
  margin-bottom: 9px;
  font-size: 0.6rem;
}

.eyebrow span {
  width: 24px;
}

.hero h1 {
  max-width: 410px;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 0.9;
}

.hero-text {
  max-width: 440px;
  margin: 10px 0 14px;
  font-size: 0.82rem;
}

.button {
  min-height: 40px;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
}

.button svg {
  width: 19px;
}

.hero-emblem {
  min-height: 185px;
}

.emblem {
  width: min(100%, 230px);
}

.emblem-shadow {
  bottom: 15px;
  height: 10px;
  box-shadow: 0 0 20px 6px rgba(255, 105, 0, 0.5), 0 0 50px 14px rgba(255, 105, 0, 0.15);
}

.games-section {
  padding: 20px clamp(18px, 3vw, 30px) 42px;
}

.section-heading {
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading h2 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.section-heading > p {
  max-width: 380px;
  font-size: 0.8rem;
}

.game-grid {
  gap: 16px;
}

.game-card {
  grid-template-columns: minmax(0, 1.12fr) minmax(200px, 0.88fr);
  border-radius: 14px;
}

.game-image-wrap {
  min-height: 220px;
}

.status-badge {
  top: 10px;
  left: 10px;
  gap: 6px;
  padding: 5px 8px;
  font-size: 0.58rem;
}

.game-content {
  padding: 17px 16px 14px;
}

.game-icon,
.game-icon svg {
  width: 30px;
  height: 30px;
}

.game-icon {
  margin-bottom: 9px;
}

.game-kicker {
  margin-bottom: 4px;
  font-size: 0.55rem;
}

.game-content h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.game-description {
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.game-details {
  margin-top: 8px;
}

.game-details summary {
  min-height: 34px;
  border-radius: 8px;
  font-size: 0.74rem;
}

.game-details p {
  margin-top: 7px;
  font-size: 0.7rem;
}

.future-card {
  width: min(540px, 100%);
  min-height: 96px;
  gap: 24px;
  margin-top: 20px;
  padding: 15px 24px;
  border-radius: 14px;
}

.future-controller {
  width: 82px;
  height: 56px;
}

.future-controller::before,
.future-controller::after {
  bottom: -8px;
  width: 31px;
  height: 20px;
}

.future-controller span {
  font-size: 2rem;
}

.future-card p {
  font-size: 1.05rem;
}

.future-card h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.future-card div:last-child > span {
  font-size: 0.76rem;
}

.about-section {
  grid-template-columns: 74px minmax(0, 680px);
  gap: clamp(20px, 3vw, 34px);
  padding: 24px clamp(24px, 5vw, 70px);
}

.about-mark {
  width: 68px;
  font-size: 1.9rem;
}

.about-section h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
}

.about-section > div:last-child > p:last-child {
  margin-top: 8px;
  font-size: 0.8rem;
}

.contact-section {
  grid-template-columns: minmax(0, 560px) minmax(230px, 310px);
  gap: clamp(28px, 5vw, 56px);
  padding: 28px clamp(24px, 5vw, 70px);
}

.contact-section h2 {
  font-size: clamp(1.5rem, 2.7vw, 2rem);
}

.contact-text {
  margin-top: 9px;
  font-size: 0.82rem;
}

.contact-placeholder {
  min-height: 78px;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
}

.contact-placeholder svg {
  width: 30px;
}

.contact-placeholder span {
  font-size: 0.78rem;
}

.contact-placeholder small {
  margin-top: 2px;
  font-size: 0.68rem;
}

.contact-addresses a {
  margin-top: 5px;
  font-size: 0.68rem;
}

.site-footer {
  min-height: 48px;
  gap: 16px;
  padding: 10px 20px;
  font-size: 0.72rem;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 18px, 680px);
    margin: 9px auto;
    border-radius: 16px;
  }

  .site-header {
    min-height: auto;
    gap: 9px;
    padding: 15px 14px 0;
  }

  .wordmark {
    font-size: 1.55rem;
  }

  .site-nav {
    min-height: 40px;
    gap: clamp(12px, 5vw, 30px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 22px 20px 16px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-emblem {
    min-height: 155px;
  }

  .emblem {
    width: min(100%, 205px);
  }

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

  .game-image-wrap {
    height: 200px;
    min-height: 0;
  }

  .game-image-wrap img {
    position: absolute;
    inset: 0;
  }

  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-mark {
    width: 62px;
  }

  .contact-placeholder {
    width: min(100%, 360px);
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-header {
    padding: 13px 8px 0;
  }

  .wordmark {
    font-size: 1.35rem;
  }

  .site-nav {
    min-height: 38px;
    gap: clamp(7px, 2.8vw, 12px);
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .language-switch {
    font-size: 0.6rem;
  }

  .hero {
    padding: 18px 14px 12px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .hero-text {
    font-size: 0.76rem;
  }

  .hero-emblem {
    min-height: 125px;
  }

  .emblem {
    width: min(100%, 165px);
  }

  .games-section {
    padding: 16px 10px 30px;
  }

  .section-heading {
    gap: 7px;
    margin-bottom: 14px;
    padding: 0 4px;
  }

  .section-heading h2 {
    font-size: 1.45rem;
  }

  .game-image-wrap {
    height: 165px;
  }

  .game-content {
    padding: 14px 13px 12px;
  }

  .future-card {
    gap: 13px;
    padding: 17px 16px;
  }

  .future-controller {
    width: 68px;
    height: 46px;
  }

  .about-section,
  .contact-section {
    padding: 22px 16px;
  }

  .about-mark {
    width: 56px;
  }

  .contact-placeholder {
    min-height: 70px;
    padding: 12px 14px;
  }

  .site-footer {
    min-height: 42px;
    gap: 4px;
    padding: 9px 14px;
  }
}
