* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: #050505;
  font-family: "Sora", Arial, Helvetica, sans-serif;
}

/* ÜST HEADER */
.top-header {
  position: absolute;
  top: 28px;
  left: 38px;
  right: 38px;
  z-index: 120;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.studio-info {
  display: flex;
  align-items: center;
  min-width: 0;

  color: #050505;
  white-space: nowrap;
}

.studio-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: 190px;
}

.studio-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: #050505;
}

.brand-cat {
  width: 52px;
  height: auto;
  display: block;
  object-fit: contain;
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.studio-status {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  line-height: 1;

  color: rgba(5, 5, 5, 0.84);
  margin-right: 72px;
  cursor: default;
}

.studio-status::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #050505;
  border-radius: 999px;
  box-shadow:
    0 0 8px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(0, 0, 0, 0.14);
}

.studio-status:hover::before {
  animation: statusDotBlink 0.85s steps(1, end) infinite;
}

@keyframes statusDotBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  18% {
    opacity: 0.25;
    transform: scale(0.82);
  }

  32% {
    opacity: 1;
    transform: scale(1);
  }

  48% {
    opacity: 0.35;
    transform: scale(0.88);
  }

  64% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* LOCATION */
.studio-location {
  position: relative;
  display: inline-flex;
  align-items: center;

  width: 156px;
  height: 24px;

  color: #050505;
  text-decoration: none;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;

  overflow: hidden;

  transition:
    width 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

.studio-location.is-email {
  width: 285px;
}

.studio-location.has-switched:not(.is-email) {
  width: 156px;
}

.location-default,
.location-email {
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  color: #050505;
  white-space: nowrap;
  will-change: opacity, filter, transform;
}

.location-default {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-50%);
  text-transform: uppercase;
}

.location-email {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(-50%);
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: none;
}

.studio-location.is-email .location-default {
  animation: signOff 0.48s steps(1, end) forwards;
}

.studio-location.is-email .location-email {
  animation: signOn 0.62s steps(1, end) 0.12s forwards;
}

.studio-location.has-switched:not(.is-email) .location-email {
  animation: signOff 0.48s steps(1, end) forwards;
}

.studio-location.has-switched:not(.is-email) .location-default {
  animation: signOn 0.62s steps(1, end) 0.12s forwards;
}

@keyframes signOff {
  0% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
  }

  12% {
    opacity: 0.18;
    filter: blur(1px);
    transform: translateY(-49%);
  }

  24% {
    opacity: 0.9;
    filter: blur(0);
    transform: translateY(-50%);
  }

  38% {
    opacity: 0.08;
    filter: blur(2px);
    transform: translateY(-51%);
  }

  52% {
    opacity: 0.55;
    filter: blur(1px);
    transform: translateY(-50%);
  }

  68% {
    opacity: 0.12;
    filter: blur(2px);
    transform: translateY(-49%);
  }

  100% {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(-50%);
  }
}

@keyframes signOn {
  0% {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(-50%);
  }

  10% {
    opacity: 0.85;
    filter: blur(1px);
    transform: translateY(-49%);
  }

  18% {
    opacity: 0.12;
    filter: blur(2px);
    transform: translateY(-50%);
  }

  30% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
  }

  42% {
    opacity: 0.28;
    filter: blur(2px);
    transform: translateY(-51%);
  }

  56% {
    opacity: 0.9;
    filter: blur(0);
    transform: translateY(-50%);
  }

  70% {
    opacity: 0.55;
    filter: blur(1px);
    transform: translateY(-49%);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
  }
}

/* MARQUEE */
.header-marquee {
  flex: 0 0 clamp(300px, 32vw, 520px);
  position: relative;
  height: 30px;
  overflow: hidden;
  white-space: nowrap;

  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000000 10%,
    #000000 90%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000000 10%,
    #000000 90%,
    transparent 100%
  );
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: textMarquee 22s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 46px;
  flex: 0 0 auto;
  padding-right: 46px;
}

.marquee-group span {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #050505;
}

@keyframes textMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* NAVBAR */
.site-header {
  position: fixed;
  top: 86px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
}

.cult-navbar {
  position: relative;

  width: 96px;
  height: 56px;
  padding: 0 10px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;

  background: #ffffff;
  color: #050505;

  border: 1px solid #050505;
  border-radius: 0;
  overflow: hidden;

  box-shadow: none;

  transition:
    width 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
    padding 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
    gap 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.18s,
    transform 0.55s ease 0.12s;
}

.cult-navbar:hover,
.cult-navbar.is-open {
  width: 264px;
  padding: 0 18px;
  gap: 20px;
  transform: translateY(-1px);

  box-shadow: none;
}

.menu-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  border: none;
  background: transparent;
  color: #050505;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  z-index: 3;

  transition:
    opacity 0.35s ease 0.12s,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.cult-navbar:hover .menu-button,
.cult-navbar.is-open .menu-button {
  opacity: 0;
  transform: translate(-50%, 20%) scale(0.9);
  transition-delay: 0.18s;
}

.cult-navbar a {
  position: relative;
  z-index: 3;

  color: #050505;
  text-decoration: none;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-transform: uppercase;

  opacity: 0;
  pointer-events: none;
  filter: blur(5px);
  transform: translateY(-22px) scale(0.94);

  transition:
    opacity 0.45s ease 0.42s,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.42s,
    filter 0.45s ease 0.42s;
}

.cult-navbar:hover a,
.cult-navbar.is-open a {
  opacity: 0.95;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.cult-navbar:not(:hover):not(.is-open) {
  transition-delay: 0.28s;
}

.cult-navbar:not(:hover):not(.is-open) a {
  transition-delay: 0.08s;
}

.cult-navbar a:hover {
  opacity: 1;
}

.cult-navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: #050505;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.cult-navbar a:hover::after {
  transform: scaleX(1);
}

.cult-navbar::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 32%,
    rgba(0, 0, 0, 0.035) 46%,
    rgba(0, 0, 0, 0.085) 50%,
    rgba(0, 0, 0, 0.035) 54%,
    transparent 68%,
    transparent 100%
  );

  transform: translateX(-130%);
  opacity: 0;

  transition:
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.22s,
    opacity 0.42s ease 0.18s;

  pointer-events: none;
}

.cult-navbar:hover::before,
.cult-navbar.is-open::before {
  transform: translateX(130%);
  opacity: 0.55;
}

/* HERO */
main {
  width: 100%;
}

.hero-section {
  min-height: 100vh;
  padding: 180px 38px 64px;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 1.02fr);
  align-items: center;
  gap: 56px;
}

.hero-left {
  max-width: 740px;
}

.hero-eyebrow {
  margin: 0 0 22px 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.55);
}

.hero-title {
  margin: 0;
  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.35rem, 6.35vw, 7.05rem);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #050505;
  max-width: 11.6ch;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-logo {
  width: min(100%, 690px);
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* LARGE BUT NARROW */
@media (max-width: 1100px) {
  .studio-brand {
    margin-right: 120px;
  }

  .studio-status {
    margin-right: 54px;
  }

  .studio-location {
    width: 156px;
  }

  .studio-location.is-email {
    width: 255px;
  }

  .studio-location.has-switched:not(.is-email) {
    width: 156px;
  }

  .location-email {
    font-size: 12px;
    letter-spacing: 0.005em;
  }

  .brand-cat {
    width: 48px;
  }

  .header-marquee {
    flex-basis: clamp(260px, 28vw, 420px);
  }

  .cult-navbar {
    width: 94px;
  }

  .cult-navbar:hover,
  .cult-navbar.is-open {
    width: 252px;
    padding: 0 16px;
    gap: 18px;
  }

  .cult-navbar a {
    font-size: 14px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 1.02fr);
    gap: 44px;
  }

  .hero-title {
    max-width: 11.6ch;
  }

  .hero-logo {
    width: min(100%, 600px);
  }
}

/* TABLET */
@media (max-width: 768px) {
  .top-header {
    top: 22px;
    left: 0;
    right: 0;
    z-index: 130;

    justify-content: center;
    gap: 0;
  }

  .studio-info {
    width: 100%;
    justify-content: center;
  }

  .studio-status,
  .studio-location,
  .header-marquee,
  .studio-name {
    display: none;
  }

  .studio-brand {
    margin-right: 0;
    gap: 0;
  }

  .brand-cat {
    width: 58px;
    transform: translateY(0);
  }

  .site-header {
    top: 82px;
  }

  .cult-navbar {
    width: 92px;
    height: 54px;
  }

  .cult-navbar:hover,
  .cult-navbar.is-open {
    width: 246px;
    padding: 0 15px;
    gap: 16px;
  }

  .cult-navbar a {
    font-size: 14px;
    letter-spacing: 0.065em;
  }

  .menu-button {
    font-size: 13px;
    letter-spacing: 0.09em;
  }

  .hero-section {
    padding: 170px 24px 56px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-left {
    order: 2;
    max-width: 100%;
  }

  .hero-right {
    order: 1;
    justify-content: center;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.85rem, 9.1vw, 5rem);
  }

  .hero-logo {
    width: min(100%, 520px);
    max-height: none;
  }
}

/* MOBILE */
@media (max-width: 520px) {
  .top-header {
    top: 20px;
    left: 0;
    right: 0;

    justify-content: center;
    gap: 0;
  }

  .studio-info {
    width: 100%;
    justify-content: center;
    min-width: 0;
  }

  .studio-status,
  .studio-location,
  .header-marquee,
  .studio-name {
    display: none;
  }

  .studio-brand {
    margin-right: 0;
    gap: 0;
  }

  .brand-cat {
    width: 52px;
    transform: translateY(0);
  }

  .site-header {
    top: 72px;
    padding: 0 16px;
  }

  .cult-navbar {
    width: 90px;
    height: 52px;
  }

  .cult-navbar:hover,
  .cult-navbar.is-open {
    width: min(244px, calc(100vw - 36px));
    padding: 0 12px;
    gap: 14px;
  }

  .cult-navbar a {
    font-size: 13px;
    letter-spacing: 0.055em;
  }

  .menu-button {
    font-size: 13px;
    letter-spacing: 0.085em;
  }

  .hero-section {
    padding: 148px 16px 44px;
    min-height: auto;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-left {
    order: 2;
  }

  .hero-right {
    order: 1;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.38rem, 10.8vw, 3.85rem);
    line-height: 0.95;
  }

  .hero-eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .hero-logo {
    width: min(100%, 380px);
  }
}

/* VERY SMALL */
@media (max-width: 360px) {
  .top-header {
    top: 18px;
    left: 0;
    right: 0;
  }

  .brand-cat {
    width: 48px;
  }

  .site-header {
    top: 66px;
  }

  .cult-navbar {
    width: 86px;
    height: 50px;
  }

  .cult-navbar:hover,
  .cult-navbar.is-open {
    width: min(228px, calc(100vw - 24px));
    padding: 0 9px;
    gap: 10px;
  }

  .cult-navbar a {
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .menu-button {
    font-size: 12px;
  }

  .hero-title {
    font-size: 2.18rem;
  }

  .hero-logo {
    width: min(100%, 330px);
  }
}

/* =========================================================
   HERO FADE + GAMES SECTION
   ========================================================= */
.hero-section {
  --hero-fade: 0;

  opacity: calc(1 - var(--hero-fade));
  transform:
    translateY(calc(var(--hero-fade) * -34px))
    scale(calc(1 - (var(--hero-fade) * 0.025)));
  filter: blur(calc(var(--hero-fade) * 8px));
  transform-origin: center top;
  will-change: opacity, transform, filter;
}

/* =========================
   GAMES SECTION
========================= */
.hero-section {
  --hero-fade: 0;

  opacity: calc(1 - var(--hero-fade));
  filter: blur(calc(var(--hero-fade) * 10px));
  transform: translateY(calc(var(--hero-fade) * -34px)) scale(calc(1 - var(--hero-fade) * 0.025));

  transition:
    opacity 0.12s linear,
    filter 0.12s linear,
    transform 0.12s linear;
}

.games-section {
  position: relative;

  min-height: 100vh;
  padding: 138px 38px 92px;

  background: #ffffff;
  color: #050505;

  overflow: hidden;
}

.games-section::before {
  content: "";
  position: absolute;
  inset: auto -10vw 8% auto;

  width: 42vw;
  height: 42vw;

  background: #e5231b;
  border-radius: 999px;

  opacity: 0.08;
  pointer-events: none;
}

.games-inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.games-heading-row {
  max-width: 900px;
  margin-bottom: 44px;
}

.games-eyebrow {
  margin: 0 0 14px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(5, 5, 5, 0.54);
}

.games-heading {
  margin: 0;

  max-width: 780px;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.1rem, 6.4vw, 7.2rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.012em;

  color: #050505;
}

/* Tatlı oyun kartı */
.game-card {
  position: relative;

  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;

  padding: 26px;

  background: #fff7d8;
  border: 2px solid #050505;

  box-shadow:
    8px 8px 0 #050505;

  transition:
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.42s cubic-bezier(0.16, 1, 0.3, 1);
}

.game-card:hover {
  transform: translate(-3px, -3px) rotate(-0.35deg);
  box-shadow:
    12px 12px 0 #050505;
}

/* Görsel tarafı */
.game-art-side {
  position: relative;
}

.game-art-sticker {
  position: absolute;
  left: 18px;
  top: -18px;
  z-index: 4;

  padding: 9px 13px 8px;

  background: #e5231b;
  color: #ffffff;

  border: 2px solid #050505;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transform: rotate(-4deg);

  box-shadow: 4px 4px 0 #050505;
}

.game-art-wrap {
  position: relative;

  aspect-ratio: 16 / 10;

  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.06), transparent 36%),
    #ffffff;

  border: 2px solid #050505;

  overflow: hidden;
}

.game-art-wrap::after {
  content: "";
  position: absolute;
  inset: 12px;

  border: 1px dashed rgba(5, 5, 5, 0.26);

  pointer-events: none;
}

.game-art {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;

  filter: saturate(1.05) contrast(1.02);

  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.55s ease;
}

.game-card:hover .game-art {
  transform: scale(1.035);
  filter: saturate(1.16) contrast(1.04);
}

/* Yazı tarafı */
.game-content {
  min-width: 0;
  padding: 12px 8px 10px;
}

.game-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 20px;
}

.game-meta span {
  display: inline-flex;
  align-items: center;

  padding: 8px 10px 7px;

  background: #ffffff;
  border: 1px solid #050505;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-title {
  margin: 0 0 18px;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.6rem, 7vw, 8.4rem);
  line-height: 0.82;
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: uppercase;

  color: #050505;
}

.game-description {
  max-width: 620px;
  margin: 0;

  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  font-weight: 700;

  color: rgba(5, 5, 5, 0.72);
}

.game-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;

  margin-top: 30px;
}

.steam-button {
  min-width: 148px;
  height: 52px;
  padding: 0 18px;

  border: 2px solid #050505;
  background: #050505;
  color: #ffffff;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  cursor: not-allowed;

  opacity: 1;

  box-shadow: 5px 5px 0 #e5231b;
}

.game-note {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: rgba(5, 5, 5, 0.54);
}

/* Games responsive */
@media (max-width: 1100px) {
  .games-section {
    padding: 128px 28px 82px;
  }

  .game-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .game-content {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .games-section {
    padding: 104px 24px 72px;
  }

  .games-heading-row {
    margin-bottom: 34px;
  }

  .games-heading {
    font-size: clamp(2.9rem, 12vw, 5.8rem);
  }

  .game-card {
    padding: 18px;
    box-shadow: 6px 6px 0 #050505;
  }

  .game-card:hover {
    transform: none;
    box-shadow: 6px 6px 0 #050505;
  }

  .game-art-sticker {
    left: 14px;
    top: -14px;
    font-size: 9px;
    box-shadow: 3px 3px 0 #050505;
  }

  .game-title {
    font-size: clamp(3.2rem, 14vw, 6rem);
  }

  .game-description {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .games-section {
    padding: 92px 16px 64px;
  }

  .games-eyebrow {
    font-size: 11px;
  }

  .games-heading {
    font-size: clamp(2.55rem, 13vw, 4.6rem);
  }

  .game-card {
    padding: 14px;
    box-shadow: 5px 5px 0 #050505;
  }

  .game-art-wrap {
    aspect-ratio: 4 / 3;
  }

  .game-meta {
    gap: 6px;
  }

  .game-meta span {
    font-size: 9px;
    padding: 7px 8px 6px;
  }

  .steam-button {
    width: 100%;
  }

  .game-note {
    width: 100%;
  }
}

/* =========================
   LOWPOLY CULT FOOTER
========================= */
.lc-footer {
  position: relative;
  min-height: 100vh;
  padding: 110px 38px 34px;

  background: #e5231b;
  color: #ffffff;

  overflow: hidden;
}

/* üst çizgi */
.lc-footer-topline {
  position: relative;
  z-index: 3;

  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
}

.lc-footer-topline span {
  display: inline-block;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: #ffffff;
}

/* ana üst alan */
.lc-footer-hero {
  position: relative;
  z-index: 3;

  min-height: 360px;
  padding: 48px 0 62px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 18vw, 260px);
  align-items: center;
  gap: 40px;
}

.lc-footer-hero-copy {
  min-width: 0;
}

.lc-footer-eyebrow {
  margin: 0 0 18px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.78);
}

.lc-footer-main-link {
  display: inline-block;

  color: #ffffff;
  text-decoration: none;

  cursor: pointer;
}

.lc-footer-main-text {
  display: inline-block;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(4.4rem, 11vw, 11rem);
  line-height: 0.88;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;

  color: #ffffff;

  -webkit-text-stroke: 1px #ffffff;
  text-shadow:
    0 1px 0 #ffffff,
    0 0 22px rgba(255, 255, 255, 0.18);
}

.lc-letter {
  display: inline-block;
  transform: translateY(0) rotate(0deg);
  transform-origin: center bottom;
  will-change: transform, opacity;
}

.lc-space {
  display: inline-block;
  width: 0.2em;
}

/* hızlı harf harf Let's Talk animasyonu */
.lc-footer-main-link:hover .lc-letter {
  animation: lcLetterFlip 0.38s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i) * 0.022s);
}

@keyframes lcLetterFlip {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scaleY(1);
  }

  30% {
    opacity: 0.72;
    transform: translateY(-0.22em) rotate(-4deg) scaleY(1.08);
  }

  55% {
    opacity: 1;
    transform: translateY(0.06em) rotate(3deg) scaleY(0.94);
  }

  78% {
    transform: translateY(-0.025em) rotate(-1deg) scaleY(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scaleY(1);
  }
}

.lc-footer-main-link:hover .lc-footer-main-text {
  animation: lcTalkHit 0.24s steps(1, end);
}

@keyframes lcTalkHit {
  0% {
    filter: blur(0);
  }

  38% {
    filter: blur(1px);
  }

  64% {
    filter: blur(0);
  }

  100% {
    filter: blur(0);
  }
}

.lc-footer-subtext {
  margin: 22px 0 0;
  max-width: 620px;

  font-size: 16px;
  line-height: 1.55;

  color: rgba(255, 255, 255, 0.82);
}

/* Desktop kedisi: sağda, yazıların üstüne binmez */
.lc-footer-cat-zone {
  justify-self: end;
  align-self: center;

  width: clamp(132px, 17vw, 230px);
  height: clamp(132px, 17vw, 230px);

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;
}

.lc-footer-cat-zone img {
  display: block;

  width: 100%;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24))
    drop-shadow(0 0 0 #ffffff);
}

/* içerik grid */
.lc-footer-grid {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.9fr 0.9fr;
  gap: 28px;

  padding: 34px 0 38px;

  border-top: 1px solid rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
}

.lc-footer-block {
  min-width: 0;
}

.lc-footer-block-large {
  padding-right: 10px;
}

.lc-footer-label {
  margin: 0 0 18px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.78);
}

.lc-footer-big-link {
  display: inline-block;

  color: #ffffff;
  text-decoration: none;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 4.1rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.01em;
  word-break: break-word;

  -webkit-text-stroke: 0.45px #ffffff;

  transition:
    opacity 0.24s ease,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.lc-footer-text,
.lc-footer-list {
  margin: 0;
  padding: 0;

  color: #ffffff;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2.3rem);
  line-height: 1.05;
  font-weight: 400;

  list-style: none;

  -webkit-text-stroke: 0.35px #ffffff;
}

.lc-footer-list li {
  margin-bottom: 8px;
}

.lc-footer-block a,
.lc-footer-bottom-links a {
  position: relative;
  display: inline-block;

  color: #ffffff;
  text-decoration: none;

  transition:
    opacity 0.24s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Footer linklerinin altında beyaz çizgi hover */
.lc-footer-block a::after,
.lc-footer-bottom-links a::after {
  content: "";
  position: absolute;

  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: #ffffff;

  transform: scaleX(0);
  transform-origin: left center;

  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

.lc-footer-block a:hover::after,
.lc-footer-bottom-links a:hover::after {
  transform: scaleX(1);
}

.lc-footer-block a:hover {
  opacity: 0.72;
  transform: translateX(4px);
}

.lc-footer-big-link:hover {
  opacity: 0.72;
  transform: translateX(4px);
}

.lc-footer-block a[aria-disabled="true"] {
  cursor: default;
  opacity: 0.82;
}

.lc-footer-block a[aria-disabled="true"]:hover {
  transform: none;
}

/* responsive navigation kedisi desktop'ta gizli */
.lc-footer-nav-cat {
  display: none;
}

/* alt kısım */
.lc-footer-bottom {
  position: relative;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;

  padding-top: 18px;
}

.lc-footer-bottom p {
  margin: 0;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.78);
}

.lc-footer-bottom span {
  color: #ffffff;
}

.lc-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.lc-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  transition:
    color 0.24s ease,
    opacity 0.24s ease;
}

.lc-footer-bottom-links a:hover {
  color: #ffffff;
  opacity: 1;
}

/* ===== responsive ===== */
@media (max-width: 1100px) {
  .lc-footer {
    padding: 96px 28px 32px;
  }

  .lc-footer-hero {
    grid-template-columns: minmax(0, 1fr) clamp(126px, 18vw, 190px);
    gap: 28px;
  }

  .lc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 28px;
  }
}

@media (max-width: 768px) {
  .lc-footer {
    min-height: auto;
    padding: 84px 24px 28px;
  }

  .lc-footer-hero {
    min-height: auto;
    padding: 34px 0 42px;

    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Responsive'de desktop kedisini gizle */
  .lc-footer-hero .lc-footer-cat-zone {
    display: none;
  }

  .lc-footer-main-text {
    font-size: clamp(3.6rem, 15vw, 7rem);
    white-space: normal;
  }

  .lc-footer-subtext {
    max-width: 100%;
    font-size: 15px;
  }

  .lc-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 32px;
  }

  .lc-footer-big-link {
    font-size: clamp(1.9rem, 8vw, 3.2rem);
  }

  .lc-footer-text,
  .lc-footer-list {
    font-size: clamp(1.3rem, 6vw, 2rem);
  }

  /* Responsive'de kedi Navigation linklerinin sağında */
  .lc-footer-nav-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .lc-footer-nav-layout .lc-footer-list {
    flex: 1 1 auto;
  }

  .lc-footer-nav-cat {
    flex: 0 0 auto;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    width: 138px;
    margin-top: -18px;

    pointer-events: none;
  }

  .lc-footer-nav-cat img {
    display: block;

    width: 100%;
    height: auto;
    object-fit: contain;

    transform: rotate(-4deg);

    filter:
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24))
      drop-shadow(0 0 0 #ffffff);
  }

  .lc-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .lc-footer-bottom-links {
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .lc-footer {
    padding: 76px 16px 24px;
  }

  .lc-footer-topline {
    padding-bottom: 12px;
  }

  .lc-footer-main-text {
    font-size: clamp(3rem, 16vw, 5.3rem);
    line-height: 0.94;
  }

  .lc-footer-subtext {
    margin-top: 16px;
    font-size: 14px;
  }

  .lc-footer-label {
    margin-bottom: 14px;
  }

  .lc-footer-big-link {
    font-size: clamp(1.7rem, 9vw, 2.8rem);
  }

  .lc-footer-text,
  .lc-footer-list {
    font-size: clamp(1.15rem, 7vw, 1.8rem);
  }

  .lc-footer-nav-layout {
    gap: 14px;
  }

  .lc-footer-nav-cat {
    width: 118px;
    margin-top: -10px;
  }

  .lc-footer-bottom p,
  .lc-footer-bottom-links a {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 390px) {
  .lc-footer-nav-cat {
    width: 100px;
    margin-top: -6px;
  }
}

@media (max-width: 520px) {
  .lc-footer-cat-zone {
    right: 16px;
    bottom: 82px;

    width: 116px;
    height: 116px;

    transform: rotate(-5deg);
  }

  .lc-footer-bottom {
    padding-right: 112px;
  }
}

@media (max-width: 390px) {
  .lc-footer-cat-zone {
    right: 12px;
    bottom: 78px;

    width: 104px;
    height: 104px;
  }

  .lc-footer-bottom {
    padding-right: 96px;
  }
}

/* GAME CARD CLICKABLE LINK */
.game-card {
  cursor: pointer;
}

.game-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: block;

  text-decoration: none;
  color: inherit;
}

.game-art-side,
.game-content {
  position: relative;
  z-index: 3;

  pointer-events: none;
}

.steam-button {
  position: relative;
  z-index: 4;

  pointer-events: auto;
  cursor: not-allowed;
}

.game-card:has(.steam-button:hover) {
  cursor: default;
}



/* =========================
   FIRST VISIT LOADER
========================= */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999999;

  display: none;
  place-items: center;

  padding: 24px;

  background:
    radial-gradient(circle at 20% 18%, rgba(229, 35, 27, 0.10), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(5, 5, 5, 0.08), transparent 26%),
    #ffffff;

  color: #050505;
  overflow: hidden;

  transition:
    opacity 0.46s ease,
    visibility 0.46s ease;
}

html.loader-should-run .site-loader {
  display: grid;
}

html.loader-skip .site-loader {
  display: none !important;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.loader-active {
  overflow: hidden;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 26px;

  border: 1px dashed rgba(5, 5, 5, 0.16);

  pointer-events: none;
}

.site-loader::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  width: min(72vw, 720px);
  height: min(72vw, 720px);

  background: #fff7d8;
  border: 2px solid rgba(5, 5, 5, 0.08);

  transform: translate(-50%, -50%) rotate(-8deg);

  z-index: 0;
  pointer-events: none;
}

.site-loader-card {
  position: relative;
  z-index: 2;

  width: min(100%, 620px);

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.site-loader-cat {
  width: clamp(72px, 12vw, 124px);
  height: auto;

  display: block;
  margin-bottom: 22px;

  transform-origin: center bottom;

  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.20));

  animation: siteLoaderCatFloat 1.05s steps(2, end) infinite;
}

@keyframes siteLoaderCatFloat {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-8px) rotate(3deg);
  }
}

.site-loader-kicker {
  margin: 0 0 12px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(5, 5, 5, 0.58);
}

.site-loader-title {
  max-width: 9.8ch;
  margin: 0;

  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(3.6rem, 10vw, 8.6rem);
  line-height: 0.86;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;

  color: #050505;
}

.site-loader-progress {
  position: relative;

  width: min(100%, 420px);
  height: 16px;

  margin-top: 32px;

  background: #ffffff;
  border: 2px solid #050505;

  overflow: hidden;

  box-shadow: 4px 4px 0 #050505;
}

.site-loader-progress-fill {
  position: absolute;
  left: 0;
  top: 0;

  width: 0%;
  height: 100%;

  display: block;

  background:
    repeating-linear-gradient(
      90deg,
      #e5231b 0 14px,
      #ff726b 14px 22px
    );

  transition: width 0.16s linear;
}

.site-loader-row {
  width: min(100%, 420px);

  margin-top: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: rgba(5, 5, 5, 0.58);
}

.site-loader-row strong {
  color: #050505;
  font-weight: 800;
}

@media (max-width: 520px) {
  .site-loader {
    padding: 18px;
  }

  .site-loader::before {
    inset: 16px;
  }

  .site-loader-title {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .site-loader-progress,
  .site-loader-row {
    width: min(100%, 320px);
  }

  .site-loader-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   LOWPOLY CULT PAGE SLIDE TRANSITION
   Old page fades right, new page comes from left
========================= */

html,
body {
  overflow-x: hidden;
}

body.lc-page-leaving {
  pointer-events: none;
}

/* Sayfa ilk gelirken soldan içeri girer */
body:not(.lc-page-loaded):not(.lc-page-leaving)
  > *:not(script):not(style):not(link):not(.site-loader) {
  opacity: 0;
  transform: translateX(-7vw) scale(0.985);
  filter: blur(6px);
}

/* Sayfa yüklendiğinde görünür */
body.lc-page-loaded
  > *:not(script):not(style):not(link):not(.site-loader) {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);

  transition:
    opacity 0.58s ease,
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.58s ease;
}

/* Linke basınca mevcut sayfa sağa kayarak kaybolur */
body.lc-page-leaving
  > *:not(script):not(style):not(link):not(.site-loader) {
  opacity: 0;
  transform: translateX(8vw) scale(0.985);
  filter: blur(6px);

  transition:
    opacity 0.42s ease,
    transform 0.56s cubic-bezier(0.76, 0, 0.24, 1),
    filter 0.42s ease;
}

@media (prefers-reduced-motion: reduce) {
  body:not(.lc-page-loaded):not(.lc-page-leaving)
    > *:not(script):not(style):not(link):not(.site-loader),
  body.lc-page-loaded
    > *:not(script):not(style):not(link):not(.site-loader),
  body.lc-page-leaving
    > *:not(script):not(style):not(link):not(.site-loader) {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER
   ========================================================= */
.lc-cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999998;

  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  max-width: 640px;
  margin: 0 auto;
  padding: 18px 20px;

  background: #ffffff;
  border: 2px solid #050505;
  box-shadow: 6px 6px 0 #e5231b;

  font-family: "Sora", Arial, Helvetica, sans-serif;
}

.lc-cookie-banner.is-visible {
  display: flex;
}

.lc-cookie-text {
  flex: 1 1 260px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(5, 5, 5, 0.82);
}

.lc-cookie-text a {
  color: #050505;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lc-cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.lc-cookie-accept,
.lc-cookie-decline {
  height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #050505;
  font-family: "Anton", "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;

  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.lc-cookie-accept {
  background: #050505;
  color: #ffffff;
  box-shadow: 4px 4px 0 #e5231b;
}

.lc-cookie-accept:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #e5231b;
}

.lc-cookie-decline {
  background: #ffffff;
  color: #050505;
}

.lc-cookie-decline:hover {
  background: #050505;
  color: #ffffff;
}

@media (max-width: 520px) {
  .lc-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 4px 4px 0 #e5231b;
  }

  .lc-cookie-text {
    flex: 0 1 auto;
  }

  .lc-cookie-actions {
    justify-content: stretch;
  }

  .lc-cookie-accept,
  .lc-cookie-decline {
    flex: 1 1 0;
  }
}

