/*
 * SoL Bot tanitim sayfasi - karanlik altin korsan temasi.
 * Kullanici 2026-09-15: "web ui bunun gibi dark gold olmali, animasyonlar ve fontlar da oyle; gemi oyunu bu".
 *
 * CSP (default-src 'self') inline stili/scripti ve dis font sunucusunu engelliyor: tum gorunum burada, yazi
 * tipleri /assets/fonts/fonts.css'te (Pirata One, Cinzel, Alegreya Sans - OFL), doku /assets/ahsap.webp
 * (uretildi, dikissiz dosenir). Bir oyunun gorsellerini/logosunu kullanmiyoruz; dumen, dalga, kose susleri
 * satir ici SVG ve CSS.
 * Animasyonlar transform DEGIL translate/rotate ozellikleriyle yaziliyor: kartlarin hover kaldirmasi
 * (transform) animasyonla cakismasin. prefers-reduced-motion'da hepsi kapanir.
 */

:root {
  --gece: #0c0806;
  --ahsap: #2e1d12;
  --cizgi: #5a3f22;
  --altin: #d6a84c;
  --altin-acik: #f4dc95;
  --altin-koyu: #8d6424;
  --parsomen: #efe3c8;
  --metin: #d9c8a8;
  --soluk: #bfa888;
  --silik: #8a7358;

  --f-logo: "Pirata One", "Cinzel", Georgia, serif;
  --f-baslik: "Cinzel", "Trajan Pro", Georgia, "Times New Roman", serif;
  --f-govde: "Alegreya Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* Yapiskan ust bar capa hedeflerinin basligini ortmesin. */
  scroll-padding-top: 84px;
  background: var(--gece);
}

body {
  margin: 0;
  color: var(--parsomen);
  font: 17px/1.65 var(--f-govde);
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: var(--gece);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(12, 8, 6, 0.3), rgba(6, 4, 2, 0.84) 72%),
    url("/assets/ahsap.webp");
  background-size: auto, 384px 384px;
}

a { color: var(--altin-acik); }

:focus-visible {
  outline: 2px solid var(--altin-acik);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  color: var(--parsomen);
  font-family: var(--f-baslik);
  font-weight: 700;
}

.kap {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Klavye kullanicisi menuyu atlayip dogrudan icerige gecebilsin. */
.atla {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--altin);
  color: #1a1007;
  font-weight: 700;
  text-decoration: none;
}
.atla:focus { top: 12px; }

/* ---------- Ortak susler ---------- */

/* Altin, yavasca kayan parilti. Gradyan iki ucta ayni renkte: dongu dikissiz. */
.altin-yazi {
  background: linear-gradient(100deg, #8d6424 0%, #f4dc95 18%, #d6a84c 32%, #fff1c2 46%, #b88632 62%, #f4dc95 80%, #8d6424 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: parilti 7s linear infinite;
}

/* Dumen: marka simgesi ve arka plan susu. Renk currentColor. */
.dumen-kucuk,
.dumen-buyuk {
  display: block;
  flex: none;
  color: var(--altin);
}
.dumen-kucuk {
  width: 30px;
  height: 30px;
  animation: don 40s linear infinite;
}
.dumen-buyuk {
  position: absolute;
  right: -150px;
  top: -90px;
  width: 580px;
  height: 580px;
  opacity: 0.07;
  pointer-events: none;
  animation: don 140s linear infinite;
}

/* Altin kose susu: cerceveli her panelde dort tane. */
.kose {
  position: absolute;
  width: 22px;
  height: 22px;
  border-top: 2px solid var(--altin);
  border-left: 2px solid var(--altin);
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.3s;
}
.kose::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 5px;
  height: 5px;
  background: var(--altin);
  rotate: 45deg;
}
.kose-1 { top: 7px; left: 7px; }
.kose-2 { top: 7px; right: 7px; scale: -1 1; }
.kose-3 { bottom: 7px; right: 7px; scale: -1 -1; }
.kose-4 { bottom: 7px; left: 7px; scale: 1 -1; }

/* ---------- Ust bar ---------- */

.ust {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(26, 16, 10, 0.97), rgba(13, 8, 5, 0.95));
  border-bottom: 1px solid var(--altin-koyu);
  box-shadow: 0 1px 0 rgba(244, 220, 149, 0.1), 0 10px 30px rgba(0, 0, 0, 0.55);
}

.ust-ic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
}

.marka {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-logo);
  font-size: 1.9rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.ust-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.ust-menu a {
  position: relative;
  padding: 8px 12px;
  color: var(--soluk);
  font-family: var(--f-baslik);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.ust-menu a:not(.dil-dugme)::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--altin), transparent);
  scale: 0 1;
  transition: scale 0.25s;
}
.ust-menu a:hover { color: var(--altin-acik); }
.ust-menu a:not(.dil-dugme):hover::after { scale: 1 1; }

.ust-menu .dil-dugme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 6px 10px;
  border: 1px solid var(--altin-koyu);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.08em;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.ust-menu .dil-dugme:hover {
  border-color: var(--altin);
  box-shadow: 0 0 14px rgba(214, 168, 76, 0.25);
}
.dil-dugme img,
.dil-karo img {
  display: block;
  flex: none;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(214, 168, 76, 0.55);
}

@media (max-width: 560px) {
  .marka { font-size: 1.6rem; }
  .marka .dumen-kucuk { width: 24px; height: 24px; }
  .ust-menu a { padding: 6px 7px; font-size: 0.7rem; letter-spacing: 0.06em; }
  .ust-menu-genis { display: none; }
}

/* ---------- Kahraman ---------- */

.kahraman {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 78% 40%, rgba(214, 168, 76, 0.13), transparent 70%),
    linear-gradient(180deg, rgba(4, 9, 11, 0.82) 0%, rgba(10, 8, 6, 0.55) 62%, rgba(12, 8, 6, 0.25) 100%);
}
/* Fener isigi: sag ustte hafifce titreyen sicak parilti. */
.kahraman::before {
  content: "";
  position: absolute;
  top: -25%;
  right: -10%;
  width: 62%;
  height: 95%;
  background: radial-gradient(circle at 58% 42%, rgba(255, 190, 90, 0.17), transparent 62%);
  pointer-events: none;
  animation: fener 5.5s ease-in-out infinite;
}

.kahraman-ic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
  padding-block: 64px 150px;
}

.kahraman-metin > * { animation: yuksel 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.kahraman-metin > :nth-child(2) { animation-delay: 0.08s; }
.kahraman-metin > :nth-child(3) { animation-delay: 0.16s; }
.kahraman-metin > :nth-child(4) { animation-delay: 0.24s; }
.kahraman-metin > :nth-child(5) { animation-delay: 0.32s; }
.kahraman-metin > :nth-child(6) { animation-delay: 0.4s; }

.logo-buyuk {
  margin: 0 0 4px;
  font-family: var(--f-logo);
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  font-weight: 400;
  line-height: 0.95;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.75)) drop-shadow(0 0 22px rgba(214, 168, 76, 0.22));
}

.etiket {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--altin);
  font-family: var(--f-baslik);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.etiket::before,
.etiket::after {
  content: "";
  flex: none;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--altin));
}
.etiket::after { scale: -1 1; }

h1 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3.4vw, 2.45rem);
  line-height: 1.22;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.65);
  text-wrap: balance;
}
.vurgu-yazi { color: var(--altin-acik); }

.giris {
  max-width: 54ch;
  margin: 0 0 30px;
  color: var(--soluk);
  font-size: 1.12rem;
}

.eylemler {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
  padding: 5px;
}

.dugme {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  overflow: hidden;
  border-radius: 6px;
  font-family: var(--f-baslik);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.25s;
}
/* Altin cerceveli koyu dugme: uc halka (koyu altin, siyah bosluk, parlak altin). */
.dugme-birincil {
  color: #f9e6a8;
  background: linear-gradient(180deg, #4d3618 0%, #2a1b0b 55%, #1a1007 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 228, 150, 0.35),
    0 0 0 2px #8d6424,
    0 0 0 3px #1a1007,
    0 0 0 5px #d6a84c,
    0 12px 28px rgba(0, 0, 0, 0.6);
  text-shadow: 0 1px 0 #000;
  animation: nabiz 3.4s ease-in-out infinite;
}
.dugme-birincil::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 40%;
  background: linear-gradient(100deg, transparent, rgba(255, 236, 170, 0.32), transparent);
  skew: -20deg;
  animation: parla 4.8s ease-in-out infinite;
}
.dugme-birincil:hover { transform: translateY(-2px); }

.dugme-ikincil {
  color: var(--altin-acik);
  background: rgba(10, 6, 4, 0.55);
  border: 1px solid var(--altin-koyu);
}
.dugme-ikincil:hover {
  border-color: var(--altin);
  box-shadow: 0 0 18px rgba(214, 168, 76, 0.2);
  transform: translateY(-2px);
}

.bilgi-notu {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 54ch;
  margin: 0;
  color: var(--silik);
  font-size: 0.95rem;
  font-style: italic;
}
.bilgi-notu::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 0.62em;
  background: var(--altin);
  rotate: 45deg;
}

/* ---------- Kahramandaki menu penceresi ---------- */

.onizleme {
  margin: 0;
  min-width: 0;
  animation: yuksel 0.9s 0.25s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.pencere {
  position: relative;
  padding: 12px;
  border: 1px solid var(--altin-koyu);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(40, 26, 15, 0.84), rgba(16, 10, 6, 0.9)),
    url("/assets/ahsap.webp");
  background-size: auto, 384px 384px;
  box-shadow:
    inset 0 0 0 1px rgba(244, 220, 149, 0.1),
    inset 0 0 60px rgba(0, 0, 0, 0.7),
    0 30px 70px -20px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(214, 168, 76, 0.08);
}

.pencere-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 16px 12px;
  border-bottom: 1px solid rgba(214, 168, 76, 0.22);
}
.pencere-ad {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--altin);
  font-family: var(--f-baslik);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.pencere-ad .dumen-kucuk { width: 16px; height: 16px; }
.pencere-kontroller {
  display: inline-flex;
  gap: 12px;
  color: var(--silik);
  font-size: 0.85rem;
  line-height: 1;
}

.pencere-govde { padding: 16px 12px 10px; }

.menu-onizleme {
  display: grid;
  gap: 10px;
}
.menu-satir {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(90, 63, 34, 0.9);
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(62, 40, 23, 0.72), rgba(26, 17, 10, 0.72));
  box-shadow: inset 0 1px 0 rgba(244, 220, 149, 0.06);
  animation: yuksel 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.menu-satir:nth-child(1) { animation-delay: 0.4s; }
.menu-satir:nth-child(2) { animation-delay: 0.52s; }
.menu-satir:nth-child(3) { animation-delay: 0.64s; }
.menu-satir:nth-child(4) { animation-delay: 0.76s; }
.menu-satir .bot-mono {
  width: 40px;
  height: 40px;
  font-size: 0.72rem;
}
.menu-yazi { min-width: 0; }
.menu-yazi strong {
  display: block;
  overflow: hidden;
  color: var(--parsomen);
  font-family: var(--f-baslik);
  font-size: 0.86rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.menu-yazi span {
  display: block;
  overflow: hidden;
  color: var(--soluk);
  font-size: 0.85rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.menu-ok {
  margin-left: auto;
  color: var(--altin);
  font-size: 1.3rem;
  line-height: 1;
}

.onizleme figcaption {
  margin-top: 12px;
  color: var(--silik);
  font-size: 0.82rem;
  font-style: italic;
  text-align: center;
}

/* ---------- Dalgalar ---------- */
/* SVG genisligi %200 ve yol 720 birimde tekrar ediyor: -%50 kaydirma dikissiz dongu. */

.dalgalar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  overflow: hidden;
  pointer-events: none;
}
.dalga {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 200%;
  height: 100%;
}
.dalga-arka {
  height: 90%;
  animation: dalga 26s linear infinite;
}
.dalga-arka path { fill: rgba(20, 52, 50, 0.55); }
.dalga-on { animation: dalga 16s linear infinite reverse; }
.dalga-on path { fill: #0c0806; }
.dalga-on .dalga-cizgi {
  fill: none;
  stroke: rgba(214, 168, 76, 0.42);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

/* ---------- Bolumler ---------- */

.bolum {
  position: relative;
  padding-block: 96px;
}
.bolum-botlar {
  background: linear-gradient(180deg, #0c0806 0, rgba(12, 8, 6, 0) 200px);
}

/* Halat ayrac: bolumler ve alt bilgi arasinda. */
.bolum + .bolum::before,
.alt::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  width: min(760px, 86%);
  height: 6px;
  border-radius: 3px;
  background: repeating-linear-gradient(-55deg, #c89a45 0 3px, #7a5522 3px 6px, #3b2710 6px 7px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
  opacity: 0.7;
  translate: -50% 0;
}

.bolum-baslik {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}
.ust-yazi {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  color: var(--altin);
  font-family: var(--f-baslik);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}
.ust-yazi::before,
.ust-yazi::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--altin));
}
.ust-yazi::after { scale: -1 1; }
.bolum-baslik h2 {
  margin: 0 0 12px;
  color: var(--altin-acik);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.7), 0 0 26px rgba(214, 168, 76, 0.16);
  text-wrap: balance;
}
.bolum-baslik p:not(.ust-yazi) {
  max-width: 56ch;
  margin: 0 auto;
  color: var(--soluk);
}

/* ---------- Cerceveli paneller ---------- */

.bot-kart,
.kart,
.adim {
  position: relative;
  padding: 30px 28px;
  border: 1px solid var(--cizgi);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(46, 29, 18, 0.88), rgba(20, 13, 8, 0.93));
  box-shadow:
    inset 0 0 0 1px rgba(244, 220, 149, 0.06),
    inset 0 0 50px rgba(0, 0, 0, 0.55),
    0 18px 40px -18px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.bot-kart:hover,
.kart:hover,
.adim:hover {
  transform: translateY(-4px);
  border-color: var(--altin-koyu);
  box-shadow:
    inset 0 0 0 1px rgba(244, 220, 149, 0.14),
    inset 0 0 50px rgba(0, 0, 0, 0.5),
    0 26px 50px -18px rgba(0, 0, 0, 0.9),
    0 0 30px rgba(214, 168, 76, 0.12);
}
.bot-kart:hover .kose,
.kart:hover .kose,
.adim:hover .kose { opacity: 1; }

/* ---------- Botlar ---------- */

.botlar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.bot-bas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(214, 168, 76, 0.18);
}
.bot-bas h3 {
  margin: 0;
  color: var(--altin-acik);
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.bot-bas p {
  margin: 3px 0 0;
  color: var(--soluk);
  font-size: 0.98rem;
  font-style: italic;
}

/* Altin sikke; dis halka rengi masaustu menusundeki karo rengi (MH mavi, LV deniz yesili, NH yesil, OT turuncu). */
.bot-mono {
  display: grid;
  flex: none;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fbe7a6, #d6a84c 45%, #8d6424 80%, #5c3f14);
  box-shadow:
    inset 0 0 0 3px rgba(92, 63, 20, 0.65),
    inset 0 0 0 5px rgba(251, 231, 166, 0.3),
    0 0 0 2px var(--halka, #8d6424),
    0 4px 12px rgba(0, 0, 0, 0.6);
  color: #3a2708;
  font-family: var(--f-baslik);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255, 240, 190, 0.55);
}
.bot-mono-mh { --halka: rgba(106, 166, 216, 0.75); }
.bot-mono-lv { --halka: rgba(62, 190, 176, 0.75); }
.bot-mono-nh { --halka: rgba(111, 191, 115, 0.75); }
.bot-mono-ot { --halka: rgba(224, 138, 60, 0.8); }

.bot-liste {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bot-liste li {
  position: relative;
  padding-left: 24px;
  color: var(--metin);
}
.bot-liste li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.64em;
  width: 7px;
  height: 7px;
  background: var(--altin);
  box-shadow: 0 0 6px rgba(214, 168, 76, 0.5);
  rotate: 45deg;
}

.ortak {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}
.ortak div {
  padding: 18px 20px;
  border-top: 2px solid var(--altin-koyu);
  border-radius: 0 0 6px 6px;
  background: rgba(8, 5, 3, 0.6);
}
.ortak strong {
  display: block;
  margin-bottom: 4px;
  color: var(--altin);
  font-family: var(--f-baslik);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.ortak span {
  color: var(--soluk);
  font-size: 0.95rem;
}

/* ---------- Adimlar ve lisans ---------- */

.kartlar,
.adimlar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.adimlar {
  margin: 0;
  padding: 0;
  list-style: none;
}
.kart h3,
.adim h3 {
  margin: 18px 0 8px;
  color: var(--altin-acik);
  font-size: 1.05rem;
  line-height: 1.35;
}
.kart p,
.adim p {
  margin: 0;
  color: var(--soluk);
}

/* Muhur mumu. */
.adim-no {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #d8573f, #8e2616 60%, #5a150b);
  box-shadow:
    inset 0 0 0 3px rgba(60, 10, 4, 0.55),
    inset 0 0 0 5px rgba(240, 140, 110, 0.22),
    0 4px 10px rgba(0, 0, 0, 0.6);
  color: #f5e2c4;
  font-family: var(--f-baslik);
  font-size: 1.1rem;
  font-weight: 900;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6);
}

.kart-ikon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--altin-koyu);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.4), inset 0 0 0 4px rgba(214, 168, 76, 0.18);
  color: var(--altin);
}

/* ---------- SSS ---------- */

.sss {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-inline: auto;
}
.sss details {
  border: 1px solid var(--cizgi);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(42, 27, 16, 0.86), rgba(20, 13, 8, 0.92));
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.45);
  transition: border-color 0.25s;
}
.sss details[open] { border-color: var(--altin-koyu); }
.sss summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: var(--parsomen);
  font-family: var(--f-baslik);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  list-style: none;
  cursor: pointer;
  transition: color 0.2s;
}
.sss summary::-webkit-details-marker { display: none; }
.sss summary::after {
  content: "+";
  display: grid;
  flex: none;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--altin-koyu);
  border-radius: 50%;
  color: var(--altin);
  font-family: var(--f-govde);
  font-size: 1.2rem;
  line-height: 1;
  transition: rotate 0.25s, background-color 0.25s;
}
.sss details[open] summary::after {
  rotate: 45deg;
  background: rgba(214, 168, 76, 0.12);
}
.sss summary:hover { color: var(--altin-acik); }

.cevap {
  padding: 0 22px 20px;
  color: var(--soluk);
}
.cevap p { margin: 0 0 8px; }
.cevap p:last-child { margin-bottom: 0; }
.cevap ul {
  margin: 0 0 10px;
  padding-left: 22px;
}
.cevap li { margin: 2px 0; }
.cevap li::marker { color: var(--altin); }

/* ---------- Alt bilgi ---------- */

.alt {
  position: relative;
  padding-block: 40px 36px;
  background: linear-gradient(180deg, rgba(6, 4, 2, 0.4), rgba(6, 4, 2, 0.92));
  color: var(--silik);
  font-size: 0.92rem;
}
.alt-ic {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
}
.alt p { margin: 0; }

/* ---------- Dil secimi (ilk acilis) ---------- */

.dil-sayfa {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 48px 20px;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 50% 35%, rgba(214, 168, 76, 0.13), transparent 70%);
}
.dil-sayfa .dumen-buyuk {
  top: 50%;
  right: auto;
  left: 50%;
  width: 700px;
  height: 700px;
  margin: -350px 0 0 -350px;
  opacity: 0.06;
}
.dil-kutu {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  padding: 34px 30px 30px;
  border: 1px solid var(--altin-koyu);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(40, 26, 15, 0.92), rgba(16, 10, 6, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(244, 220, 149, 0.1),
    inset 0 0 60px rgba(0, 0, 0, 0.6),
    0 30px 80px rgba(0, 0, 0, 0.8);
  animation: yuksel 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.dil-marka {
  margin: 0 0 6px;
  font-family: var(--f-logo);
  font-size: 3.4rem;
  line-height: 1;
  text-align: center;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.75));
}
.dil-baslik {
  margin: 0 0 22px;
  color: var(--altin);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
.dil-liste {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dil-liste li { animation: yuksel 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.dil-liste li:nth-child(1) { animation-delay: 0.25s; }
.dil-liste li:nth-child(2) { animation-delay: 0.35s; }
.dil-liste li:nth-child(3) { animation-delay: 0.45s; }
.dil-liste li:nth-child(4) { animation-delay: 0.55s; }
.dil-karo {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--cizgi);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.35);
  color: var(--parsomen);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.dil-karo:hover,
.dil-karo:focus-visible {
  border-color: var(--altin);
  box-shadow: 0 0 20px rgba(214, 168, 76, 0.15);
  transform: translateX(4px);
}
.dil-yazi strong {
  display: block;
  font-family: var(--f-baslik);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}
.dil-yazi span {
  display: block;
  color: var(--soluk);
  font-size: 0.92rem;
}
.dil-karo::after {
  content: "›";
  margin-left: auto;
  color: var(--altin);
  font-size: 1.5rem;
  line-height: 1;
  transition: translate 0.2s;
}
.dil-karo:hover::after { translate: 3px 0; }

/* ---------- Animasyonlar ---------- */

@keyframes yuksel {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes parilti {
  from { background-position: 0% 0; }
  to { background-position: -220% 0; }
}
@keyframes don {
  to { rotate: 360deg; }
}
@keyframes dalga {
  to { translate: -50% 0; }
}
@keyframes fener {
  0%, 100% { opacity: 0.7; }
  40% { opacity: 1; }
  55% { opacity: 0.8; }
  72% { opacity: 0.95; }
}
@keyframes parla {
  0%, 62% { left: -60%; }
  100% { left: 130%; }
}
@keyframes nabiz {
  0%, 100% { filter: none; }
  50% { filter: brightness(1.12) drop-shadow(0 0 12px rgba(214, 168, 76, 0.35)); }
}

/* Asagidaki paneller kaydirdikca belirir (destekleyen tarayicilarda; digerlerinde dogrudan gorunur). */
@supports (animation-timeline: view()) {
  .bot-kart,
  .kart,
  .adim,
  .ortak div,
  .sss details {
    animation: yuksel linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}

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

/* ---------- Üst menü vurgu (Satın Al) ---------- */

.ust-menu .ust-menu-vurgu {
  color: var(--altin-acik);
  border: 1px solid var(--altin-koyu);
  border-radius: 4px;
  background: rgba(214, 168, 76, 0.08);
}
.ust-menu .ust-menu-vurgu:hover {
  color: #1a1007;
  background: var(--altin);
}
.ust-menu .ust-menu-vurgu::after { display: none; }

/* ---------- Ödeme dönüş bandı ---------- */

/* Ödeme dönüş bandı kahraman bölümünün İÇİNDE (gradyan arka planın üstünde), havada boş bir şerit
   gibi durmasın diye. kahraman-bantli, banner varken hero üst boşluğunu kısar. */
.banner {
  position: relative;
  z-index: 1;
  margin: 26px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--altin-koyu);
  border-left-width: 4px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(52, 34, 18, 0.92), rgba(30, 20, 11, 0.92));
  box-shadow: inset 0 1px 0 rgba(244, 220, 149, 0.08), 0 12px 30px -14px rgba(0, 0, 0, 0.7);
  color: var(--parsomen);
  font-size: 0.98rem;
}
.kahraman-bantli .kahraman-ic { padding-block-start: 34px; }
.banner-ok { border-left-color: var(--iyi, #3dd68c); }
.banner-iptal,
.banner-email { border-left-color: var(--uyari, #f59e3f); }

/* ---------- Satın Al ---------- */

.satinal-kart {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 34px 30px 28px;
  border: 1px solid var(--altin-koyu);
  border-radius: 10px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(46, 29, 18, 0.9), rgba(20, 13, 8, 0.94)),
    url("/assets/ahsap.webp");
  background-size: auto, 384px 384px;
  box-shadow:
    inset 0 0 0 1px rgba(244, 220, 149, 0.1),
    inset 0 0 60px rgba(0, 0, 0, 0.6),
    0 26px 60px -22px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(214, 168, 76, 0.1);
}
.satinal-fiyat {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}
.fiyat-tutar {
  font-family: var(--f-logo);
  font-size: clamp(3rem, 8vw, 4.2rem);
  line-height: 1;
  color: var(--altin-acik);
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.7));
}
.fiyat-donem { color: var(--soluk); font-size: 1.1rem; }

.satinal-form {
  display: grid;
  gap: 10px;
  text-align: left;
}
.satinal-form label {
  color: var(--altin);
  font-family: var(--f-baslik);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.satinal-form input {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--cizgi);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--parsomen);
  font-family: var(--f-govde);
  font-size: 1rem;
}
.satinal-form input:focus {
  outline: none;
  border-color: var(--altin);
  box-shadow: 0 0 0 3px rgba(214, 168, 76, 0.16);
}
.satinal-form .dugme { margin-top: 4px; width: 100%; }

.satinal-ipucu {
  margin: 12px 0 0;
  color: var(--silik);
  font-size: 0.86rem;
  font-style: italic;
}
.satinal-notlar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(214, 168, 76, 0.18);
  list-style: none;
}
.satinal-notlar li {
  position: relative;
  padding-left: 20px;
  color: var(--soluk);
  font-size: 0.9rem;
}
.satinal-notlar li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--altin);
  rotate: 45deg;
}

/* ---------- İndir ---------- */

.indir-kart {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  padding: 34px 30px;
  border: 1px solid var(--cizgi);
  border-radius: 10px;
  text-align: center;
  background: linear-gradient(180deg, rgba(42, 27, 16, 0.86), rgba(20, 13, 8, 0.92));
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 18px 44px -20px rgba(0, 0, 0, 0.8);
}
.indir-ikon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border: 1px solid var(--altin-koyu);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: var(--altin);
  box-shadow: inset 0 0 0 4px rgba(214, 168, 76, 0.12);
}
.indir-metin {
  max-width: 46ch;
  margin: 0 auto 6px;
  color: var(--metin);
  font-size: 1.02rem;
}
.indir-not {
  margin: 0 0 20px;
  color: var(--silik);
  font-family: var(--mono);
  font-size: 0.85rem;
}

/* ---------- Ödeme yönlendirme ekranı ---------- */

.yukleniyor {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(6, 4, 2, 0.85);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.yukleniyor.acik { display: grid; }
.yukleniyor-kutu {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}
.yukleniyor-yazi {
  margin: 0;
  color: var(--altin-acik);
  font-family: var(--f-baslik);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.6);
}
.carkifelek {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid rgba(214, 168, 76, 0.22);
  border-top-color: var(--altin);
  animation: don 0.9s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .carkifelek { animation-duration: 2.6s; }
}

/* ---------- Dar ekranlar ---------- */

@media (max-width: 900px) {
  .kahraman-ic {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
    padding-block: 48px 130px;
  }
  .kartlar,
  .adimlar,
  .botlar {
    grid-template-columns: minmax(0, 1fr);
  }
  .ortak { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bolum { padding-block: 72px; }
  .dumen-buyuk {
    right: -130px;
    top: -60px;
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 560px) {
  .ortak { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 420px) {
  .kap { padding-inline: 16px; }
  .dugme { flex: 1 1 100%; }
  .bot-kart,
  .kart,
  .adim { padding: 24px 18px; }
  .dil-kutu { padding: 26px 18px 20px; }
  .dil-marka { font-size: 2.8rem; }
}
