:root {
  --bg: #140d08;
  --text: #fff4e8;
  --muted: #d8b899;
  --line: rgba(255, 190, 99, .16);
  --glass: rgba(31, 16, 10, .56);
  --shadow: 0 20px 60px rgba(0, 0, 0, .45);
  --r: 22px;
}

.lp {
  background: var(--bg);
  color: var(--text);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Scenes */
.scene {
  position: relative;
  padding: 96px 0;
}

.scene-hero {
  padding: 0;
  min-height: calc(100svh - 64px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.scene-media {
  position: absolute;
  inset: 0;
}

.scene-media img,
.scene-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

.scene-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(56, 189, 248, .14), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(167, 139, 250, .12), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .75));
}

.scene-content {
  position: relative;
  padding: 120px 20px;
}

.kicker {
  letter-spacing: .20em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.03;
  margin: 14px 0 10px;
}

.subhead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 720px;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.btn-primary {
  background: rgba(217, 83, 1, .18);
  border: 1px solid rgba(255, 190, 99, .24);
  color: #fff7ee;
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--text);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  opacity: .75;
}

.scroll-hint span {
  display: block;
  width: 18px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  position: relative;
}

.scroll-hint span:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
  position: absolute;
  left: 50%;
  top: 7px;
  transform: translateX(-50%);
  animation: dot 1.4s infinite;
}

@keyframes dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0)
  }

  20% {
    opacity: 1
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px)
  }
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

.split-text .h2 {
  font-size: clamp(26px, 2.8vw, 40px);
  margin: 0 0 10px;
}

.split-text .p {
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}

.mini-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-badges span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.split-media img {
  width: 100%;
  height: auto;
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* Sticky story */
.scene-sticky {
  padding: 110px 0;
}

.sticky-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

.sticky-media {
  position: sticky;
  top: 84px;
  height: calc(100svh - 120px);
  display: flex;
  align-items: center;
}

.media-frame {
  width: 100%;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/10;
  position: relative;
}

.media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .45s ease, transform .75s ease;
}

.media.active {
  opacity: 1;
  transform: scale(1);
}

.sticky-steps .step {
  padding: 18px 18px;
  margin-bottom: 14px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.sticky-steps h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.sticky-steps p {
  margin: 0 0 10px;
  color: var(--muted);
}

.sticky-steps ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

/* Video */
.video-frame {
  margin-top: 14px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  padding-bottom: 56.25%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Posts */
.row-between {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  padding-bottom: 2px;
}

.posts-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  transition: transform .25s ease;
}

.post-card:hover {
  transform: translateY(-2px);
}

.post-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.post-body {
  padding: 14px;
}

.meta {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.excerpt {
  font-size: 13px;
  color: var(--muted);
}

/* CTA */
.scene-cta .cta {
  border-radius: calc(var(--r) + 6px);
  border: 1px solid var(--line);
  background: radial-gradient(circle at 20% 10%, rgba(213, 45, 0, .18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(255, 163, 0, .16), transparent 55%),
    rgba(255, 255, 255, .04);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.badge {
  text-decoration: none;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .06);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax (light) */
.parallax {
  transform: translateY(var(--py, 0px));
  transition: transform .12s linear;
}

/* Responsive */
@media (max-width: 900px) {

  .split,
  .sticky-grid {
    grid-template-columns: 1fr;
  }

  .sticky-media {
    position: relative;
    top: auto;
    height: auto;
    margin-bottom: 14px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .media,
  .parallax {
    transition: none !important;
    transform: none !important;
  }

  .scroll-hint span:after {
    animation: none !important;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 118%;
  /* Crops the bottom 18% to hide baked-in text */
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transform: scale(1.03);
  transform-origin: center top;
  filter: saturate(1.05) contrast(1.05);
}

/* Video açılırken poster + yumuşak fade hissi */
.scene-hero .scene-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .55));
  pointer-events: none;
}

/* Mobilde performans için hero padding azalt */
@media (max-width: 900px) {
  .scene-content {
    padding: 96px 20px;
  }
}

/* HERO sticky sahnesi: scroll ile küçülen başlık */
.hero-sticky {
  min-height: 170svh;
  /* “pin” efekti için sahne uzun */
  padding: 0;
}

.hero-sticky .scene-media {
  position: sticky;
  top: 0;
  /* Changed from 64px to 0 to eliminate top gap */
  height: 100svh;
  /* Changed to fill full viewport height */
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.06);
}

.hero-pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  /* metin tıklanabilir olsun diye içeride geri açacağız */
}

.hero-pin .scene-content {
  pointer-events: auto;
}

/* Metin premium spacing */
.hero-headline {
  will-change: transform, opacity;
  transform-origin: left top;
}

.hero-subhead,
.hero-cta {
  will-change: transform, opacity;
}

/* Scroll ilerledikçe JS bunları güncelleyecek */
.hero-sticky {
  --heroP: 0;
  /* 0..1 */
}

/* Headline küçülme + yukarı sabitlenme hissi */
.hero-sticky .hero-headline {
  transform:
    translateY(calc(var(--heroP) * -42px)) scale(calc(1 - (var(--heroP) * 0.18)));
}

.hero-sticky .hero-subhead {
  opacity: calc(1 - (var(--heroP) * 0.85));
  transform: translateY(calc(var(--heroP) * -10px));
}

.hero-sticky .hero-cta {
  opacity: calc(1 - (var(--heroP) * 0.92));
  transform: translateY(calc(var(--heroP) * -8px));
}

.hero-sticky .scroll-hint {
  opacity: calc(1 - (var(--heroP) * 1.2));
  transform: translate(-50%, calc(var(--heroP) * 10px));
}

/* Media’ya hafif zoom-out (Apple hissi) */
.hero-sticky .hero-fallback {
  transform: scale(calc(1.06 - (var(--heroP) * 0.05)));
}

/* Premium overlay’ler */
.premium-grain {
  position: absolute;
  inset: 0;
  background-image: url("/assets/grain.png");
  background-size: 260px 260px;
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.premium-sweep {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .10), transparent 42%),
    radial-gradient(circle at 70% 50%, rgba(56, 189, 248, .10), transparent 48%),
    radial-gradient(circle at 80% 10%, rgba(167, 139, 250, .08), transparent 52%);
  filter: blur(18px);
  opacity: .85;
  transform: translateX(calc(var(--heroP) * 14px));
  pointer-events: none;
}

.premium-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .55) 100%);
  pointer-events: none;
}

/* Eğer grain.png yoksa, fallback: hafif noise taklidi (çok minimal) */
@supports not (background-image: url("x")) {
  .premium-grain {
    display: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-sticky .scene-media {
    position: relative;
    top: auto;
    height: auto;
  }

  .hero-sticky {
    min-height: auto;
  }

  .hero-sticky .hero-headline,
  .hero-sticky .hero-subhead,
  .hero-sticky .hero-cta,
  .premium-sweep {
    transform: none !important;
  }
}

/* FULL-BLEED HERO */
.hero {
  position: relative;
  background: #05080b;
}

/* Apple tarzı: sahne uzun, ama video sticky (pin) */
.hero-sticky {
  min-height: 170svh;
  --heroP: 0;
  /* 0..1 */
}

/* Video katmanı: full viewport */
.hero-media {
  position: sticky;
  top: 0;
  /* Changed to 0 to remove gap */
  height: 100svh;
  /* Revert to full viewport size */
  overflow: hidden;
}

/* Video cover = Apple hissi */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 118%;
  /* Crops the bottom 18% to hide baked-in text */
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transform: scale(calc(1.05 - (var(--heroP) * 0.05)));
  transform-origin: center top;
  filter: saturate(1.05) contrast(1.07);
}

/* Premium overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(213, 45, 0, .18), transparent 45%),
    radial-gradient(circle at 80% 25%, rgba(255, 163, 0, .14), transparent 55%),
    linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .72));
  pointer-events: none;
}

.premium-grain {
  position: absolute;
  inset: 0;
  background-image: url("/assets/grain.png");
  /* yoksa silebilirsin */
  background-size: 260px 260px;
  opacity: .08;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.premium-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .58) 100%);
  pointer-events: none;
}

/* Metin katmanı: video üstünde */
.hero-pin {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
}

.hero-content {
  padding: 300px 10px 10px;
  max-width: 1000px;
}

/* Sticky headline motion (Apple vibe) */
.hero-headline {
  transform-origin: left top;
  will-change: transform;
  transform:
    translateY(calc(var(--heroP) * -44px)) scale(calc(1 - (var(--heroP) * 0.18)));
}

.hero-subhead {
  will-change: transform, opacity;
  opacity: calc(1 - (var(--heroP) * 0.85));
  transform: translateY(calc(var(--heroP) * -10px));
}

.hero-cta {
  will-change: transform, opacity;
  opacity: calc(1 - (var(--heroP) * 0.92));
  transform: translateY(calc(var(--heroP) * -8px));
}

.scroll-hint {
  opacity: calc(1 - (var(--heroP) * 1.2));
}

/* Mobil düzen */
@media (max-width: 900px) {
  .hero-content {
    padding: 96px 20px;
  }

  .hero-sticky {
    min-height: 150svh;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-media {
    position: relative;
    top: auto;
    height: auto;
  }

  .hero-sticky {
    min-height: auto;
  }

  .hero-video {
    transform: none !important;
  }

  .hero-headline,
  .hero-subhead,
  .hero-cta {
    transform: none !important;
    opacity: 1 !important;
  }
}

.hero-headline {
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 700;

  background: linear-gradient(180deg,
      #fff7ee 0%,
      #ffbe63 38%,
      #ffa300 72%,
      #d52d00 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: linear-gradient(135deg, #d95301, #cbb927);
  border: none;
  color: #fff7ee;
  box-shadow: 0 6px 20px rgba(213, 45, 0, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 22px;
  border-radius: 999px;
}

.lp-section {
  padding: 84px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.eyebrow {
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.bigline {
  font-size: clamp(22px, 2.8vw, 34px);
  color: rgba(255, 255, 255, .88);
  max-width: 900px;
}

.h2 {
  font-size: clamp(26px, 3vw, 42px);
  margin: 0 0 8px;
}

.p {
  color: var(--muted);
  margin: 0;
  max-width: 70ch;
}

/* Marquee */
.logo-marquee {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: 999px;
  overflow: hidden;
}

.logo-marquee .track {
  display: flex;
  gap: 14px;
  padding: 12px 14px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.logo-marquee span {
  font-size: 12px;
  color: rgba(255, 255, 255, .70);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .18);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Feature cards */
.feature-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fcard {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.ficon {
  font-size: 22px;
  opacity: .9;
  margin-bottom: 10px;
}

.fcard h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.fcard p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Split hero */
.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.split-copy {
  max-width: 560px;
}

.split-media {
  position: relative;
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  display: flex;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .40);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
}

/* Stats strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  border-radius: calc(var(--r) + 6px);
  padding: 14px;
}

.stat {
  border-radius: var(--r);
  padding: 14px 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
}

.stat .num {
  font-size: 20px;
  font-weight: 700;
}

.stat .lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* Gallery */
.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gitem {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  /* kare */
  border-radius: var(--r);
  border: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow);
}

.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Quotes */
.quotes {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.qcard {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r);
  padding: 18px;
}

.qcard blockquote {
  margin: 0 0 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
}

.qcard figcaption {
  font-size: 12px;
  color: var(--muted);
}

/* FAQ */
.faq {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--r);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 650;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-body {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

/* Final */
.lp-final {
  padding: 96px 0 110px;
}

.final-cta {
  text-align: center;
  border-radius: calc(var(--r) + 8px);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 10%, rgba(46, 204, 113, .18), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(56, 189, 248, .16), transparent 55%),
    rgba(255, 255, 255, .03);
  box-shadow: var(--shadow);
  padding: 34px 22px;
}

/* Responsive */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .split-hero {
    grid-template-columns: 1fr;
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gitem.big {
    grid-column: span 6;
  }

  .gitem.wide {
    grid-column: span 6;
  }

  .gitem:not(.big):not(.wide) {
    grid-column: span 6;
  }
}

@media (max-width:900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Katman sırası düzelt */
.hero-sticky {
  position: relative;
}

.hero-media {
  position: sticky;
  top: 0;
  z-index: 1;
  /* arkada */
}

.hero-pin {
  position: absolute;
  inset: 0;
  z-index: 3;
  /* önde */
  pointer-events: none;
  /* tüm katman tıklamasın */
}

/* Sadece içerik tıklanabilir olsun */
.hero-content {
  pointer-events: auto;
  position: relative;
  z-index: 4;
}

/* Overlay’ler asla tıklama yakalamasın */
.hero-overlay,
.premium-grain,
.premium-vignette {
  pointer-events: none !important;
}

.store-buttons {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 18px;
  transition: all .25s ease;
}

.store-btn img {
  height: 40px;
  width: auto;
}

.store-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.dl {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: #070b10;
}

/* ARKA PLAN GÖRSEL */
.dl-bg {
  position: absolute;
  inset: 0;
  z-index: 0;

  background: url("/assets/download-bg.jpg") center/cover no-repeat;

  transform: scale(1.2);
  filter: blur(4px);
  opacity: .45;

  pointer-events: none;
}

/* karartma */
.dl::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(circle at center, rgba(0, 0, 0, .25), rgba(0, 0, 0, .85));
}

.dl-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.dl-title {
  text-shadow: 0 8px 30px rgba(0, 0, 0, .6);
}

.dl-sub {
  text-shadow: 0 4px 18px rgba(0, 0, 0, .5);
}

/* link yoksa */
.pill[aria-disabled="true"] {
  opacity: .5;
  pointer-events: none;
}

/* DOWNLOAD BUTTONS - Premium pills */
.dl-pills {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.dl-pills .pill {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 46px;
  padding: 0 18px;
  min-width: 160px;

  border-radius: 999px;
  text-decoration: none;

  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2px;

  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);

  /* glass */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .08);

  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.dl-pills .pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .22);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .10);
}

/* primary - ilk buton (Steam) biraz daha vursun istersen */
.dl-pills .pill.is-primary {
  background: linear-gradient(180deg, rgba(217, 83, 1, .95), rgba(203, 185, 39, .85));
  border-color: rgba(34, 197, 94, .35);
  color: #08130d;
  text-shadow: none;
}

.dl-pills .pill.is-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* disabled */
.dl-pills .pill[aria-disabled="true"] {
  opacity: .45;
  pointer-events: none;
  box-shadow: none;
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .10);
}

/* Brand Hover Glow Effects */
.dl-pills .pill.steam:not([aria-disabled="true"]):hover {
  border-color: rgba(42, 71, 94, 0.8);
  box-shadow: 0 14px 38px rgba(42, 71, 94, 0.5), inset 0 1px 0 rgba(102, 192, 244, 0.3);
  background: rgba(23, 26, 33, 0.4);
}

.dl-pills .pill.playstation:not([aria-disabled="true"]):hover {
  border-color: rgba(0, 67, 156, 0.8);
  box-shadow: 0 14px 38px rgba(0, 67, 156, 0.5), inset 0 1px 0 rgba(0, 112, 209, 0.3);
  background: rgba(0, 67, 156, 0.2);
}

.dl-pills .pill.ios:not([aria-disabled="true"]):hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 38px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.dl-pills .pill.android:not([aria-disabled="true"]):hover {
  border-color: rgba(61, 220, 132, 0.8);
  box-shadow: 0 14px 38px rgba(61, 220, 132, 0.25), inset 0 1px 0 rgba(61, 220, 132, 0.3);
  background: rgba(61, 220, 132, 0.15);
}

/* küçük ekran */
@media (max-width:520px) {
  .dl-pills .pill {
    min-width: 140px;
    height: 44px;
    padding: 0 14px;
  }
}

.ficon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ficon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.fcard:hover .ficon img {
  transform: scale(1.1);
  transition: 0.3s;
}