:root {
  --paper: #f7f3ed;
  --paper-deep: #eee8df;
  --ink: #111113;
  --muted: #696661;
  --line: rgba(17, 17, 19, 0.14);
  --red: #d92d32;
  --red-dark: #8f161c;
  --white: #fffdf9;
  --radius: 28px;
  --ease: cubic-bezier(.2, .75, .25, 1);
  --page: min(1280px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: white; background: var(--red); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: white;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  width: 100%;
  height: 88px;
  padding: 0 max(32px, calc((100vw - 1280px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
  transition: height .3s var(--ease), background .3s, box-shadow .3s;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(247, 243, 237, .97);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  width: max-content;
  display: flex;
  gap: .32em;
  align-items: baseline;
  font: 800 17px/1 "Manrope", sans-serif;
  letter-spacing: -.05em;
  transition: transform .25s var(--ease);
}
.brand:hover { transform: translateY(-2px); }
.brand-accent { color: var(--red); }
.site-nav { display: flex; gap: 38px; }
.site-nav a,
.site-footer div a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  transition: color .25s, transform .25s var(--ease);
}
.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer div a:hover,
.site-footer div a:focus-visible { color: var(--red-dark); transform: translateY(-2px); }
.site-nav a::after,
.site-footer div a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-footer div a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; gap: 10px; align-items: center; }
.language-picker { position: relative; display: block; }
.language-picker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  width: 11px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}
.language-picker::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 5px;
  height: 11px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
  pointer-events: none;
  transform: translateY(-50%);
}
.language-picker select {
  height: 40px;
  padding: 0 11px 0 30px;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: border-color .25s, background .25s, transform .25s var(--ease);
}
.language-picker select:hover,
.language-picker select:focus-visible { border-color: var(--red); background: var(--white); transform: translateY(-2px); }
.header-cta {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .25s, background .25s, transform .25s;
}
.header-cta:hover { color: white; background: var(--ink); transform: translateY(-2px); }
.header-cta > span:last-child { margin-left: 8px; }
.menu-toggle { display: none; }

.hero {
  width: var(--page);
  min-height: 100vh;
  margin: 0 auto;
  padding: 154px 0 90px;
}
.hero-copy { position: relative; }
.eyebrow {
  margin: 0 0 28px;
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow span { width: 28px; height: 2px; background: var(--red); }
.hero h1,
.section-heading h2,
.studio h2,
.contact h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 7.3vw, 108px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.075em;
}
@media (min-width: 641px) {
  .hero h1 em { margin-left: .08em; }
}
em { color: var(--red); font-style: normal; }
.hero-bottomline {
  position: absolute;
  right: clamp(-80px, calc(360px - 30vw), 0px);
  bottom: 4px;
  width: 280px;
}
.hero-bottomline p { margin: 0 0 19px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.text-link,
.feature-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  transition: color .25s, transform .25s var(--ease);
}
.text-link > span:last-child,
.feature-link > span:last-child { transition: transform .25s var(--ease); }
.text-link:hover > span:last-child { transform: translateY(4px); }
.text-link:hover,
.text-link:focus-visible { color: var(--red-dark); transform: translateX(4px); }

.showcase { margin-top: 76px; }
.carousel-stage {
  position: relative;
  height: clamp(390px, 43vw, 550px);
  perspective: 1400px;
  touch-action: pan-y;
  user-select: none;
}
.game-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 63vw);
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: var(--radius);
  background: #221f27;
  box-shadow: 0 28px 70px rgba(17,17,19,.16);
  cursor: pointer;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.64);
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform .95s cubic-bezier(.22,.8,.22,1), opacity .65s ease, box-shadow .35s, border-color .35s;
  will-change: transform;
}
.game-slide > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.game-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.game-slide.is-prev {
  z-index: 2;
  opacity: .62;
  transform: translate(-116%, -50%) scale(.72) rotateY(12deg) rotateZ(-1deg);
}
.game-slide.is-next {
  z-index: 2;
  opacity: .62;
  transform: translate(16%, -50%) scale(.72) rotateY(-12deg) rotateZ(1deg);
}
.game-slide.is-active:hover,
.game-slide.is-active:focus-visible {
  border-color: rgba(217,45,50,.85);
  box-shadow: 0 32px 90px rgba(143,22,28,.24), 0 0 0 3px rgba(217,45,50,.13);
  transform: translate(-50%, calc(-50% - 7px)) scale(1);
  outline: none;
}
.game-slide.is-active:hover > img { transform: scale(1.035); }
.slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10,8,10,.78) 100%);
  pointer-events: none;
}
.slide-label {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 28px;
  left: 34px;
  color: white;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .35s .15s, transform .5s .12s var(--ease);
}
.is-active .slide-label { opacity: 1; transform: translateY(0); }
.slide-label p { margin: 0 0 4px; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.slide-label h2 { margin: 0; font: 800 clamp(28px,4vw,50px)/1 "Manrope", sans-serif; letter-spacing: -.055em; }
.slide-label span { position: absolute; right: 0; bottom: 5px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.slide-label i,
.drag-hint i { font-style: normal; }
.slide-label b { display: inline-block; margin-left: 8px; transition: transform .25s; }
.game-slide:hover .slide-label b { transform: translate(4px,-4px); }

.block-art { position: absolute; inset: 0; overflow: hidden; background: #0460f5; }
.block-art-bg { width: 100%; height: 100%; object-fit: cover; opacity: .88; transform: scale(1.08); }
.block-art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 42%, transparent 0 22%, rgba(8,15,84,.58) 85%); }
.block-art-logo { position: absolute; z-index: 2; top: 12%; left: 50%; width: 30%; border-radius: 21%; box-shadow: 0 16px 35px rgba(31,0,78,.28); transform: translateX(-50%) rotate(-4deg); }
.block-art-golem { position: absolute; z-index: 2; right: 5%; bottom: 2%; width: 31%; }
.block-art-bomb { position: absolute; z-index: 2; bottom: 17%; left: 8%; width: 15%; transform: rotate(-10deg); }
.sudoku-slide-icon { position: absolute; z-index: 2; top: 8%; right: 7%; width: 24%; transition: transform .7s var(--ease); transform: rotate(5deg); }
.sudoku-slide-icon img { width: 100%; border-radius: 22%; box-shadow: 0 18px 42px rgba(63,21,105,.3); }
.game-slide--sudoku:hover .sudoku-slide-icon { transform: rotate(2deg) translateY(-6px) scale(1.025); }
.game-slide--nightfall > img { object-position: 50% 46%; }

.carousel-controls {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.carousel-arrows { display: flex; gap: 8px; }
.carousel-arrows button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color .25s, background .25s, border-color .25s, transform .25s;
}
.carousel-arrows button:hover { color: white; border-color: var(--red); background: var(--red); transform: translateY(-2px); }
.carousel-status { display: flex; gap: 6px; align-items: baseline; font-size: 13px; color: var(--muted); }
.carousel-status strong { color: var(--ink); font-size: 18px; }
.carousel-progress { height: 2px; overflow: hidden; background: var(--line); }
.carousel-progress span { display: block; width: 33.333%; height: 100%; background: var(--red); transition: transform .55s var(--ease); transform-origin: left; }
.drag-hint { margin: 0; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.drag-hint span { margin-left: 8px; color: var(--red); }

.games { width: var(--page); margin: 0 auto; padding: 150px 0 90px; }
.section-heading { margin-bottom: 92px; }
.section-heading h2,
.studio h2,
.contact h2 { font-size: clamp(48px, 6.3vw, 88px); }
.game-feature {
  scroll-margin-top: 88px;
  min-height: 680px;
  padding: 80px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(340px, .83fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  border-top: 1px solid var(--line);
}
.game-feature--reverse { grid-template-columns: minmax(340px, .83fr) minmax(0, 1.17fr); }
.game-feature--reverse .feature-media { grid-column: 2; grid-row: 1; }
.game-feature--reverse .feature-copy { grid-column: 1; grid-row: 1; }
.feature-media {
  position: relative;
  height: min(620px, 55vw);
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: 0 25px 70px rgba(17,17,19,.11);
  isolation: isolate;
  contain: layout paint;
}
.feature-number { position: absolute; z-index: 10; top: 24px; left: 24px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; color: white; background: rgba(17,17,19,.86); font: 700 13px "Manrope",sans-serif; }
.feature-media--image > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.game-feature:hover .feature-media--image > img { transform: scale(1.035); }
.feature-media--block { background: #075cf4; }
.feature-media--block::before { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(145deg, rgba(66,221,255,.14), rgba(51,5,123,.6)); }
.feature-block-bg { width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.feature-block-logo { position: absolute; z-index: 4; top: 10%; left: 10%; width: 34%; border-radius: 22%; box-shadow: 0 25px 50px rgba(25,0,85,.32); transform: rotate(-6deg); transition: transform .7s var(--ease); }
.feature-golem { position: absolute; z-index: 5; right: 3%; bottom: 0; width: 52%; transition: transform .7s var(--ease); }
.feature-bomb { position: absolute; z-index: 4; bottom: 12%; left: 10%; width: 22%; transform: rotate(-12deg); transition: transform .7s var(--ease); }
.game-feature:hover .feature-block-logo { transform: rotate(-3deg) translateY(-7px); }
.game-feature:hover .feature-golem { transform: scale(1.035) translateX(-5px); }
.game-feature:hover .feature-bomb { transform: rotate(-5deg) translateY(-8px); }
.sudoku-feature-icon { position: absolute; z-index: 6; top: 7%; right: 6%; width: 27%; transition: transform .7s var(--ease); transform: rotate(5deg); }
.sudoku-feature-icon img { width: 100%; border-radius: 22%; box-shadow: 0 22px 50px rgba(63,21,105,.3); }
.game-feature:hover .sudoku-feature-icon { transform: rotate(2deg) translateY(-8px) scale(1.025); }
.feature-media--nightfall > img { object-position: 51% center; }
.coming-soon { position: absolute; z-index: 10; top: 25px; right: 24px; padding: 10px 14px; border-radius: 100px; color: white; background: var(--red); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.feature-kicker { margin: 0 0 20px; color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.feature-copy h3 { margin: 0 0 32px; font: 800 clamp(52px, 6vw, 84px)/.84 "Manrope",sans-serif; letter-spacing: -.07em; }
.feature-copy > p:not(.feature-kicker) { max-width: 470px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.feature-copy .feature-lead { color: var(--ink) !important; font-size: 22px !important; font-weight: 600; line-height: 1.35 !important; letter-spacing: -.025em; }
.feature-tags { margin: 29px 0 34px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.feature-tags li { padding: 9px 13px; border: 1px solid var(--line); border-radius: 100px; color: var(--muted); font-size: 12px; font-weight: 600; transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease); }
.feature-tags li:hover { color: var(--red-dark); border-color: rgba(217,45,50,.38); background: rgba(217,45,50,.06); transform: translateY(-2px); }
.feature-link:hover,
.feature-link:focus-visible { color: var(--red); transform: translateX(4px); }
.feature-link:hover > span:last-child { transform: translate(4px,-4px); }
.feature-link--muted { color: var(--muted); border-bottom-style: dashed; cursor: default; }
.feature-actions { display: flex; flex-wrap: wrap; gap: 18px 22px; align-items: center; }
.store-links { display: flex; gap: 8px; align-items: center; }
.store-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 7px 18px rgba(17,17,19,.08);
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}
.store-button svg { width: 21px; height: 21px; }
.store-button--apple svg { fill: var(--ink); }
a.store-button:hover,
a.store-button:focus-visible {
  border-color: var(--red);
  background: white;
  box-shadow: 0 10px 24px rgba(143,22,28,.16);
  outline: none;
  transform: translateY(-3px);
}
.store-button--disabled {
  opacity: .25;
  filter: grayscale(1);
  box-shadow: none;
  cursor: not-allowed;
}

.studio {
  margin-top: 120px;
  padding: 140px max(32px, calc((100vw - 1280px) / 2));
  color: white;
  background: var(--red-dark);
}
.studio-intro { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: 90px; align-items: end; }
.studio-intro .eyebrow { grid-column: 1 / -1; }
.eyebrow--light { color: rgba(255,255,255,.62); }
.eyebrow--light span { background: white; }
.studio h2 em { color: #ff8588; }
.studio-title-line { display: inline-block; white-space: nowrap; }
html[lang="tr"] .studio h2 { font-size: clamp(44px, 5vw, 68px); line-height: .94; letter-spacing: -.065em; }
.studio-intro > p:last-child { max-width: 480px; margin: 0 0 4px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; }
.studio-columns { margin-top: 92px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.studio-columns article { min-height: 220px; padding: 28px 42px 10px 0; }
.studio-columns article + article { padding-left: 42px; border-left: 1px solid rgba(255,255,255,.2); }
.studio-columns span { color: rgba(255,255,255,.46); font-size: 12px; }
.studio-columns h3 { margin: 35px 0 13px; font: 700 22px "Manrope",sans-serif; letter-spacing: -.03em; }
.studio-columns p { max-width: 290px; margin: 0; color: rgba(255,255,255,.6); line-height: 1.6; }

.contact { width: var(--page); margin: 0 auto; padding: 150px 0; }
.contact-row { display: flex; justify-content: space-between; align-items: flex-end; }
.contact-button { width: 180px; height: 180px; padding: 28px; display: flex; justify-content: space-between; align-items: flex-end; border-radius: 50%; color: white; background: var(--red); font-size: 15px; font-weight: 700; transition: transform .35s var(--ease), background .25s, box-shadow .35s; }
.contact-button b { font-size: 24px; transition: transform .3s; }
.contact-button:hover { background: var(--red-dark); box-shadow: 0 24px 50px rgba(143,22,28,.25); transform: rotate(-4deg) scale(1.04); }
.contact-button:hover b { transform: translate(5px,-5px); }

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 34px 0 42px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; color: var(--muted); font-size: 13px; }
.site-footer div { display: flex; gap: 26px; }
.site-footer .footer-legal { grid-column: 2 / -1; justify-self: end; }
.site-footer .footer-legal a { color: var(--muted); font-size: 12px; }
.site-footer small { grid-column: 1 / 2; grid-row: 2; color: var(--muted); font-size: 11px; }
.site-footer small a { text-decoration: underline; text-underline-offset: 3px; }
.site-footer small a { transition: color .25s; }
.site-footer small a:hover,
.site-footer small a:focus-visible { color: var(--red-dark); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.game-feature.reveal { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --page: min(100% - 40px, 820px); }
  .site-header { padding: 0 20px; display: flex; gap: 8px; }
  .site-header .brand { margin-right: auto; }
  .header-actions { position: absolute; right: 72px; flex: none; margin: 0; }
  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    padding: 130px 24px 50px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transform: translateY(-18px);
    transition: opacity .3s, visibility .3s, transform .4s var(--ease);
  }
  .site-nav.is-open { z-index: 101; visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 12px 0; font: 800 44px "Manrope",sans-serif; letter-spacing: -.05em; }
  .header-cta { display: none; }
  .menu-toggle { position: absolute; z-index: 102; right: 20px; flex: 0 0 44px; width: 44px; height: 44px; display: grid; place-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); transition: border-color .25s, background .25s, transform .25s var(--ease); }
  .menu-toggle:hover { border-color: var(--red); background: var(--white); transform: translateY(-2px); }
  .menu-toggle span { width: 18px; height: 2px; background: var(--ink); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .hero { padding-top: 130px; }
  .hero-bottomline { position: static; width: auto; margin-top: 30px; display: flex; justify-content: space-between; align-items: end; gap: 30px; }
  .hero-bottomline p { max-width: 290px; }
  .game-slide { width: min(680px, 78vw); }
  .game-slide.is-prev { transform: translate(-110%, -50%) scale(.66) rotateY(10deg) rotateZ(-1deg); }
  .game-slide.is-next { transform: translate(10%, -50%) scale(.66) rotateY(-10deg) rotateZ(1deg); }
  .game-feature,
  .game-feature--reverse { min-height: 0; grid-template-columns: 1fr; gap: 48px; }
  .game-feature--reverse .feature-media,
  .game-feature--reverse .feature-copy { grid-column: 1; }
  .game-feature--reverse .feature-media { grid-row: 1; }
  .game-feature--reverse .feature-copy { grid-row: 2; }
  .feature-media { height: min(650px, 78vw); }
  .feature-copy { max-width: 620px; }
  .studio-intro { grid-template-columns: 1fr; }
  .studio-intro > p:last-child { margin-top: 35px; }
}

@media (max-width: 640px) {
  :root { --page: calc(100vw - 30px); --radius: 20px; }
  .hero { padding: 116px 0 60px; }
  .hero h1 { font-size: clamp(44px, 15.2vw, 66px); line-height: .89; }
  .eyebrow { margin-bottom: 22px; }
  .hero-bottomline { display: block; }
  .showcase { margin-top: 50px; }
  .carousel-stage { height: 490px; margin-right: -15px; margin-left: -15px; overflow: hidden; }
  .game-slide { width: calc(100vw - 54px); height: 450px; }
  .game-slide.is-prev { opacity: .35; transform: translate(-137%, -50%) scale(.78) rotateY(8deg); }
  .game-slide.is-next { opacity: .35; transform: translate(37%, -50%) scale(.78) rotateY(-8deg); }
  .game-slide.is-active:hover { transform: translate(-50%, -50%) scale(1); }
  .slide-label { right: 22px; bottom: 24px; left: 22px; }
  .slide-label span { position: static; margin-top: 12px; display: block; }
  .block-art-logo { top: 15%; width: 50%; }
  .block-art-golem { width: 52%; }
  .block-art-bomb { width: 25%; }
  .sudoku-slide-icon { top: 7%; right: 7%; width: 32%; }
  .carousel-controls { grid-template-columns: auto auto 1fr; gap: 14px; }
  .drag-hint { display: none; }
  .carousel-progress { grid-column: 1 / -1; grid-row: 2; }
  .games { padding: 100px 0 50px; }
  .section-heading { margin-bottom: 52px; }
  .section-heading h2,
  .studio h2,
  .contact h2 { font-size: clamp(44px, 13.5vw, 66px); line-height: .9; }
  html[lang="tr"] .studio h2 { font-size: clamp(32px, 9.7vw, 44px); line-height: .98; }
  .game-feature { padding: 48px 0 65px; gap: 38px; }
  .feature-media { min-height: 0; height: 112vw; max-height: 560px; }
  .feature-copy h3 { font-size: 55px; }
  .feature-copy .feature-lead { font-size: 19px !important; }
  .feature-actions { align-items: flex-start; }
  .feature-golem { width: 60%; }
  .feature-block-logo { width: 43%; }
  .studio { margin-top: 70px; padding: 95px 15px 80px; }
  .studio-columns { margin-top: 65px; grid-template-columns: 1fr; }
  .studio-columns article { min-height: 0; padding: 28px 0 35px; }
  .studio-columns article + article { padding-left: 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .studio-columns h3 { margin-top: 20px; }
  .contact { padding: 100px 0; }
  .contact-row { display: block; }
  .contact-button { width: 132px; height: 132px; margin-top: 44px; padding: 22px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer .footer-nav { grid-row: auto; }
  .site-footer .footer-legal { grid-column: 1; grid-row: auto; justify-self: start; flex-wrap: wrap; }
  .site-footer small { grid-column: 1; grid-row: auto; line-height: 1.6; }
}
