/* Pyxa Studio, ortak stil sayfasi. Uc sayfa da bunu kullanir. */

:root {
  /* Koyu zemin yesilden erige alindi. Notr siyah yerine hafif erik tonu,
     pembe aksanla ayni sicaklikta kalsin diye. */
  --bg:      #0C070A;
  --bg-2:    #150C11;
  --card:    #1B1017;
  --line:    #33202A;
  --fg:      #F6EBEF;
  --muted:   #B096A1;
  --pink:    #F0A0BE;
  --pink-2:  #E0708F;
  --rose:    #A83A66;
  --max:     1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

a { color: var(--pink); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Gradient METIN icin ayri durak seti. Koyu zeminde emerald'e kadar
   inince son kelimeler okunmuyor, en koyu durak green-2'de kesiliyor. */
.grad {
  background: linear-gradient(120deg, #F8CFDF 0%, var(--pink) 48%, var(--pink-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- ust menu ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 7, 10, .84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
nav .brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 800;
  letter-spacing: -.01em;
}
nav .brand img { width: 30px; height: 30px; }
nav .links { display: flex; gap: 26px; }
nav .links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
}
nav .links a:hover, nav .links a.on { color: var(--fg); }
@media (max-width: 560px) {
  nav .links { gap: 16px; }
  nav .links a { font-size: 13px; }
}

/* ---------- ortak bolum ---------- */
section { padding: 92px 0; }
.tint { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

h1 {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}
h2 {
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 16px;
}
h3 { font-size: 20px; font-weight: 700; margin: 0 0 9px; }
p  { color: var(--muted); margin: 0 0 18px; }
.center { text-align: center; }

.rule {
  width: 88px; height: 3px; border-radius: 999px; margin: 0 0 40px;
  background: linear-gradient(90deg, var(--pink), var(--pink-2), var(--rose));
}
.center .rule { margin-left: auto; margin-right: auto; }

.lede { max-width: 730px; }
.lede p { font-size: 17px; }
.center .lede { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--pink) 0%, var(--pink-2) 100%);
  color: #1A0A11;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(240, 160, 190, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 42px rgba(240, 160, 190, .34); }
.btn.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn.ghost:hover { border-color: rgba(240, 160, 190, .5); }

/* ---------- kartlar ---------- */
.cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(240, 160, 190, .42); }
.card p { font-size: 15px; margin: 0; }
.card .ico {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(120deg, rgba(240, 160, 190, .18), rgba(168, 58, 102, .28));
  border: 1px solid rgba(240, 160, 190, .22);
}

/* ---------- uygulama satiri ---------- */
.app {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 22px;
}
@media (max-width: 620px) {
  .app { grid-template-columns: 1fr; gap: 18px; }
}
.app img.icon {
  width: 104px; height: 104px;
  border-radius: 23px;
  border: 1px solid var(--line);
}
.app h3 { font-size: 23px; margin-bottom: 4px; }
.app .sub { color: var(--pink); font-size: 13.5px; font-weight: 600; margin: 0 0 14px; }
.app p { font-size: 15.5px; }
.meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 18px;
}
.tag {
  font-size: 12px; font-weight: 600; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 12px; background: rgba(255, 255, 255, .02);
}
.store {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 12px;
  background: rgba(240, 160, 190, .1);
  border: 1px solid rgba(240, 160, 190, .3);
  color: var(--fg); text-decoration: none;
  font-size: 14px; font-weight: 600;
}
.store:hover { background: rgba(240, 160, 190, .18); }

/* ---------- kunye tablosu ---------- */
.facts { width: 100%; border-collapse: collapse; font-size: 15px; max-width: 720px; }
.facts td { padding: 13px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.facts td:first-child { color: var(--muted); width: 210px; padding-right: 20px; }
@media (max-width: 560px) {
  .facts td { display: block; padding: 4px 0; border: 0; }
  .facts tr { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .facts td:first-child { width: auto; font-size: 13px; }
}

/* ---------- alt bilgi ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
  color: var(--muted);
  font-size: 13.5px;
}
footer .row {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--fg); }
footer .brand { color: var(--fg); font-weight: 700; }

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