/* ==========================================================================
   GençApp Landing (v2)
   ========================================================================== */

html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #0a0910;
  color: #f2f0f7;
  font-family: 'Manrope', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: #c4b5fd; }
a:hover { color: #e9d5ff; }
::selection { background: rgba(168, 85, 247, .4); }

/* ── Keyframes ─────────────────────────────────────────────────────────── */
@keyframes gaFloat {
  0%   { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(-18px) rotate(1deg); }
}
@keyframes gaBlobA {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(60px, -40px) scale(1.15); }
  100% { transform: translate(-40px, 30px) scale(.95); }
}
@keyframes gaBlobB {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-70px, 50px) scale(1.1); }
  100% { transform: translate(50px, -30px) scale(1.05); }
}
@keyframes gaPulse {
  0%, 100% { opacity: .5; }
  50%      { opacity: 1; }
}

/* ── iPhone mockup ─────────────────────────────────────────────────────── */
.ga-phone {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.2;
  border-radius: 14.5% / 6.8%;
  background: linear-gradient(160deg, #26262e, #131318);
  border: 1px solid #35353f;
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, .7),
              0 0 80px -20px rgba(168, 85, 247, .28),
              inset 0 1px 0 rgba(255, 255, 255, .08);
  padding: 3.4%;
}
.ga-phone-btn { position: absolute; background: #3a3a44; }
.ga-phone-btn-l1 { left: -2px; top: 22%; width: 3px; height: 6%;  border-radius: 2px 0 0 2px; }
.ga-phone-btn-l2 { left: -2px; top: 30%; width: 3px; height: 6%;  border-radius: 2px 0 0 2px; }
.ga-phone-btn-r1 { right: -2px; top: 25%; width: 3px; height: 10%; border-radius: 0 2px 2px 0; }
.ga-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12% / 5.6%;
  overflow: hidden;
  background: #0c0c12;
}
.ga-phone-island {
  position: absolute;
  top: 2.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 3.4%;
  background: #000;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
  z-index: 3;
}

/* Sticky özellik telefonundaki geçiş yapan ekranlar */
.ga-fscreen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
}
.ga-fscreen.is-active { opacity: 1; }

/* ── Görsel yuvası (kullanıcı ekran görüntüsü/logo ekler) ──────────────── */
.ga-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.ga-slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.ga-slot-ph {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #6f6a82;
  background: linear-gradient(135deg, rgba(168, 85, 247, .07), rgba(236, 72, 153, .07));
  border: 1px dashed rgba(255, 255, 255, .12);
}
.ga-slot--contain .ga-slot-img { object-fit: contain; }

/* ── Hover durumları ─────── */
.ga-navlink:hover  { color: #fff !important; }
.ga-startlink:hover { color: #fff !important; }
.ga-footlink:hover { color: #fff !important; }
.ga-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px -8px rgba(236, 72, 153, .65) !important;
  color: #fff !important;
}
.ga-store-light:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px -12px rgba(255, 255, 255, .35) !important;
  color: #0a0910 !important;
}
.ga-store-dark:hover {
  transform: translateY(-3px) !important;
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
}
.ga-routecard:hover { transform: translateY(-6px) !important; }

/* ── Özellik bölümü: mobilde her özelliğin kendi telefonu ─────────────── */
/* Masaüstünde bu mini telefonlar gizli; büyük sticky telefon gösterilir. */
.ga-fcopy-phone { display: none; }

@media (max-width: 899px) {
  /* Metinlerin üstüne binen büyük yapışkan telefonu mobilde gizle */
  .ga-feat-sticky { display: none !important; }

  /* Kopya blokları: dev yükseklik ve soluklaştırma kalksın, kompakt olsun */
  [data-fcopy] {
    min-height: auto !important;
    opacity: 1 !important;
    padding: 30px 0;
  }

  /* Her özelliğin kendi ekran görüntüsü metnin üstünde */
  .ga-fcopy-phone {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  .ga-fcopy-phone-inner { width: min(230px, 60vw); }
}

/* ── Erişilebilirlik: azaltılmış hareket ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
