:root {
  --accent: #ff2430;
  --ink: #111115;
  --muted: #73727a;
  --soft: #f4f4f5;
  --line: #e7e7e9;
  --white: #ffffff;
  --dark: #141416;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-soft: 0 20px 60px rgba(15, 15, 20, 0.08);
  --shadow-card: 0 18px 45px rgba(12, 12, 16, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}



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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 36, 48, 0.42);
  outline-offset: 4px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-pad {
  padding: clamp(84px, 9vw, 132px) 0;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.58);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--accent);
  box-shadow: 0 8px 28px rgba(160, 0, 8, 0.12);
  transform: translateY(0);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(calc(-100% - 2px));
  box-shadow: none;
}

.header-inner {
  width: min(1800px, calc(100% - 64px));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 250px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.site-nav a {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: #fff;
  transition: right 0.22s ease;
}

.site-nav a:hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 96px));
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 36, 48, 0.105), transparent 31%),
    radial-gradient(circle at 4% 83%, rgba(255, 36, 48, 0.055), transparent 22%),
    radial-gradient(circle at 96% 76%, rgba(255, 119, 44, 0.045), transparent 24%),
    #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(17, 17, 21, 0.095) 0.65px, transparent 0.65px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 32%, transparent 68%, rgba(0, 0, 0, 0.42));
  opacity: 0.34;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 51%;
  width: min(880px, 74vw);
  height: min(470px, 55vh);
  border-radius: 50%;
  background: rgba(255, 36, 48, 0.055);
  filter: blur(68px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: min(1800px, 100%);
  min-height: min(820px, calc(100vh - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(560px, 1040px) minmax(250px, 1fr);
  align-items: center;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 80px 22px 96px;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-size: clamp(62px, 6.55vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-wrap: balance;
}

.hero-line {
  display: block;
}

.hero-accent {
  padding-bottom: 0.07em;
  color: var(--accent);
  background: linear-gradient(100deg, #ff2430 8%, #ff405f 48%, #ff7625 92%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-art {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-width: 0;
}

.hero-game-card {
  --card-rotation: 0deg;
  position: absolute;
  z-index: 2;
  opacity: 0;
  filter: drop-shadow(0 24px 30px rgba(12, 12, 16, 0.16));
  transition:
    opacity 0.78s cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-art-left .hero-game-card {
  transform: translate3d(-58px, 20px, 0) rotate(var(--card-rotation)) scale(0.88);
}

.hero-art-right .hero-game-card {
  transform: translate3d(58px, 20px, 0) rotate(var(--card-rotation)) scale(0.88);
}

.hero-game-card.reveal-item.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(var(--card-rotation)) scale(1);
}

.hero-game-float {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: clamp(5px, 0.46vw, 8px) solid rgba(255, 255, 255, 0.96);
  border-radius: 27%;
  background: #fff;
  box-shadow: 0 18px 55px rgba(12, 12, 16, 0.13);
  will-change: transform;
}

.hero-game-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-left-top {
  --card-rotation: -8deg;
  width: clamp(118px, 9.2vw, 166px);
  aspect-ratio: 1;
  top: 10%;
  right: 12%;
}

.hero-card-left-main {
  --card-rotation: 5deg;
  width: clamp(178px, 13.2vw, 238px);
  aspect-ratio: 1;
  top: 39%;
  right: 1%;
}

.hero-card-left-bottom {
  --card-rotation: -5deg;
  width: clamp(112px, 8.4vw, 152px);
  aspect-ratio: 1;
  right: 19%;
  bottom: 8%;
}

.hero-card-right-top {
  --card-rotation: 7deg;
  width: clamp(122px, 9.4vw, 170px);
  aspect-ratio: 1;
  top: 9%;
  left: 10%;
}

.hero-card-right-main {
  --card-rotation: -5deg;
  width: clamp(184px, 13.5vw, 244px);
  aspect-ratio: 1;
  top: 38%;
  left: 0;
}

.hero-card-right-bottom {
  --card-rotation: 6deg;
  width: clamp(112px, 8.7vw, 158px);
  aspect-ratio: 1;
  left: 19%;
  bottom: 7%;
}

.float-main {
  animation: hero-float 6.4s ease-in-out infinite;
}

.float-main-delayed {
  animation: hero-float 6.8s ease-in-out -2.2s infinite;
}

.float-slow {
  animation: hero-float-soft 7.8s ease-in-out -0.8s infinite;
}

.float-slow-delayed {
  animation: hero-float-soft 8.2s ease-in-out -3.6s infinite;
}

.float-reverse {
  animation: hero-float-reverse 7.2s ease-in-out -1.7s infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -13px, 0); }
}

@keyframes hero-float-soft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(6px, -9px, 0); }
}

@keyframes hero-float-reverse {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-5px, 11px, 0); }
}


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

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.text-link:hover span {
  transform: translateY(3px);
}

.text-link span {
  transition: transform 0.2s ease;
}

.all-games {
  background: #fff;
}

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

.game-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 116px;
  padding: 15px 46px 15px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.game-icon {
  width: 82px;
  height: 82px;
  flex: 0 0 82px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(14, 14, 18, 0.13);
  transition: transform 0.28s ease;
}

.game-details {
  min-width: 0;
  flex: 1;
}

.game-details > strong {
  display: block;
  overflow: hidden;
  margin-bottom: 9px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.game-genre {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mini-platforms {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 17px;
}

.mini-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 58px;
  height: 16px;
  overflow: hidden;
  opacity: 0.72;
  filter: grayscale(1);
}

.mini-platform img {
  width: auto;
  max-width: 58px;
  height: 15px;
}

.mini-platform.lagged img {
  height: 13px;
}

.platform-more,
.coming-soon {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.coming-soon {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  color: #a7a6ac;
  font-size: 18px;
  transform: translateY(-50%);
  transition: color 0.2s ease, transform 0.2s ease;
}

.game-card:hover {
  z-index: 1;
  transform: translateY(-4px);
  border-color: rgba(255, 36, 48, 0.28);
  box-shadow: var(--shadow-soft);
}

.game-card:hover .game-icon {
  transform: scale(1.04) rotate(-1.5deg);
}

.game-card:hover .game-arrow {
  color: var(--accent);
  transform: translate(2px, -52%);
}

.platform-section {
  padding: 45px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fafafa;
}

.platform-inner {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 34px;
}

.platform-inner .eyebrow {
  margin: 0;
}

.platform-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 15px;
}

.platform-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 11px 15px;
  border-radius: 15px;
  background: #fff;
  filter: grayscale(1);
  opacity: 0.64;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.platform-logo img {
  width: auto;
  max-width: 100%;
  height: 32px;
}

.platform-logo:nth-child(4) img {
  height: 25px;
}

.platform-logo:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px);
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 11vw, 150px) 0;
  background: var(--dark);
  color: #fff;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: -210px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(0);
  opacity: 0.95;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 116px);
  line-height: 0.84;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-height: 58px;
  padding: 0 23px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: clamp(15px, 1.7vw, 19px);
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-email:hover {
  transform: translateY(-3px);
  background: #f3f3f3;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.footer {
  background: #0c0c0e;
  color: rgba(255, 255, 255, 0.65);
  padding: 28px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 650;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a:hover {
  color: #fff;
}



































.page-main {
  min-height: calc(100vh - 180px);
  padding: clamp(78px, 10vw, 132px) 0;
  background: var(--soft);
}

.page-shell {
  max-width: 860px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.page-shell h1 {
  margin: 0 0 25px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.page-shell h2 {
  margin: 42px 0 12px;
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.025em;
}

.page-shell h3 {
  margin: 28px 0 8px;
  font-size: clamp(20px, 2.4vw, 25px);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.page-shell p,
.page-shell li {
  color: #4e4d55;
  font-size: 17px;
  line-height: 1.7;
}

.page-shell a {
  color: var(--accent);
  font-weight: 800;
}

.page-shell ul {
  padding-left: 22px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.page-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
  font-size: 15px;
  font-weight: 900;
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.75, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.revealed,
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 1320px) {
  .hero-stage {
    grid-template-columns: minmax(210px, 1fr) minmax(520px, 820px) minmax(210px, 1fr);
  }

  .hero-card-left-main { right: -3%; }
  .hero-card-right-main { left: -3%; }
}

@media (max-width: 1040px) {

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 0;
  }

  .header-inner {
    min-height: 80px;
  }

  .brand img {
    width: 195px;
  }

  .hero {
    min-height: auto;
  }

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

  .platform-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .platform-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-actions {
    align-items: flex-start;
  }

  .contact-section::after {
    width: 340px;
    height: 340px;
    right: -170px;
    top: -150px;
  }

  

  

  
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, 1180px);
  }

  .header-inner {
    width: min(100% - 32px, 1800px);
  }

  .nav-toggle {
    position: relative;
    z-index: 60;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 29px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle .bar {
    width: 100%;
    height: 3px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 28px 20px 34px;
    background: var(--accent);
    box-shadow: 0 18px 34px rgba(110, 0, 7, 0.18);
    opacity: 0;
    transform: translateY(-14px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    font-size: 18px;
  }

  .section-heading {
    align-items: flex-end;
  }

  .section-heading h2 {
    font-size: clamp(42px, 12vw, 66px);
  }

  

  

  

  

  

  

  

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

  .footer-tagline {
    display: none;
  }
}

@media (max-width: 590px) {
  .brand img {
    width: 168px;
  }

  .hero h1 {
    font-size: clamp(48px, 14.5vw, 74px);
  }

  .section-pad {
    padding: 76px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
  }

  .text-link {
    align-self: flex-start;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .game-card {
    min-height: 110px;
  }

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

  .platform-logo:last-child {
    grid-column: span 2;
  }

  .contact-copy h2 {
    font-size: clamp(58px, 18vw, 84px);
  }

  .contact-email {
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 145px;
  }
}


@media (max-width: 1040px) {
  .hero-stage {
    min-height: min(760px, calc(100vh - 96px));
    grid-template-columns: minmax(150px, 0.72fr) minmax(500px, 2fr) minmax(150px, 0.72fr);
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 88px);
  }

  .hero-card-left-top { right: 4%; }
  .hero-card-left-main { right: -14%; }
  .hero-card-left-bottom { right: 7%; }
  .hero-card-right-top { left: 3%; }
  .hero-card-right-main { left: -14%; }
  .hero-card-right-bottom { left: 7%; }
}

@media (max-width: 820px) {
  .hero {
    min-height: 690px;
  }

  .hero-stage {
    min-height: 690px;
    display: block;
  }

  .hero-copy {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 118px 42px 126px;
  }

  .hero h1 {
    width: min(690px, 100%);
    font-size: clamp(54px, 10.5vw, 78px);
  }

  .hero-art {
    position: absolute;
    inset: 0;
    min-height: 0;
    pointer-events: none;
  }

  .hero-card-left-top {
    width: 108px;
    top: 8%;
    left: -16px;
    right: auto;
  }

  .hero-card-left-main {
    width: 145px;
    top: auto;
    left: -43px;
    right: auto;
    bottom: 12%;
  }

  .hero-card-left-bottom {
    display: none;
  }

  .hero-card-right-top {
    width: 112px;
    top: 9%;
    left: auto;
    right: -18px;
  }

  .hero-card-right-main {
    width: 148px;
    top: auto;
    left: auto;
    right: -45px;
    bottom: 11%;
  }

  .hero-card-right-bottom {
    display: none;
  }
}

@media (max-width: 590px) {
  .hero {
    min-height: 640px;
  }

  .hero-stage {
    min-height: 640px;
  }

  .hero-copy {
    padding: 112px 24px 116px;
  }

  .hero h1 {
    width: min(520px, 100%);
    font-size: clamp(48px, 13.5vw, 66px);
    line-height: 0.93;
  }

  .hero-card-left-top,
  .hero-card-right-top {
    width: 86px;
    top: 7%;
  }

  .hero-card-left-main,
  .hero-card-right-main {
    width: 116px;
    bottom: 9%;
  }

  .hero-card-left-main { left: -37px; }
  .hero-card-right-main { right: -37px; }
}

@media (max-width: 380px) {
  .hero,
  .hero-stage {
    min-height: 580px;
  }

  .hero-copy {
    padding-inline: 17px;
  }

  .hero h1 {
    font-size: clamp(43px, 13.8vw, 54px);
  }

  .hero-card-left-top,
  .hero-card-right-top {
    width: 74px;
  }

  .hero-card-left-main,
  .hero-card-right-main {
    width: 98px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  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;
  }

  .reveal,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-game-float {
    animation: none !important;
  }
}

/* =========================================================
   Westeren Orbit Hero
   ========================================================= */
.hero {
  min-height: min(840px, calc(100vh - 96px));
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 36, 48, 0.105), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(255, 36, 48, 0.045), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(255, 118, 37, 0.04), transparent 22%),
    #fff;
}

.hero::before {
  background-image: radial-gradient(rgba(17, 17, 21, 0.085) 0.65px, transparent 0.65px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, transparent 8%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.46) 100%);
  opacity: 0.28;
}

.hero::after {
  width: min(980px, 72vw);
  height: min(520px, 60vh);
  background: rgba(255, 36, 48, 0.047);
  filter: blur(78px);
}

.hero-stage {
  position: relative;
  display: block;
  width: min(1920px, 100%);
  min-height: min(840px, calc(100vh - 96px));
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: grid;
  place-items: center;
  padding: 72px 32px 96px;
  pointer-events: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: min(1080px, 76vw);
  height: min(570px, 65vh);
  border-radius: 50%;
  background: radial-gradient(ellipse at center,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.84) 38%,
    rgba(255, 255, 255, 0.30) 66%,
    rgba(255, 255, 255, 0) 79%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero h1 {
  width: min(1040px, 72vw);
  margin: 0;
  font-size: clamp(64px, 6.55vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-align: center;
  text-wrap: balance;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7));
}

.orbit-system {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 900ms ease, transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.orbit-system.orbit-ready {
  opacity: 1;
  transform: scale(1);
}

.orbit-halo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1320px, 88vw);
  height: min(700px, 76vh);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, transparent 45%, rgba(255, 36, 48, 0.035) 72%, transparent 78%),
    radial-gradient(circle at 52% 48%, rgba(255, 36, 48, 0.055), transparent 61%);
  transform: translate(-50%, -50%);
}

.orbit-track {
  --orbit-x: 0px;
  --orbit-y: 0px;
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  contain: layout style;
}

.orbit-track-outer {
  width: min(1580px, 96vw);
  height: min(700px, 78vh);
}

.orbit-track-middle {
  width: min(1240px, 80vw);
  height: min(545px, 61vh);
  margin-left: -1.4vw;
  margin-top: 1.2vh;
}

.orbit-track-inner {
  width: min(910px, 61vw);
  height: min(390px, 43vh);
  margin-left: 1.7vw;
  margin-top: -1.5vh;
}

.orbit-line {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(17, 17, 21, 0.095);
  border-radius: 50%;
}

.orbit-track-middle .orbit-line {
  border-color: rgba(255, 36, 48, 0.14);
  border-style: dashed;
  border-width: 1px;
}

.orbit-track-inner .orbit-line {
  border-color: rgba(17, 17, 21, 0.075);
}

.orbit-line::before,
.orbit-line::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(255, 36, 48, 0.07);
}

.orbit-line::before {
  left: 11%;
  top: 17%;
}

.orbit-line::after {
  right: 13%;
  bottom: 15%;
  width: 5px;
  height: 5px;
  opacity: 0.62;
}

.orbit-pulse {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 36, 48, 0.28);
  animation: orbit-pulse 3.2s ease-out infinite;
}

.orbit-pulse-a {
  right: 7%;
  top: 31%;
}

.orbit-pulse-b {
  left: 12%;
  bottom: 22%;
  animation-delay: -1.5s;
}

@keyframes orbit-pulse {
  0%, 38%, 100% { box-shadow: 0 0 0 0 rgba(255, 36, 48, 0.22); opacity: 0.65; }
  62% { box-shadow: 0 0 0 15px rgba(255, 36, 48, 0); opacity: 1; }
}

.orbit-icon {
  --orbit-x: 0px;
  --orbit-y: 0px;
  --orbit-scale: 1;
  --orbit-opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--orbit-size, 92px);
  aspect-ratio: 1;
  opacity: var(--orbit-opacity);
  transform: translate(-50%, -50%) translate3d(var(--orbit-x), var(--orbit-y), 0) scale(var(--orbit-scale));
  will-change: transform, opacity;
}

.orbit-icon-frame {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: clamp(4px, 0.34vw, 6px) solid rgba(255, 255, 255, 0.97);
  border-radius: 25%;
  background: #fff;
  box-shadow:
    0 22px 46px rgba(17, 17, 21, 0.16),
    0 4px 12px rgba(17, 17, 21, 0.08),
    0 0 0 1px rgba(17, 17, 21, 0.04);
  animation: orbit-breathe 5.8s ease-in-out infinite;
}

.orbit-icon:nth-of-type(2n) .orbit-icon-frame {
  animation-delay: -2.1s;
}

.orbit-icon:nth-of-type(3n) .orbit-icon-frame {
  animation-delay: -4s;
}

.orbit-icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orbit-icon-sm { --orbit-size: clamp(66px, 5.2vw, 88px); }
.orbit-icon-md { --orbit-size: clamp(80px, 6.4vw, 108px); }
.orbit-icon-lg { --orbit-size: clamp(96px, 7.6vw, 128px); }
.orbit-icon-xl { --orbit-size: clamp(108px, 8.6vw, 148px); }

@keyframes orbit-breathe {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -3px, 0) scale(1.025); }
}

@media (max-width: 1040px) {
  .hero,
  .hero-stage {
    min-height: min(760px, calc(100vh - 96px));
  }

  .hero h1 {
    width: min(780px, 72vw);
    font-size: clamp(58px, 8vw, 88px);
  }

  .orbit-track-outer {
    width: 108vw;
    height: 67vh;
  }

  .orbit-track-middle {
    width: 88vw;
    height: 54vh;
  }

  .orbit-track-inner {
    width: 67vw;
    height: 38vh;
  }
}

@media (max-width: 820px) {
  .hero,
  .hero-stage {
    min-height: 690px;
  }

  .hero-copy {
    padding: 106px 28px 118px;
  }

  .hero-copy::before {
    width: 92vw;
    height: 58vh;
  }

  .hero h1 {
    width: min(660px, 84vw);
    font-size: clamp(54px, 10.5vw, 78px);
  }

  .orbit-track-outer {
    width: 124vw;
    height: 70vh;
  }

  .orbit-track-middle {
    width: 99vw;
    height: 52vh;
  }

  .orbit-track-inner {
    width: 74vw;
    height: 34vh;
  }

  .orbit-track-outer .orbit-icon:nth-of-type(3),
  .orbit-track-middle .orbit-icon:nth-of-type(2) {
    display: none;
  }
}

@media (max-width: 590px) {
  .hero,
  .hero-stage {
    min-height: 640px;
  }

  .hero-copy {
    padding: 104px 18px 108px;
  }

  .hero-copy::before {
    width: 112vw;
    height: 50vh;
  }

  .hero h1 {
    width: min(520px, 91vw);
    font-size: clamp(47px, 13.2vw, 66px);
    line-height: 0.93;
  }

  .orbit-track-outer {
    width: 142vw;
    height: 67vh;
  }

  .orbit-track-middle {
    width: 114vw;
    height: 48vh;
  }

  .orbit-track-inner {
    width: 86vw;
    height: 30vh;
  }

  .orbit-track-outer .orbit-icon:nth-of-type(2),
  .orbit-track-middle .orbit-icon:nth-of-type(3) {
    display: none;
  }

  .orbit-icon-sm { --orbit-size: 61px; }
  .orbit-icon-md { --orbit-size: 72px; }
  .orbit-icon-lg { --orbit-size: 82px; }
  .orbit-icon-xl { --orbit-size: 91px; }

  .orbit-line {
    opacity: 0.72;
  }
}

@media (max-width: 380px) {
  .hero,
  .hero-stage {
    min-height: 585px;
  }

  .hero h1 {
    font-size: clamp(42px, 13.5vw, 54px);
  }

  .orbit-track-inner {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-system {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orbit-pulse,
  .orbit-icon-frame {
    animation: none !important;
  }
}

/* 2026 games, contact and footer refresh */
:root {
  --card-tint: #fff8f8;
}

.all-games {
  padding: clamp(56px, 5vw, 76px) 0 clamp(88px, 8vw, 118px);
}

#games {
  scroll-margin-top: 0;
}

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

.game-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 190px;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  cursor: default;
  box-shadow: 0 8px 24px rgba(15, 15, 20, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(255, 36, 48, 0.095), transparent 38%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.game-card-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 136px;
  padding: 20px 20px 16px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: default;
}

.game-icon {
  width: 92px;
  height: 92px;
  flex: none;
  border-radius: 25px;
  box-shadow: 0 13px 28px rgba(14, 14, 18, 0.14);
}

.game-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.game-details > strong {
  display: -webkit-box;
  margin: 7px 0 0;
  overflow: hidden;
  font-size: 19px;
  line-height: 1.12;
  text-overflow: clip;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.game-genre {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.game-platforms {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 53px;
  margin-top: auto;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(231, 231, 233, 0.9);
  background: rgba(250, 250, 250, 0.82);
}

.game-platform {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 35px;
  padding: 7px 10px;
  border: 1px solid rgba(17, 17, 21, 0.08);
  border-radius: 11px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.game-platform img {
  width: auto;
  max-width: 88px;
  height: 19px;
}

.game-platform.lagged img {
  height: 16px;
}

.game-platform-label {
  opacity: 0.68;
  cursor: default;
}

.game-platform:hover {
  z-index: 2;
  transform: translateY(-2px);
  border-color: rgba(255, 36, 48, 0.28);
  box-shadow: 0 8px 18px rgba(15, 15, 20, 0.08);
}

.game-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(17, 17, 21, 0.08);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff9f2f;
  box-shadow: 0 0 0 4px rgba(255, 159, 47, 0.13);
}

.game-card:hover,
.game-card:focus-within {
  z-index: 2;
  transform: translateY(-5px);
  border-color: rgba(255, 36, 48, 0.28);
  background: var(--card-tint);
  box-shadow: 0 22px 55px rgba(18, 13, 15, 0.1);
}

.game-card:hover::before,
.game-card:focus-within::before {
  opacity: 1;
}

.game-card:hover .game-icon,
.game-card:focus-within .game-icon {
  transform: scale(1.045) rotate(-1.5deg);
}

.contact-section {
  padding: clamp(92px, 10vw, 142px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 36, 48, 0.07), transparent 24%),
    radial-gradient(circle at 10% 100%, rgba(255, 36, 48, 0.045), transparent 34%),
    var(--white);
  color: var(--ink);
}

.contact-section .eyebrow-light {
  color: var(--accent);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 36, 48, 0.22) 0.7px, transparent 0.7px);
  background-size: 25px 25px;
  mask-image: linear-gradient(90deg, transparent, #000 54%, #000);
  opacity: 0.15;
}

.contact-section::after {
  width: 460px;
  height: 460px;
  right: -170px;
  top: -190px;
  border: 1px solid rgba(255, 36, 48, 0.16);
  background: transparent;
  box-shadow:
    0 0 0 56px rgba(255, 36, 48, 0.035),
    0 0 0 112px rgba(255, 36, 48, 0.02);
  opacity: 1;
}


.contact-prompt {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 550;
  line-height: 1.55;
  text-align: right;
}

.contact-email {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(255, 36, 48, 0.2);
}

.contact-email:hover {
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(255, 36, 48, 0.26);
}

.social-links a {
  border-color: rgba(255, 36, 48, 0.22);
  background: rgba(255, 36, 48, 0.055);
  color: var(--accent);
}

.social-links a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.footer {
  padding: 0;
  background: var(--accent);
  color: rgba(255, 255, 255, 0.82);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto;
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  padding-top: 43px;
  padding-bottom: 36px;
}

.footer-brand {
  display: inline-flex;
  width: min(224px, 100%);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 12px;
  font-weight: 650;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.72);
}















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

@media (max-width: 820px) {
  .contact-prompt {
    text-align: left;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .footer-links {
    grid-column: auto;
    justify-content: flex-end;
  }
}

@media (max-width: 590px) {
  .all-games {
    padding: 58px 0 78px;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .game-card {
    min-height: 0;
  }

  .game-card-main {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 124px;
    gap: 15px;
    padding: 17px 17px 14px;
  }

  .game-icon {
    width: 82px;
    height: 82px;
    border-radius: 22px;
  }

  .game-details > strong {
    font-size: 18px;
  }

  .game-platforms {
    padding: 9px 12px 12px;
  }

  .game-platform {
    height: 34px;
  }

  .contact-section::after {
    width: 290px;
    height: 290px;
    right: -165px;
    top: -115px;
  }


  .footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 36px;
    padding-bottom: 30px;
  }

  .footer-brand {
    width: 190px;
  }

  .footer-links {
    grid-column: auto;
    flex-wrap: wrap;
    gap: 18px;
  }

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

  .footer-tagline {
    display: inline;
  }

  
}

@media (hover: none) {
  .game-card:hover {
    transform: none;
  }

}

/* Keep the card action rail full-width despite the legacy horizontal card rules. */
.game-card {
  align-items: stretch;
  gap: 0;
  text-align: initial;
}


/* =========================================================
   Anchor navigation + mobile usability pass
   ========================================================= */
html {
  scroll-padding-top: 96px;
}

body {
  overflow-x: hidden;
}

#home,
#games,
#contact {
  scroll-margin-top: 0;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
  }

  .header-inner {
    width: min(calc(100% - 28px), 1800px);
    min-height: 72px;
    gap: 16px;
  }

  .brand img {
    width: 164px;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .nav-toggle .bar {
    width: 28px;
    flex: 0 0 3px;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    max-height: calc(100dvh - 72px - env(safe-area-inset-top, 0px));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 22px 20px calc(28px + env(safe-area-inset-bottom, 0px));
  }

  .site-nav a {
    display: grid;
    min-width: 160px;
    min-height: 46px;
    place-items: center;
  }

  .hero,
  .hero-stage {
    min-height: max(560px, calc(100svh - 72px - env(safe-area-inset-top, 0px)));
  }

  .hero-copy {
    padding: 82px 18px 94px;
  }

  .hero h1 {
    width: min(560px, 91vw);
    font-size: clamp(45px, 12.6vw, 66px);
    line-height: 0.94;
  }

  .all-games {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
  }

  .games-grid {
    gap: 14px;
  }

  .game-card {
    border-radius: 20px;
  }

  .game-card-main {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 116px;
    gap: 14px;
    padding: 16px 15px 13px;
  }

  .game-icon {
    width: 78px;
    height: 78px;
    border-radius: 21px;
  }

  .game-details > strong {
    font-size: 17px;
  }

  .game-platforms {
    min-height: 58px;
    gap: 8px;
    padding: 8px 11px 11px;
  }

  .game-platform {
    min-width: 44px;
    height: 44px;
    padding: 9px 10px;
    border-radius: 12px;
  }

  .game-platform img {
    max-width: 82px;
    height: 20px;
  }

  .game-platform.lagged img {
    height: 17px;
  }

  .game-status-chip {
    min-height: 40px;
  }

  .contact-section {
    padding: 76px 0 calc(76px + env(safe-area-inset-bottom, 0px));
  }

  .contact-inner {
    gap: 38px;
  }

  .contact-copy h2 {
    font-size: clamp(52px, 16vw, 74px);
    line-height: 0.88;
  }


  .contact-actions {
    width: 100%;
    align-items: flex-start;
    gap: 24px;
  }

  .contact-prompt {
    max-width: 560px;
    text-align: left;
  }

  .contact-email {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    gap: 10px;
    padding: 0 17px;
    font-size: clamp(13px, 4vw, 16px);
  }

  .social-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .social-links a {
    width: 46px;
    height: 46px;
  }

  .footer-main {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 27px;
  }

  .footer-brand {
    width: 180px;
  }

  .footer-links {
    width: 100%;
    gap: 14px 20px;
  }

  .footer-links a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .footer-bottom {
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 380px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 148px;
  }

  .hero,
  .hero-stage {
    min-height: max(530px, calc(100svh - 72px - env(safe-area-inset-top, 0px)));
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 50px);
  }

  .container {
    width: calc(100% - 24px);
  }

  .game-card-main {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding-inline: 12px;
  }

  .game-icon {
    width: 72px;
    height: 72px;
    border-radius: 19px;
  }

  .game-details > strong {
    font-size: 16px;
  }

  .game-platforms {
    padding-inline: 9px;
  }

  .contact-email {
    padding-inline: 14px;
    font-size: 13px;
  }
}

@media (hover: none), (pointer: coarse) {
  .game-card:hover,
  .game-card:focus-within,
  .game-platform:hover,
  .social-links a:hover,
  .contact-email:hover {
    transform: none;
  }
}


/* =========================================================
   Orbit Hero refinement: lighter trails + portrait layouts
   ========================================================= */
.hero-title-wide {
  display: block;
}

.hero-title-compact {
  display: none;
}

/* Keep the orbit idea, but show only two short, quiet trails. */
.orbit-line::before,
.orbit-line::after {
  display: none;
}

.orbit-track-outer .orbit-line {
  display: block;
  border: 1px solid rgba(17, 17, 21, 0.075);
  border-style: solid;
  -webkit-mask-image: conic-gradient(
    from 18deg,
    transparent 0deg 34deg,
    #000 34deg 90deg,
    transparent 90deg 210deg,
    #000 210deg 239deg,
    transparent 239deg 360deg
  );
  mask-image: conic-gradient(
    from 18deg,
    transparent 0deg 34deg,
    #000 34deg 90deg,
    transparent 90deg 210deg,
    #000 210deg 239deg,
    transparent 239deg 360deg
  );
}

.orbit-track-middle .orbit-line {
  display: block;
  border: 1px dashed rgba(255, 36, 48, 0.11);
  -webkit-mask-image: conic-gradient(
    from -26deg,
    transparent 0deg 88deg,
    #000 88deg 145deg,
    transparent 145deg 282deg,
    #000 282deg 312deg,
    transparent 312deg 360deg
  );
  mask-image: conic-gradient(
    from -26deg,
    transparent 0deg 88deg,
    #000 88deg 145deg,
    transparent 145deg 282deg,
    #000 282deg 312deg,
    transparent 312deg 360deg
  );
}

.orbit-track-inner .orbit-line {
  display: none;
}

.orbit-pulse-b {
  display: none;
}

.orbit-pulse-a {
  right: 14%;
  top: 20%;
  width: 7px;
  height: 7px;
  opacity: 0.72;
  animation-duration: 4s;
}

.hero-copy::before {
  width: min(1040px, 72vw);
  height: min(540px, 61vh);
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.91) 42%,
    rgba(255, 255, 255, 0.42) 65%,
    rgba(255, 255, 255, 0) 80%
  );
}

/* Tablet portrait: six balanced icons and only one very subtle arc. */
@media (orientation: portrait) and (min-width: 591px) and (max-width: 820px) {
  .hero,
  .hero-stage {
    min-height: max(720px, calc(100svh - 84px));
  }

  .hero-copy {
    padding: 112px 34px 122px;
  }

  .hero h1 {
    width: min(680px, 84vw);
    font-size: clamp(58px, 10.2vw, 78px);
  }

  .hero-copy::before {
    width: 96vw;
    height: 54vh;
  }

  .orbit-track-outer {
    width: 112vw;
    height: 66vh;
    margin: 0;
  }

  .orbit-track-middle {
    width: 88vw;
    height: 50vh;
    margin-left: 0;
    margin-top: 0;
  }

  .orbit-track-inner {
    display: none;
  }

  .orbit-track-outer .orbit-icon,
  .orbit-track-middle .orbit-icon {
    display: block;
  }

  .orbit-track-middle .orbit-line,
  .orbit-pulse {
    display: none;
  }

  .orbit-track-outer .orbit-line {
    border-color: rgba(17, 17, 21, 0.06);
    -webkit-mask-image: conic-gradient(
      from 8deg,
      transparent 0deg 22deg,
      #000 22deg 78deg,
      transparent 78deg 242deg,
      #000 242deg 270deg,
      transparent 270deg 360deg
    );
    mask-image: conic-gradient(
      from 8deg,
      transparent 0deg 22deg,
      #000 22deg 78deg,
      transparent 78deg 242deg,
      #000 242deg 270deg,
      transparent 270deg 360deg
    );
  }

  .orbit-icon-sm { --orbit-size: 66px; }
  .orbit-icon-md { --orbit-size: 78px; }
  .orbit-icon-lg { --orbit-size: 90px; }
  .orbit-icon-xl { --orbit-size: 100px; }

  .orbit-icon-frame {
    animation-duration: 7s;
  }
}

/* Phone portrait: invisible paths, four icons kept evenly around the title. */
@media (orientation: portrait) and (max-width: 590px) {
  .hero,
  .hero-stage {
    min-height: max(610px, calc(100svh - 72px - env(safe-area-inset-top, 0px)));
  }

  .hero-copy {
    padding: 92px 16px 104px;
  }

  .hero-copy::before {
    width: 118vw;
    height: 49vh;
    background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.99) 0%,
      rgba(255, 255, 255, 0.94) 45%,
      rgba(255, 255, 255, 0.48) 68%,
      rgba(255, 255, 255, 0) 82%
    );
  }

  .hero h1 {
    width: min(520px, 92vw);
    font-size: clamp(46px, 12.7vw, 62px);
    line-height: 0.93;
  }

  .orbit-halo {
    width: 116vw;
    height: 64vh;
    opacity: 0.66;
  }

  .orbit-track-outer {
    width: 106vw;
    height: 72vh;
    margin: 0;
  }

  .orbit-track-middle {
    width: 92vw;
    height: 58vh;
    margin: 0;
  }

  .orbit-track-inner,
  .orbit-line,
  .orbit-pulse {
    display: none !important;
  }

  .orbit-track-outer .orbit-icon,
  .orbit-track-middle .orbit-icon {
    display: none;
  }

  .orbit-track-outer .orbit-icon:nth-of-type(1),
  .orbit-track-outer .orbit-icon:nth-of-type(2),
  .orbit-track-middle .orbit-icon:nth-of-type(1),
  .orbit-track-middle .orbit-icon:nth-of-type(2) {
    display: block;
  }

  .orbit-icon-sm { --orbit-size: 58px; }
  .orbit-icon-md { --orbit-size: 68px; }
  .orbit-icon-lg { --orbit-size: 78px; }
  .orbit-icon-xl { --orbit-size: 86px; }

  .orbit-icon-frame {
    border-width: 4px;
    box-shadow:
      0 16px 34px rgba(17, 17, 21, 0.14),
      0 3px 9px rgba(17, 17, 21, 0.07),
      0 0 0 1px rgba(17, 17, 21, 0.035);
    animation-name: orbit-breathe-mobile;
    animation-duration: 7.4s;
  }

  @keyframes orbit-breathe-mobile {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -2px, 0) scale(1.012); }
  }
}

/* Controlled four-line title on narrow phones. */
@media (orientation: portrait) and (max-width: 390px) {
  .hero-title-wide {
    display: none;
  }

  .hero-title-compact {
    display: block;
  }

  .hero h1 {
    width: 94vw;
    font-size: clamp(39px, 12.2vw, 48px);
    line-height: 0.94;
  }

  .hero,
  .hero-stage {
    min-height: max(570px, calc(100svh - 72px - env(safe-area-inset-top, 0px)));
  }

  .orbit-track-outer {
    width: 108vw;
    height: 70vh;
  }

  .orbit-track-middle {
    width: 94vw;
    height: 56vh;
  }
}

/* =========================================================
   Charcoal footer + responsive legal-page alignment
   ========================================================= */
.footer {
  background: #222222;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.68);
}

/* Privacy Policy and Terms use a compact sticky-footer layout. */
.legal-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--soft);
}

.legal-page .site-header {
  flex: 0 0 auto;
}

.legal-page .page-main {
  flex: 1 0 auto;
  min-height: 0;
}

.legal-page .footer {
  flex: 0 0 auto;
  margin-top: auto;
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom, 0px));
}

.legal-page .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  font-weight: 650;
}

.legal-page .footer-links {
  justify-content: flex-end;
}

@media (max-width: 600px) {
  /* Main-page footer: centered and balanced in portrait. */
  .footer-main {
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-main .footer-links {
    width: auto;
    justify-content: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  /* Legal pages: copyright first, links centered underneath. */
  .legal-page .footer {
    padding-top: 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  }

  .legal-page .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    text-align: center;
  }

  .legal-page .footer-links {
    width: 100%;
    justify-content: center;
    gap: 24px;
  }
}

/* =========================================================
   Games → Contact transition (Hero → Games restored to original)
   ========================================================= */

/* Keep the original Hero → Games presentation, while retaining the tighter
   spacing and soft surface change before Contact. */
.all-games {
  padding-bottom: clamp(72px, 6vw, 92px);
}

.contact-section {
  border-top: 0;
  padding: clamp(88px, 9vw, 128px) 0;
  background:
    linear-gradient(
      180deg,
      #fff 0,
      #fffafa 86px,
      rgba(255, 249, 250, 0.92) 150px,
      rgba(255, 255, 255, 0) 245px
    ),
    radial-gradient(circle at 10% 100%, rgba(255, 36, 48, 0.045), transparent 34%),
    var(--white);
}

.contact-section::before {
  inset: 66px 0 0;
  opacity: 0.13;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 54%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 54%, #000);
}

/* Decorative ring on the right remains removed. */
.contact-section::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 820px) {
  .all-games {
    padding-bottom: 76px;
  }

  .contact-section {
    padding-top: 84px;
  }
}

@media (max-width: 590px) {
  .all-games {
    padding-bottom: 68px;
  }

  .contact-section {
    padding-top: 76px;
  }
}

/* =========================================================
   Hero-to-games transition: prevent hard clipping of orbit art
   ========================================================= */
.orbit-system {
  /* Keep the animated icons and their shadows safely above the section edge
     without changing the orbit animation's transform. */
  inset: -42px 0 42px;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(104px, 13vh, 150px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.08) 24%,
    rgba(255, 255, 255, 0.62) 68%,
    rgba(255, 255, 255, 0.96) 91%,
    #ffffff 100%
  );
}

@media (max-width: 820px) {
  .orbit-system {
    inset: -28px 0 28px;
  }

  .hero-stage::after {
    height: 112px;
  }
}

@media (max-width: 590px) {
  .orbit-system {
    inset: -18px 0 18px;
  }

  .hero-stage::after {
    height: 92px;
  }
}


/* =========================================================
   Static hero constellation — no ellipse, orbit, or pulse dot
   ========================================================= */
.hero::after,
.hero-copy::before,
.orbit-system,
.orbit-halo,
.orbit-track,
.orbit-line,
.orbit-pulse {
  display: none !important;
}

.hero {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 36, 48, 0.075), transparent 30%),
    radial-gradient(circle at 10% 82%, rgba(255, 36, 48, 0.035), transparent 22%),
    radial-gradient(circle at 90% 16%, rgba(255, 118, 37, 0.03), transparent 20%),
    #fff;
}

.hero-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.hero-icon {
  position: absolute;
  width: var(--hero-icon-size, 88px);
  aspect-ratio: 1;
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.9);
  transition:
    opacity 640ms ease var(--hero-icon-delay, 0ms),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--hero-icon-delay, 0ms);
  will-change: transform, opacity;
}

.hero-icons.is-ready .hero-icon {
  opacity: 0.94;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-icon-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: clamp(4px, 0.34vw, 6px) solid rgba(255, 255, 255, 0.98);
  border-radius: 25%;
  background: #fff;
  box-shadow:
    0 22px 46px rgba(17, 17, 21, 0.15),
    0 4px 12px rgba(17, 17, 21, 0.075),
    0 0 0 1px rgba(17, 17, 21, 0.035);
}

.hero-icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle ambient motion: fixed layout, no orbit or rotation. */
.hero-icons.is-ready .hero-icon-frame {
  animation: hero-icon-breathe var(--hero-float-duration, 7.6s) ease-in-out var(--hero-float-delay, 0s) infinite;
  transform-origin: 50% 55%;
  will-change: transform;
}

.hero-icon-slot-1 { --hero-float-x: 2px;  --hero-float-y: -4px; --hero-float-duration: 7.4s; --hero-float-delay: -1.2s; }
.hero-icon-slot-2 { --hero-float-x: -3px; --hero-float-y: 3px;  --hero-float-duration: 8.1s; --hero-float-delay: -3.6s; }
.hero-icon-slot-3 { --hero-float-x: 3px;  --hero-float-y: -3px; --hero-float-duration: 8.8s; --hero-float-delay: -5.1s; }
.hero-icon-slot-4 { --hero-float-x: -2px; --hero-float-y: -4px; --hero-float-duration: 7.9s; --hero-float-delay: -2.4s; }
.hero-icon-slot-5 { --hero-float-x: 3px;  --hero-float-y: 3px;  --hero-float-duration: 8.5s; --hero-float-delay: -6.0s; }
.hero-icon-slot-6 { --hero-float-x: -3px; --hero-float-y: -3px; --hero-float-duration: 7.7s; --hero-float-delay: -4.2s; }
.hero-icon-slot-7 { --hero-float-x: 2px;  --hero-float-y: 3px;  --hero-float-duration: 9.0s; --hero-float-delay: -6.7s; }
.hero-icon-slot-8 { --hero-float-x: -2px; --hero-float-y: -3px; --hero-float-duration: 8.3s; --hero-float-delay: -3.0s; }

@keyframes hero-icon-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(var(--hero-float-x, 2px), var(--hero-float-y, -3px), 0) scale(1.008);
  }
}

.hero-icon-sm { --hero-icon-size: clamp(62px, 4.5vw, 82px); }
.hero-icon-md { --hero-icon-size: clamp(76px, 5.5vw, 98px); }
.hero-icon-lg { --hero-icon-size: clamp(92px, 6.7vw, 118px); }
.hero-icon-xl { --hero-icon-size: clamp(108px, 7.9vw, 138px); }

/* Fixed desktop composition: positions never orbit or rotate. */
.hero-icon-slot-1 { left: 4%; top: 13%; }
.hero-icon-slot-2 { right: 5%; top: 17%; }
.hero-icon-slot-3 { left: 13%; bottom: 10%; }
.hero-icon-slot-4 { left: 2%; top: 48%; }
.hero-icon-slot-5 { right: 2%; top: 49%; }
.hero-icon-slot-6 { right: 12%; bottom: 8%; }
.hero-icon-slot-7 { left: 28%; top: 5%; }
.hero-icon-slot-8 { right: 28%; bottom: 5%; }

@media (max-width: 1040px) {
  .hero-icon-slot-1 { left: 1%; top: 12%; }
  .hero-icon-slot-2 { right: 1%; top: 16%; }
  .hero-icon-slot-3 { left: 7%; bottom: 9%; }
  .hero-icon-slot-4 { left: -3%; top: 48%; }
  .hero-icon-slot-5 { right: -3%; top: 50%; }
  .hero-icon-slot-6 { right: 7%; bottom: 8%; }
  .hero-icon-slot-7 { left: 26%; top: 5%; }
  .hero-icon-slot-8 { right: 26%; bottom: 5%; }
}

@media (orientation: portrait) and (min-width: 591px) and (max-width: 820px) {
  .hero-icon-sm { --hero-icon-size: 66px; }
  .hero-icon-md { --hero-icon-size: 78px; }
  .hero-icon-lg { --hero-icon-size: 90px; }
  .hero-icon-xl { --hero-icon-size: 102px; }

  .hero-icon-slot-1 { left: -18px; top: 11%; }
  .hero-icon-slot-2 { right: -16px; top: 13%; }
  .hero-icon-slot-3 { left: 4%; bottom: 8%; }
  .hero-icon-slot-4 { left: -30px; top: 46%; }
  .hero-icon-slot-5 { right: -30px; top: 48%; }
  .hero-icon-slot-6 { right: 4%; bottom: 8%; }
  .hero-icon-slot-7,
  .hero-icon-slot-8 { display: none; }
}

@media (orientation: portrait) and (max-width: 590px) {
  .hero-icon-sm { --hero-icon-size: 56px; }
  .hero-icon-md { --hero-icon-size: 66px; }
  .hero-icon-lg { --hero-icon-size: 76px; }
  .hero-icon-xl { --hero-icon-size: 86px; }

  .hero-icon-slot-1 { left: -12px; top: 7%; }
  .hero-icon-slot-2 { right: -12px; top: 10%; }
  .hero-icon-slot-3 { left: 2%; bottom: 8%; }
  .hero-icon-slot-6 { right: 2%; bottom: 9%; }
  .hero-icon-slot-4,
  .hero-icon-slot-5,
  .hero-icon-slot-7,
  .hero-icon-slot-8 { display: none; }

  .hero-icon-frame {
    border-width: 4px;
    box-shadow:
      0 16px 34px rgba(17, 17, 21, 0.13),
      0 3px 9px rgba(17, 17, 21, 0.065),
      0 0 0 1px rgba(17, 17, 21, 0.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-icon,
  .hero-icons.is-ready .hero-icon {
    opacity: 0.94;
    transform: none;
    transition: none;
  }

  .hero-icons.is-ready .hero-icon-frame {
    animation: none;
    transform: none;
  }
}


/* =========================================================
   Contact section refinement: taller panel with lifted headline
   ========================================================= */
.contact-section {
  padding: clamp(96px, 9vw, 132px) 0;
}

.contact-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: stretch;
  min-height: clamp(460px, 66vh, 620px);
  gap: clamp(44px, 6vw, 84px);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  padding-top: clamp(4px, 1vw, 14px);
}

.contact-copy h2 {
  margin-top: 8px;
}

.contact-actions {
  height: 100%;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
  padding-bottom: clamp(4px, 1vw, 14px);
}

.contact-prompt {
  max-width: 420px;
  text-align: left;
}

.social-links {
  margin-top: 2px;
}

@media (max-width: 980px) {
  .contact-inner {
    min-height: clamp(420px, 58vh, 540px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  }
}

@media (max-width: 820px) {
  .contact-section {
    padding: 84px 0 calc(84px + env(safe-area-inset-bottom, 0px));
  }

  .contact-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-copy,
  .contact-actions {
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    align-self: auto;
  }

  .contact-actions {
    justify-content: flex-start;
    align-items: flex-start;
  }
}

/* =========================================================
   Contact section balance refinement
   ========================================================= */
@media (min-width: 821px) {
  .contact-section {
    padding: clamp(78px, 7vw, 104px) 0;
  }

  .contact-inner {
    min-height: clamp(400px, 54vh, 520px);
    grid-template-columns: minmax(580px, 1.18fr) minmax(320px, 0.72fr);
    gap: clamp(42px, 5vw, 72px);
  }

  .contact-copy h2 {
    font-size: clamp(56px, 7.2vw, 108px);
    line-height: 0.86;
    max-width: 760px;
  }

  .contact-copy h2 br {
    display: block;
  }

  .contact-actions {
    padding-bottom: 0;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .contact-inner {
    grid-template-columns: minmax(500px, 1.1fr) minmax(280px, 0.8fr);
  }

  .contact-copy h2 {
    font-size: clamp(54px, 7vw, 88px);
    max-width: 650px;
  }
}
