:root {
  --bg: #ffffff;
  --bg-soft: #f4f8ff;
  --bg-blue: #eaf5ff;
  --ink: #132033;
  --text: #132033;
  --muted: #64748b;
  --line: #dce5f2;
  --surface: #ffffff;
  --surface-strong: #f8fbff;
  --navy: #12243f;
  --cyan: #20c7d9;
  --green: #42d77d;
  --yellow: #ffd34f;
  --orange: #ff944d;
  --shadow: 0 24px 70px rgba(18, 36, 63, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(32, 199, 217, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 199, 217, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #ffffff 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
}

main {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 62%, rgba(255, 211, 79, 0.2) 62% 70%, transparent 70%),
    linear-gradient(135deg, transparent 0 56%, rgba(66, 215, 125, 0.17) 56% 64%, transparent 64%),
    linear-gradient(135deg, transparent 0 68%, rgba(32, 199, 217, 0.18) 68% 76%, transparent 76%);
  background-size: 380px 380px, 460px 460px, 540px 540px;
  opacity: 0.72;
  animation: blockPattern 22s linear infinite;
}

::selection {
  background: rgba(32, 199, 217, 0.24);
}

[data-lang="tr"] .lang-en {
  display: none;
}

[data-lang="en"] .lang-tr {
  display: none;
}

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

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

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

button {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(220, 229, 242, 0.86);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
  font-family: Sora, sans-serif;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(18, 36, 63, 0.12);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 10px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  background: var(--bg-soft);
  color: var(--navy);
  transform: translateY(-1px);
}

.lang-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(18, 36, 63, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.lang-btn:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

body.lang-switching .lang-btn {
  transform: rotateY(180deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 82px 0 56px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-backdrop::before,
.hero-backdrop::after {
  position: absolute;
  content: "";
  border-radius: 28px;
  transform: rotate(12deg);
}

.hero-backdrop::before {
  right: -120px;
  top: 70px;
  width: 420px;
  height: 420px;
  background:
    linear-gradient(90deg, var(--yellow) 0 25%, var(--green) 25% 50%, var(--cyan) 50% 75%, var(--orange) 75%);
  opacity: 0.18;
}

.hero-backdrop::after {
  left: -140px;
  bottom: 20px;
  width: 340px;
  height: 220px;
  background:
    linear-gradient(90deg, var(--cyan) 0 33%, var(--green) 33% 66%, var(--yellow) 66%);
  opacity: 0.14;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 70px;
}

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

h1,
h2,
h3 {
  font-family: Sora, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 810px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.15rem, 6.1vw, 6.4rem);
  font-weight: 800;
  line-height: 0.98;
}

.game-title {
  position: relative;
}

.game-title::after {
  display: block;
  width: min(360px, 70%);
  height: 12px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--yellow));
  content: "";
  animation: underlineSlide 4.8s ease-in-out infinite;
}

.lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: #35445a;
  font-size: clamp(1.04rem, 1.45vw, 1.16rem);
  line-height: 1.8;
}

.lead-compact {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions,
.game-card-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 36, 63, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(18, 36, 63, 0.26);
}

.btn-ghost {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.play-pulse {
  animation: pulsePrimary 2.8s ease-in-out infinite;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 36px 0 0;
}

.proof-grid div {
  min-height: 106px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(18, 36, 63, 0.07);
}

.proof-grid dt {
  color: var(--navy);
  font-family: Sora, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
}

.proof-grid dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.4;
}

.product-showcase {
  display: grid;
  gap: 18px;
}

.showcase-frame {
  position: relative;
  isolation: isolate;
  width: min(100%, 465px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
  box-shadow: var(--shadow);
}

.showcase-frame::before {
  position: absolute;
  inset: 42px -22px auto auto;
  z-index: -1;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, var(--yellow) 0 50%, var(--green) 50%),
    linear-gradient(90deg, var(--cyan) 0 50%, var(--orange) 50%);
  background-size: 100% 50%, 100% 50%;
  background-position: 0 0, 0 100%;
  background-repeat: no-repeat;
  content: "";
  transform: rotate(10deg);
  animation: blockFloat 5.5s ease-in-out infinite;
}

.showcase-art {
  width: 100%;
  aspect-ratio: 0.66;
  object-fit: cover;
  border: 10px solid #101a2c;
  border-radius: 28px;
  background: #101a2c;
}

.showcase-panel {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 3;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(220, 229, 242, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(18, 36, 63, 0.16);
  backdrop-filter: blur(18px);
}

.showcase-panel img {
  width: 54px;
  height: 54px;
  border-radius: 15px;
}

.showcase-panel strong {
  display: block;
  color: var(--navy);
  font-family: Sora, sans-serif;
  font-size: 0.98rem;
}

.showcase-panel span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.release-strip,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.release-strip {
  justify-content: center;
}

.release-strip span,
.trust-row span {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(18, 36, 63, 0.06);
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 8px 0 48px;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(244, 248, 255, 0.82), rgba(255, 255, 255, 0));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(300px, 0.5fr);
  align-items: end;
  gap: 42px;
  margin-bottom: 30px;
}

.section-kicker {
  margin: 0 0 12px;
  color: #168b99;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.contact-band h2,
.studio-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 4.15rem);
  line-height: 1.02;
}

.section-lead,
.studio-panel p,
.contact-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.trust-row {
  justify-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(18, 36, 63, 0.08);
}

.games-grid {
  display: grid;
  gap: 18px;
}

.game-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.game-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: var(--bg-blue);
}

.game-media video,
.game-media img.game-media-image {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.game-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(18, 36, 63, 0.38));
  content: "";
}

.game-media-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(18, 36, 63, 0.16);
}

.game-card-body {
  padding: clamp(24px, 4vw, 46px);
}

.game-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.game-icon {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 36, 63, 0.14);
}

.game-chip {
  margin: 0;
  color: #168b99;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.game-card h3 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1;
}

.game-desc {
  margin: 0;
  color: #35445a;
  font-size: 1rem;
}

.game-desc + .game-desc {
  margin-top: 10px;
  color: var(--muted);
}

.features-title {
  margin: 24px 0 10px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.feature-leaf {
  min-height: 120px;
  padding: 14px;
  border-left: 4px solid var(--cyan);
  border-radius: 12px;
  background: var(--surface-strong);
}

.feature-leaf:nth-child(2) {
  border-left-color: var(--green);
}

.feature-leaf:nth-child(3) {
  border-left-color: var(--yellow);
}

.feature-leaf:nth-child(4) {
  border-left-color: var(--orange);
}

.feature-leaf h4 {
  margin: 0;
  color: var(--navy);
  font-size: 0.94rem;
}

.feature-leaf p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.game-card-actions {
  margin-top: 22px;
}

.feature-section {
  background: #f5fbff;
}

.process-grid {
  display: grid;
  gap: 14px;
}

.process-card {
  display: grid;
  grid-template-columns: 72px minmax(170px, 0.32fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(18, 36, 63, 0.07);
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #fff;
  font-family: Sora, sans-serif;
  font-weight: 800;
}

.process-card:nth-child(2) span {
  background: linear-gradient(135deg, var(--green), var(--yellow));
  color: var(--navy);
}

.process-card:nth-child(3) span {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--navy);
}

.process-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
}

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

.studio-panel,
.contact-band,
.info-card,
.card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.studio-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.56fr);
  gap: 38px;
  align-items: center;
  padding: clamp(24px, 5vw, 56px);
  border-radius: 30px;
}

.studio-panel p {
  margin-top: 18px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  color: var(--navy);
  font-weight: 850;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  padding: clamp(24px, 5vw, 52px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(32, 199, 217, 0.12), rgba(255, 211, 79, 0.12)),
    #fff;
}

.contact-band p {
  margin-top: 14px;
  max-width: 680px;
}

.contact-actions {
  justify-content: flex-end;
  min-width: 240px;
}

.site-footer {
  padding: 26px 0 40px;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-copy p,
.site-footer p {
  margin: 0;
}

.page-main {
  min-height: 62vh;
  padding: 70px 0 90px;
}

.info-card,
.card {
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
}

.card + .card {
  margin-top: 16px;
}

.card h1,
.card h2,
.card h3,
.info-card h1 {
  margin-top: 0;
  color: var(--navy);
}

.card p,
.card li,
.info-card p {
  color: var(--muted);
}

.policy-list {
  padding-left: 1.2rem;
}

.game-detail-hero {
  padding-bottom: 48px;
}

.game-detail-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.game-icon-wrap {
  display: flex;
  justify-content: center;
}

.game-icon-large {
  width: min(310px, 70vw);
  border-radius: 42px;
  box-shadow: var(--shadow);
}

.video-wrap {
  margin: 20px 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #101a2c;
  box-shadow: var(--shadow);
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.stack-bars {
  display: grid;
  gap: 12px;
}

.stack-bar {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.stack-bar-trigger {
  width: 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.stack-bar-trigger h2 {
  margin: 0;
}

.stack-bar-content {
  padding: 0 18px 18px;
  color: var(--muted);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-i18n] {
  transition: opacity 180ms ease;
}

body.lang-switching [data-i18n] {
  opacity: 0.28;
}

@keyframes underlineSlide {
  0%,
  100% {
    transform: scaleX(0.72);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes pulsePrimary {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(18, 36, 63, 0.18), 0 0 0 0 rgba(32, 199, 217, 0.2);
  }
  50% {
    box-shadow: 0 18px 40px rgba(18, 36, 63, 0.14), 0 0 0 12px rgba(32, 199, 217, 0);
  }
}

@keyframes blockPattern {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 380px 380px, -460px 460px, 540px -540px;
  }
}

@keyframes blockFloat {
  0%,
  100% {
    transform: translateY(0) rotate(10deg);
  }
  50% {
    transform: translateY(-14px) rotate(6deg);
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    grid-template-columns: auto auto;
    padding: 10px 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-grid,
  .section-head,
  .game-card,
  .studio-panel,
  .contact-band,
  .game-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-showcase {
    max-width: 560px;
  }

  .game-media,
  .game-media video,
  .game-media img.game-media-image {
    min-height: 380px;
  }

  .process-card {
    grid-template-columns: 64px 1fr;
  }

  .process-card p {
    grid-column: 2;
  }

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .nav-wrap {
    gap: 12px;
    min-height: 66px;
  }

  .brand span {
    max-width: 120px;
    white-space: nowrap;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(2.55rem, 12.4vw, 4rem);
  }

  .proof-grid,
  .game-features {
    grid-template-columns: 1fr;
  }

  .showcase-frame {
    padding: 12px;
    border-radius: 28px;
  }

  .showcase-frame::before {
    right: -6px;
    width: 104px;
    height: 104px;
  }

  .hero-backdrop::before {
    right: -230px;
  }

  .showcase-art {
    border-width: 7px;
    border-radius: 22px;
    aspect-ratio: 0.74;
  }

  .showcase-panel {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,
  .contact-band h2,
  .studio-panel h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .game-media,
  .game-media video,
  .game-media img.game-media-image {
    min-height: 320px;
  }

  .process-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-card p {
    grid-column: auto;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
