/* ============================================
   Kader Abla – Ana Stil Dosyası
   ============================================ */

:root {
  --bg-dark: #0d1026;        /* gece laciverti */
  --bg-header: rgba(13, 16, 38, 0.92);
  --gold: #e6b74c;           /* altın vurgu */
  --gold-soft: #f0cf8a;
  --text-light: #f5f3ec;
  --text-muted: #a8a9bd;
  --border-soft: rgba(230, 183, 76, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* [hidden] tarayıcı varsayılanında display:none'dur, ama o varsayılan herhangi
   bir yazar `display` bildirimiyle (örn. .report-actions{display:flex}) aynı
   özgüllükte olduğu için eziliyor. JS'te .hidden = true diyen her yer sessizce
   çalışmaz hâle geliyordu; bu yüzden burada sabitleniyor. */
[hidden] {
  display: none !important;
}

/* Modal pencere (yükleme sahnesi, kart önizleme) açıkken arkadaki sayfa
   kaydırılamasın — showModal etkileşimi kilitler ama kaydırmayı kilitlemez
   (mobilde yaşandı). */
body:has(dialog[open]) {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden; /* mobilde yatay kaymaya karşı güvence */
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  /* Yalnız yatay: kısaltma kullanılırsa .container'ı da taşıyan bölümlerin
     (örn. .page-hero-content) dikey boşluğu sıfırlanıyor. */
  padding-inline: 20px;
}

/* ============================================
   HEADER / MENÜ
   ============================================ */

/* Yüzen kapsül (floating pill) menü */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  margin-top: 12px;
  padding: 0 16px;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 10px 0 24px;
  border-radius: 999px;
  background: rgba(13, 16, 38, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.4); /* iOS Safari */
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(230, 183, 76, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 1.35rem;
  letter-spacing: 0.5px;
}

.logo-img {
  height: 25px;
  width: auto;
  display: block;
}

/* Menü */
.main-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
}

.main-nav a {
  display: block;
  padding: 9px 18px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold-soft);
  background: rgba(230, 183, 76, 0.08);
}

.main-nav a.active {
  color: var(--gold);
  background: rgba(230, 183, 76, 0.12);
  border: 1px solid rgba(230, 183, 76, 0.25);
}

/* Hamburger butonu (mobil) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO / H1 BÖLÜMÜ
   ============================================ */

.hero {
  position: relative;
  /* Bölüm, yüzen menünün kapladığı 72px'lik şeridin arkasına çekilir;
     böylece degrade zemin header'ın arkasında da sürer, renk atlaması olmaz. */
  margin-top: -72px;
  padding-top: 72px;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px); /* iOS/Android adres çubuğunu hesaba katar */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% 15%, rgba(94, 70, 160, 0.35), transparent 70%),
    radial-gradient(ellipse 60% 45% at 50% 90%, rgba(230, 183, 76, 0.08), transparent 70%),
    var(--bg-dark);
}

/* Yıldız katmanları – tek elemanda box-shadow ile, görsel dosyası yok */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stars::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: transparent;
}

.stars-1::before {
  box-shadow:
    5vw 12vh 0 #fff, 12vw 28vh 0 rgba(255,255,255,.7), 18vw 8vh 0 #fff,
    24vw 42vh 0 rgba(255,255,255,.6), 30vw 18vh 0 #fff, 36vw 55vh 0 rgba(255,255,255,.8),
    42vw 6vh 0 #fff, 48vw 32vh 0 rgba(255,255,255,.5), 55vw 14vh 0 #fff,
    61vw 48vh 0 rgba(255,255,255,.7), 67vw 25vh 0 #fff, 73vw 60vh 0 rgba(255,255,255,.6),
    79vw 10vh 0 #fff, 85vw 38vh 0 rgba(255,255,255,.8), 91vw 20vh 0 #fff,
    96vw 52vh 0 rgba(255,255,255,.6), 8vw 66vh 0 rgba(255,255,255,.5),
    21vw 74vh 0 #fff, 39vw 70vh 0 rgba(255,255,255,.6), 58vw 78vh 0 #fff,
    76vw 72vh 0 rgba(255,255,255,.5), 89vw 66vh 0 #fff;
  animation: twinkle 4s ease-in-out infinite;
}

.stars-2::before {
  width: 1px;
  height: 1px;
  box-shadow:
    3vw 22vh 0 rgba(255,255,255,.6), 10vw 45vh 0 #fff, 15vw 60vh 0 rgba(255,255,255,.5),
    22vw 15vh 0 #fff, 27vw 35vh 0 rgba(255,255,255,.7), 33vw 8vh 0 #fff,
    40vw 50vh 0 rgba(255,255,255,.5), 46vw 20vh 0 #fff, 52vw 62vh 0 rgba(255,255,255,.6),
    59vw 5vh 0 #fff, 64vw 40vh 0 rgba(255,255,255,.7), 70vw 16vh 0 #fff,
    77vw 46vh 0 rgba(255,255,255,.5), 83vw 28vh 0 #fff, 88vw 56vh 0 rgba(255,255,255,.6),
    94vw 12vh 0 #fff, 98vw 34vh 0 rgba(255,255,255,.5), 6vw 80vh 0 #fff,
    31vw 82vh 0 rgba(255,255,255,.5), 50vw 85vh 0 #fff, 68vw 84vh 0 rgba(255,255,255,.6),
    93vw 80vh 0 #fff;
  animation: twinkle 5s ease-in-out infinite 1.5s;
}

@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Hero düzeni: solda metin, sağda görsel */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 100%;
}

.hero-text {
  text-align: left;
}

/* Zodyak çemberi görseli */
.hero-visual {
  display: flex;
  justify-content: center;
}

/* Hero görseli: şeffaf zeminli, sayfayla bütünleşik.
   Dikey (544×720) görsel; genişlik kuralı kare görsele göre değil
   dikeye göre ayarlı, yoksa ekranda fazla iri durur. */
.hero-img {
  width: min(300px, 75vw);
  height: auto;
  filter: drop-shadow(0 0 45px rgba(94, 70, 160, 0.35));
  animation: feature-float 8s ease-in-out infinite;
}

.hero-tagline {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero h1 {
  /* En uzun satır "Kader Abla ile Astroloji" (24 karakter); üst sınır 3rem
     ve alt sınır 1.75rem bu satırın 320px'te bile tek parça kalması için. */
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  text-shadow: 0 0 40px rgba(94, 70, 160, 0.5);
}

.hero h1 .h1-satir {
  display: block;
}

.hero h1 .gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 520px;
  margin: 0;
}

/* Butonlar (hizmet kartları ve alt bölümlerde kullanılacak) */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), #d4a038);
  color: #1a1408;
  box-shadow: 0 4px 24px rgba(230, 183, 76, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 183, 76, 0.5);
}

.btn-outline {
  color: var(--gold-soft);
  border: 1px solid rgba(230, 183, 76, 0.45);
}

.btn-outline:hover {
  background: rgba(230, 183, 76, 0.1);
  transform: translateY(-2px);
}

/* Alt kısma yumuşak geçiş */
.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
}

/* ============================================
   İÇ SAYFA ÜST BÖLÜMÜ (page hero)
   ============================================ */

.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  /* Yüzen menü şeridinin arkasına uzar (bkz. .hero'daki not) */
  margin-top: -72px;
  padding-top: 72px;
  background:
    radial-gradient(ellipse 75% 60% at 50% 0%, rgba(94, 70, 160, 0.3), transparent 70%),
    var(--bg-dark);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  /* Yapışkan başlıkla H1 arasındaki nefes payı; ekranla birlikte büyür. */
  padding-top: clamp(58px, 8vw, 92px);
  padding-bottom: clamp(48px, 6vw, 64px);
  max-width: 720px;
}

/* H1, raporun bölüm başlığı tipografisini taşır: serif + beyaz→altın degrade */
.page-hero h1 {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  /* Punto, kullanılabilir genişlikten türer. En uzun satır ("Hesaplama ve
     Yorumlama") font dosyasında 10.7em ölçülüyor; New York değişken fontu
     600 ağırlıkta ve küçük optik boyda belirgin genişlediği için bölen 14
     seçildi (14em'e kadar taşmaz, yani ölçülenin %30 üstüne pay var). */
  font-size: min(2.9rem, calc((100vw - 40px) / 14));
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: var(--gold-soft);
  margin-bottom: 22px;
  text-wrap: balance;
}

/* Kırılma noktası: başlık HER genişlikte iki sabit satırdır
   ("Yükselen Burç / Hesaplama ve Yorumlama" gibi). Serbest sarmaya
   bırakılırsa uzun sayfa adlarında "ve Yorumlama" tek başına sarkıyor. */
.page-hero h1 .h1-satir {
  display: block;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .page-hero h1 {
    background: linear-gradient(120deg, var(--text-light) 25%, var(--gold-soft) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* ✦'lı sönen çizgi (rapor başlıklarının altındakiyle aynı) */
.page-hero h1::after {
  content: "✦";
  display: block;
  margin: 18px auto 0;
  font-size: 0.62rem;
  line-height: 1;
  font-family: "Segoe UI", system-ui, sans-serif;
  background:
    linear-gradient(90deg,
      transparent, rgba(230, 183, 76, 0.55) 30%, transparent 46%,
      transparent 54%, rgba(230, 183, 76, 0.55) 70%, transparent)
    center / min(340px, 72%) 1px no-repeat;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
}

.page-hero-sub {
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 26px;
}

.page-hero-sub strong {
  color: var(--gold-soft);
  font-weight: 500;
}

/* Dar ekranda başlık ve alt metnin nefes payı */
@media (max-width: 430px) {
  .page-hero h1 {
    margin-bottom: 18px;
  }

  .page-hero h1::after {
    margin-top: 14px;
  }

  .page-hero-sub {
    font-size: 1rem;
  }
}

/* Güven rozetleri — üçü her zaman tek satırda yan yana.
   Punto, dolgu ve aralık tek bir font-size'a bağlı; üç rozetin toplamı
   ~29em ettiği için genişliği 30'a bölmek satırın taşmamasını garantiler. */
.trust-badges {
  display: flex;
  justify-content: center;
  /* Üç rozet HER ekranda tek satırdır: toplam genişlik 28,7em ölçüldü
     (✦ Ücretsiz · Detaylı yorum · Kayıt gerektirmez); punto kullanılabilir
     genişlikten türer, bölen 30 ile 320px'te ~276px'e sığar. */
  flex-wrap: nowrap;
  gap: 0.6em;
  list-style: none;
  font-size: min(0.88rem, calc((100vw - 32px) / 30));
}

.trust-badges li {
  padding: 0.52em 0.95em;
  font-size: 1em;
  white-space: nowrap;
  color: var(--gold-soft);
  background: rgba(230, 183, 76, 0.07);
  border: 1px solid rgba(230, 183, 76, 0.25);
  border-radius: 999px;
}

/* ============================================
   ÖZELLİK BÖLÜMLERİ (zigzag: metin + görsel)
   ============================================ */

.feature {
  padding: 60px 0;
}

.feature:first-of-type {
  padding-top: 20px;
}

.feature-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

/* Zigzag: ters bölümlerde görsel solda */
.feature-reverse .feature-text {
  order: 2;
}
.feature-reverse .feature-visual {
  order: 1;
}

.feature-kicker {
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.9;
}

.feature h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.feature-text > p {
  color: var(--text-muted);
  font-size: 1.04rem;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  margin-bottom: 30px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--text-light);
  font-size: 0.99rem;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

/* Görsel tarafı */
.feature-visual {
  display: flex;
  justify-content: center;
}

.feature-visual svg {
  width: min(420px, 88vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(94, 70, 160, 0.35));
  animation: feature-float 7s ease-in-out infinite;
}

/* Bölüm görseli (SVG yerine geçen webp illüstrasyonlar) */
.feature-img {
  width: min(300px, 75vw);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(94, 70, 160, 0.35));
  animation: feature-float 7s ease-in-out infinite;
}

@keyframes feature-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ============================================
   HESAPLAMA FORMU
   ============================================ */

.calc-section {
  padding: 10px 0 70px;
}

.calc-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 38px 34px 30px;
  background: linear-gradient(160deg, rgba(94, 70, 160, 0.12), rgba(13, 16, 38, 0.7));
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 28px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Etiket + ipucu aynı satırda */
.label-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.75;
  font-style: italic;
}

/* Çoklu seçici satırları */
.field-row {
  display: grid;
  gap: 12px;
}

.field-row-2 {
  grid-template-columns: 1fr 1fr;
}

.field-row-3 {
  grid-template-columns: 0.8fr 1.2fr 1fr;
}

.field-row-time {
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.time-sep {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="date"],
.form-field input[type="time"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-light);
  background: rgba(13, 16, 38, 0.7);
  border: 1px solid rgba(230, 183, 76, 0.25);
  border-radius: 12px;
  color-scheme: dark; /* tarih/saat seçicileri koyu temada açılır */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(230, 183, 76, 0.6);
  box-shadow: 0 0 0 3px rgba(230, 183, 76, 0.12);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-field input::placeholder {
  color: rgba(168, 169, 189, 0.55);
}

.form-field input:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23e6b74c' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* Tam genişlik buton */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
}

.privacy-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.8;
}

/* ============ SONUÇ ALANI: KAPAK KARTI ============ */
.result-section {
  padding: 34px 0 10px;
}

.result-cover {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 46px 34px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(94, 70, 160, 0.28), transparent),
    linear-gradient(160deg, rgba(94, 70, 160, 0.14), rgba(13, 16, 38, 0.85));
  background-color: #10132c;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  scroll-margin-top: 96px;
}

.result-cover::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.result-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.result-name {
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-soft);
  margin-bottom: 10px;
  overflow-wrap: break-word;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .result-name {
    background: linear-gradient(120deg, var(--text-light) 20%, var(--gold-soft) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.result-birth {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.result-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.result-chips li {
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--gold-soft);
  border: 1px solid var(--border-soft);
  background: rgba(230, 183, 76, 0.06);
  letter-spacing: 0.02em;
}

/* ---- Rapor eylem çubuğu (kapak kartının içinde, verinin altında) ---- */
.report-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

/* "Yeniden Hesapla": buton değil, ince metin bağlantısı */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 6px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: 0;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.link-btn:hover,
.link-btn:focus-visible {
  opacity: 1;
  color: var(--gold-soft);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-light);
  background: rgba(94, 70, 160, 0.18);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease,
              background-color 0.2s ease, filter 0.2s ease;
}

.btn-action:hover,
.btn-action:focus-visible {
  background: rgba(94, 70, 160, 0.3);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
}

/* Birincil eylem: altın dolgulu */
.btn-action-primary {
  color: #14172e;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: rgba(230, 183, 76, 0.55);
  box-shadow: 0 6px 22px rgba(230, 183, 76, 0.22);
}

.btn-action-primary:hover,
.btn-action-primary:focus-visible {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  filter: brightness(1.06);
  box-shadow: 0 8px 28px rgba(230, 183, 76, 0.32);
}

.btn-action:active {
  transform: translateY(1px);
}

.btn-ikon {
  font-size: 1.02em;
  line-height: 1;
}

/* ---- Kart önizleme penceresi ---- */
.kart-pencere {
  position: relative;
  /* Modal dialog tarayıcıda inset:0 + margin:auto ile ortalanır; dosyanın
     başındaki evrensel margin sıfırlaması bunu ezdiği için geri veriliyor. */
  margin: auto;
  max-width: min(92vw, 460px);
  max-height: 90vh;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(94, 70, 160, 0.18), #10132c);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  color: var(--text-light);
  overflow: visible;
}

.kart-pencere::backdrop {
  background: rgba(6, 8, 22, 0.78);
  backdrop-filter: blur(4px);
}

.kart-gorsel {
  display: block;
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  border-radius: 16px;
  background: var(--bg-dark);
}

.kart-eylem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.kart-kapat {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  font-size: 1.35rem;
  line-height: 1;
  font-family: inherit;
  color: var(--text-light);
  background: #1a1e3d;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.kart-kapat:hover,
.kart-kapat:focus-visible {
  color: var(--gold-soft);
  border-color: var(--gold);
}

@media (max-width: 430px) {
  .kart-pencere {
    padding: 14px 14px 16px;
  }

  .kart-gorsel {
    max-height: 58vh;
  }
}

@media (max-width: 430px) {
  .btn-action {
    padding: 12px 18px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-action { transition: none; }
}

/* ---- Rapor akışı: omurga ve düğümler ---- */
.report-flow {
  position: relative;
}

/* Omurga, bölümleri birbirine bağlayan boşluklara çizilir (bkz. .result-block::before).
   Tek parça çizgi kartların arkasından geçtiği için, kart belirirken saydamken
   ortada boydan boya görünüyordu. */

/* Kapak kartında aşağı kaydırma işareti */
.scroll-cue {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
}

.scroll-cue-ok {
  color: var(--gold);
  font-size: 1.05rem;
  animation: cueFloat 1.7s ease-in-out infinite;
}

@keyframes cueFloat {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(4px); }
}

/* Rapor bölümleri */
.result-block {
  --omurga-bosluk: 64px;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: var(--omurga-bosluk) auto 0;
  padding: 44px 48px 40px;
  background:
    radial-gradient(ellipse 75% 40% at 50% 0%, rgba(94, 70, 160, 0.16), transparent),
    linear-gradient(160deg, rgba(94, 70, 160, 0.10), rgba(13, 16, 38, 0.7));
  background-color: #10132c;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: coverReveal 0.6s ease;
  scroll-margin-top: 96px;
}

/* Yıldız ipi düğümü + üstteki bölüme bağlayan omurga parçası.
   Çizgi yalnız boşlukta yaşar; kartın arkasına hiç girmez. */
.result-block::before {
  content: "✦";
  position: absolute;
  top: calc(-1 * var(--omurga-bosluk));
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: var(--omurga-bosluk);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  opacity: 0.85;
  background-image: linear-gradient(180deg,
    rgba(230, 183, 76, 0.28) 0 32%,
    transparent 32% 68%,
    rgba(230, 183, 76, 0.28) 68% 100%);
  background-size: 1px 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

/* Kart üstü ince altın ışık çizgisi (kapakla aynı imza) */
.result-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(230, 183, 76, 0.7), transparent);
}

/* Bölüm başlığı: serifli, altın degrade başlık + ✦'lı ince çizgi (PDF stili) */
.bolum-baslik {
  text-align: center;
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  color: var(--gold-soft);
  margin-bottom: 26px;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .bolum-baslik {
    background: linear-gradient(120deg, var(--text-light) 25%, var(--gold-soft) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.bolum-baslik::after {
  content: "✦";
  display: block;
  margin: 14px auto 0;
  font-size: 0.62rem;
  line-height: 1;
  font-family: "Segoe UI", system-ui, sans-serif;
  background:
    linear-gradient(90deg,
      transparent, rgba(230, 183, 76, 0.55) 30%, transparent 46%,
      transparent 54%, rgba(230, 183, 76, 0.55) 70%, transparent)
    center / min(340px, 72%) 1px no-repeat;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
}

/* Köşe bölüm numarası (sol üst — künyenin simetriği) */
.bolum-numara {
  position: absolute;
  top: 15px;
  left: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.45;
  pointer-events: none;
}

/* Kaydırdıkça beliren bölümler */
.result-block.belirir {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.result-block.belirir.gorunur {
  opacity: 1;
  transform: none;
}

/* Mini üstbilgi (künye filigranı) */
.report-kunye {
  position: absolute;
  top: 15px;
  right: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  opacity: 0.5;
  pointer-events: none;
}

/* Yorum bölümleri (yükselen + gezegen profilleri) */
.yorum-icerik {
  max-width: 640px;
  margin: 0 auto;
}

.yorum-veri {
  text-align: center;
  margin-bottom: 24px;
}

.yorum-veri-cip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(230, 183, 76, 0.06);
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.cip-sembol {
  font-size: 1.15rem;
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
}

/* Bölüm madalyonu: büyük burç sembolü + ad + derece */
.yorum-madalyon-alan {
  text-align: center;
  margin-bottom: 30px;
}

.yorum-madalyon {
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: var(--gold-soft);
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
  background:
    radial-gradient(circle at 50% 30%, rgba(94, 70, 160, 0.35), transparent 70%),
    rgba(20, 24, 52, 0.9);
  border: 1.5px solid rgba(230, 183, 76, 0.5);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(230, 183, 76, 0.06),
    0 0 34px rgba(94, 70, 160, 0.45);
}

.yorum-madalyon-detay {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.yorum-p {
  color: #b3b4c8;
  font-size: 1.01rem;
  margin-bottom: 18px;
  line-height: 1.8;
}

/* Ev cusp bölümleri: tanıtım + çift kart + çipler */
.ev-tanitim {
  font-family: "New York", ui-serif, Georgia, serif;
  font-style: italic;
  color: #a9abc4;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 22px;
  line-height: 1.75;
  font-size: 1.02rem;
}

.ev-kartlar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 26px;
}

@media (max-width: 640px) {
  .ev-kartlar { grid-template-columns: 1fr; }
}

.ev-kart {
  border: 1px solid rgba(230, 183, 76, 0.18);
  border-radius: 12px;
  background: rgba(94, 70, 160, 0.08);
  padding: 16px 18px;
}

.ev-kart-ust {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(230, 183, 76, 0.72);
  margin-bottom: 5px;
}

.ev-kart-baslik {
  font-family: "New York", ui-serif, Georgia, serif;
  font-style: italic;
  color: #dfe1f2;
  font-size: 1.1rem;
  margin-bottom: 13px;
}

.cip-listesi {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.cip-listesi li {
  border: 1px solid rgba(226, 228, 245, 0.28);
  border-radius: 8px;
  padding: 4px 12px;
  font-family: "New York", ui-serif, Georgia, serif;
  font-size: 0.84rem;
  color: #c7c9dd;
  white-space: nowrap;
}

/* Kategori renkleri (soluk, koyu zemine uyarlı) */
.cip-listesi .cip-ates    { background: rgba(224, 102, 102, 0.10); border-color: rgba(224, 102, 102, 0.40); color: #e8a5a5; }
.cip-listesi .cip-toprak  { background: rgba(126, 190, 120, 0.10); border-color: rgba(126, 190, 120, 0.38); color: #aed4aa; }
.cip-listesi .cip-hava    { background: rgba(120, 170, 225, 0.10); border-color: rgba(120, 170, 225, 0.40); color: #a8c9e9; }
.cip-listesi .cip-su      { background: rgba(150, 120, 220, 0.12); border-color: rgba(150, 120, 220, 0.42); color: #c0aee9; }
.cip-listesi .cip-kose    { background: rgba(230, 183, 76, 0.10);  border-color: rgba(230, 183, 76, 0.42);  color: #e6ce93; }
.cip-listesi .cip-ardil   { background: rgba(120, 170, 225, 0.10); border-color: rgba(120, 170, 225, 0.40); color: #a8c9e9; }
.cip-listesi .cip-kadent  { background: rgba(226, 130, 160, 0.10); border-color: rgba(226, 130, 160, 0.40); color: #e6a8bd; }
.cip-listesi .cip-oncu    { background: rgba(126, 190, 120, 0.10); border-color: rgba(126, 190, 120, 0.38); color: #aed4aa; }
.cip-listesi .cip-sabit   { background: rgba(235, 160, 90, 0.10);  border-color: rgba(235, 160, 90, 0.40);  color: #ecc09a; }
.cip-listesi .cip-degisken{ background: rgba(150, 120, 220, 0.12); border-color: rgba(150, 120, 220, 0.42); color: #c0aee9; }

/* Açı Profili: madde araları, sembol satırı, rozetler */
.aci-madde + .aci-madde { margin-top: 38px; }

.aci-semboller {
  color: var(--gold);
  font-size: 0.95em;
  margin-left: 10px;
  letter-spacing: 4px;
  white-space: nowrap;
}

.aci-rozetler { margin: 10px 0 16px; }

/* Ev Profilleri girişindeki sembolik 12 ev çarkı */
.evler-carki {
  max-width: 390px;
  margin: 22px auto;
}

.evler-carki svg {
  display: block;
  width: 100%;
  height: auto;
}

/* İlk paragrafın ilk harfi: tezhip tarzı büyük altın harf
   (madalyon alanından hemen sonraki paragrafı hedefler) */
.yorum-madalyon-alan + .yorum-p::first-letter {
  float: left;
  font-size: 3.1em;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* Vurgu alıntısı: soldan altın çubuklu kutu, serifli italik metin */
.yorum-vurgu {
  position: relative;
  margin: 26px 0;
  padding: 22px 26px 20px 58px;
  border-left: 3px solid var(--gold);
  border-radius: 0 14px 14px 0;
  background: rgba(230, 183, 76, 0.05);
  color: var(--gold-soft);
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.015em;
  line-height: 1.65;
}

.yorum-vurgu::before {
  content: "\201C";
  position: absolute;
  left: 18px;
  top: 8px;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
}

.ders-kutu {
  margin: 28px 0;
  padding: 24px 26px;
  text-align: center;
  border: 1px solid rgba(146, 116, 210, 0.45);
  outline: 1px solid rgba(146, 116, 210, 0.2);
  outline-offset: -6px;
  background:
    radial-gradient(ellipse 85% 70% at 50% 0%, rgba(94, 70, 160, 0.28), transparent),
    rgba(94, 70, 160, 0.10);
  border-radius: 16px;
}

/* Alt başlıklar: serif + altında ✦'lı mini ayraç (PDF stili) */
.ders-etiket,
.etiket-baslik,
.profil-alt-baslik {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold-soft);
}

.ders-etiket::after,
.etiket-baslik::after,
.profil-alt-baslik::after {
  content: "✦";
  display: block;
  margin: 9px auto 0;
  font-size: 0.5rem;
  line-height: 1;
  color: var(--gold);
  font-family: "Segoe UI", system-ui, sans-serif;
  background:
    linear-gradient(90deg,
      transparent, rgba(230, 183, 76, 0.45) 28%, transparent 45%,
      transparent 55%, rgba(230, 183, 76, 0.45) 72%, transparent)
    center / 140px 1px no-repeat;
}

.ders-etiket {
  margin-bottom: 12px;
}

/* Gezegen profili: alt bölüm başlığı — uzun metinde sola dayalı (PDF düzeni) */
.profil-alt-baslik {
  text-align: left;
  font-size: 1.3rem;
  margin: 34px 0 18px;
}

.profil-alt-baslik::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  margin: 10px 0 0;
  background: linear-gradient(90deg, rgba(230, 183, 76, 0.55), transparent);
}

/* Bölümün en üstünde başlayan alt başlık (devam sayfası düzeni) */
.profil-alt-baslik-ilk {
  margin-top: 4px;
}

.retro-mini {
  color: var(--gold);
  font-size: 0.75em;
  vertical-align: 3px;
}

/* Gezegen tanım kutusu (sembol metnin içinde yüzer — PDF düzeni) */
.tanim-kutu {
  margin: 8px 0 8px;
  padding: 24px 26px;
  border: 1px solid var(--border-soft);
  outline: 1px solid rgba(230, 183, 76, 0.14);
  outline-offset: -5px;
  border-radius: 14px;
  background:
    radial-gradient(ellipse 60% 90% at 0% 0%, rgba(230, 183, 76, 0.07), transparent),
    rgba(230, 183, 76, 0.03);
}

.tanim-kutu::after {
  content: "";
  display: block;
  clear: both;
}

.tanim-kutu p {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Sembol metnin içinde sola yüzer; ilk iki satır yanından akar */
.tanim-sembol {
  position: relative;
  float: left;
  margin: 3px 18px 2px 0;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.9;
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
  text-shadow: 0 0 24px rgba(230, 183, 76, 0.35);
}

/* Güneş ikonu: halka + ortada dolgun nokta (font glifi yerine çizim) */
.tanim-sembol-gunes {
  display: block;
  width: 46px;
  height: 46px;
  border: 2.5px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(230, 183, 76, 0.3);
}

.tanim-sembol-gunes::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  background: var(--gold);
  border-radius: 50%;
}

/* Yan bilgi kartı (burç / ev tanıtımı) */
.bilgi-kart {
  float: right;
  width: 240px;
  margin: 6px 0 14px 22px;
  padding: 16px 18px;
  border: 1px solid rgba(146, 116, 210, 0.32);
  border-radius: 14px;
  background: linear-gradient(170deg, rgba(94, 70, 160, 0.18), rgba(13, 16, 38, 0.35));
}

.bilgi-kart-baslik {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.bilgi-kart-baslik span {
  color: var(--gold);
  text-transform: none;
}

.bilgi-kart p:last-child {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.akis-temizle {
  clear: both;
}

@media (max-width: 700px) {
  .bilgi-kart {
    float: none;
    width: 100%;
    margin: 0 0 18px;
  }
}

.ders-metin {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.6;
}

.etiket-sutunlar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.etiket-baslik {
  text-align: center;
  margin: 24px 0 14px;
}

.etiketler {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.etiketler li {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.85rem;
  padding: 8px 15px;
  border-radius: 10px;
  letter-spacing: 0.03em;
  outline-offset: -4px;
}

/* Masaüstünde etiket sıraları metin sütunundan taşabilir — tek satıra sığsınlar */
@media (min-width: 700px) {
  .yorum-icerik .etiketler {
    margin-inline: -40px;
  }
}

.etiketler li::before {
  margin-right: 7px;
  font-size: 0.72em;
  vertical-align: 1px;
}

/* Olumlu: altın yıldız mühürleri (çift çerçeveli antika etiket) */
.etiketler-olumlu li {
  color: var(--gold-soft);
  border: 1px solid rgba(230, 183, 76, 0.45);
  outline: 1px solid rgba(230, 183, 76, 0.22);
  background: radial-gradient(circle at 30% 25%, rgba(230, 183, 76, 0.16), rgba(230, 183, 76, 0.04));
  box-shadow: 0 0 14px rgba(230, 183, 76, 0.10);
}

.etiketler-olumlu li::before {
  content: "✦";
  color: var(--gold);
}

/* Gölge: ay sembollü alacakaranlık tılsımları (çift çerçeveli antika etiket) */
.etiketler-olumsuz li {
  color: #c9b9e6;
  border: 1px solid rgba(146, 116, 210, 0.42);
  outline: 1px solid rgba(146, 116, 210, 0.2);
  background: radial-gradient(circle at 30% 25%, rgba(94, 70, 160, 0.30), rgba(13, 16, 38, 0.5));
  box-shadow: inset 0 0 12px rgba(13, 16, 38, 0.5);
}

.etiketler-olumsuz li::before {
  content: "☽";
  color: #a58bd8;
}

/* Arka kapak */
.report-backcover {
  text-align: center;
  padding-top: 44px;
  padding-bottom: 44px;
}

.backcover-star {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 14px;
  opacity: 0.9;
}

.backcover-title {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 14px;
}

.backcover-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  margin: 0 auto;
}

.backcover-note strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Harita çarkı (SVG) */
.chart-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.chart-wrap svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Çark lejantı */
.cark-lejant {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  margin-top: 18px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.cark-lejant li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lejant-cizgi {
  display: inline-block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
}

.lejant-uyum {
  background: rgba(118, 196, 167, 0.85);
}

.lejant-gerilim {
  background: rgba(216, 118, 130, 0.85);
}

.lejant-r {
  color: var(--gold);
  font-size: 0.95rem;
  line-height: 1;
}

.cark-halka-dis {
  fill: none;
  stroke: rgba(230, 183, 76, 0.4);
  stroke-width: 1.5;
}

.cark-band {
  fill: none;
  stroke: rgba(94, 70, 160, 0.16);
}

.cark-halka {
  fill: none;
  stroke: rgba(230, 183, 76, 0.22);
  stroke-width: 1;
}

.cark-halka-ic {
  fill: rgba(13, 16, 38, 0.5);
  stroke: rgba(230, 183, 76, 0.28);
  stroke-width: 1;
}

.cark-aci {
  stroke-width: 1;
  opacity: 0.6;
}

.cark-aci-uyum {
  stroke: rgba(118, 196, 167, 0.75);
}

.cark-aci-gerilim {
  stroke: rgba(216, 118, 130, 0.75);
}

.cark-nokta {
  fill: var(--gold-soft);
  opacity: 0.8;
}

.cark-cip {
  fill: rgba(20, 24, 52, 0.92);
  stroke: rgba(230, 183, 76, 0.45);
  stroke-width: 1.2;
}

.cark-retro-cip {
  fill: rgba(230, 183, 76, 0.14);
  stroke: rgba(230, 183, 76, 0.5);
  stroke-width: 0.8;
}

.cark-cizgi {
  stroke: rgba(168, 169, 189, 0.22);
  stroke-width: 1;
}

.cark-eksen {
  stroke: rgba(230, 183, 76, 0.65);
  stroke-width: 1.6;
}

.cark-centik {
  stroke: rgba(168, 169, 189, 0.3);
  stroke-width: 1;
}

.cark-burc,
.cark-gezegen,
.cark-merkez {
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
}

.cark-burc {
  fill: var(--gold-soft);
  font-size: 22px;
}

.cark-evno {
  fill: var(--text-muted);
  font-size: 13px;
  opacity: 0.85;
}

.cark-gezegen {
  fill: var(--gold-soft);
  font-size: 19px;
}

.cark-retro {
  fill: var(--gold);
  font-size: 8.5px;
}

.cark-derece {
  fill: var(--text-muted);
  font-size: 11px;
}

.cark-gezegen-centik {
  stroke: var(--gold);
  stroke-width: 1.6;
}

.cark-baglanti {
  stroke: rgba(230, 183, 76, 0.28);
  stroke-width: 0.7;
}

.cark-eksen-etiket {
  fill: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.cark-merkez {
  fill: var(--gold);
  font-size: 17px;
  opacity: 0.65;
}

@media (max-width: 768px) {
  .result-block {
    --omurga-bosluk: 52px;
    padding: 30px 18px 28px;
  }
}

/* Yükleme sahnesi */
.result-loading {
  max-width: 760px;
  margin: 0 auto;
  padding: 52px 20px;
  text-align: center;
}

.loading-orb {
  position: relative;
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 2px solid rgba(230, 183, 76, 0.15);
  border-top-color: var(--gold);
  animation: orbSpin 1.1s linear infinite;
}

.loading-orb span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: var(--gold);
  animation: orbSpin 1.1s linear infinite reverse, starPulse 1.4s ease-in-out infinite;
}

@keyframes orbSpin {
  to { transform: rotate(360deg); }
}

@keyframes starPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.loading-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.loading-text.degisti {
  animation: textFade 0.45s ease;
}

.result-cover:not([hidden]) {
  animation: coverReveal 0.6s ease;
}

@keyframes textFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

@keyframes coverReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .result-cover {
    padding: 34px 20px 30px;
  }

  .result-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .result-birth {
    font-size: 0.95rem;
  }
}

/* ============================================
   İÇ SAYFA İÇERİK BÖLÜMLERİ
   ============================================ */

.info-section {
  padding: 44px 0;
}

.info-section h2 {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.info-narrow {
  max-width: 760px;
}

.info-section > .container > p,
.info-narrow p {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.info-narrow p strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.info-sub {
  text-align: center;
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 34px !important;
}

/* Devamını Gör bloğu */
.info-expand {
  position: relative;
  max-height: 340px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.info-expand.open {
  max-height: 14000px;
}

.info-expand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, var(--bg-dark) 85%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.info-expand.open::after {
  opacity: 0;
}

.info-expand h2 {
  text-align: left;
  font-size: 1.35rem;
  margin-top: 30px;
}

.info-expand h2:first-child {
  margin-top: 0;
}

.expand-btn {
  display: block;
  margin: 18px auto 0;
  padding: 11px 28px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-soft);
  background: none;
  border: 1px solid rgba(230, 183, 76, 0.45);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.expand-btn:hover {
  background: rgba(230, 183, 76, 0.1);
  transform: translateY(-2px);
}

.expand-btn .chev {
  display: inline-block;
  margin-left: 4px;
  color: var(--gold);
}

/* Yasal / kurumsal sayfalar (gizlilik, koşullar, hakkımızda, iletişim) */

/* Sade hero: altında form kartı olmayan sayfalarda H1 ile içerik
   arasındaki nefes payı daraltılır (araç sayfalarında o boşluğu
   form dolduruyor, burada boş kalıyordu). */
.page-hero-yalin .page-hero-content {
  padding-bottom: 8px;
}

.page-hero-yalin + .info-section,
.page-hero-yalin + .calc-section {
  padding-top: 20px;
}

.yasal-icerik h2 {
  text-align: left;
  font-size: 1.35rem;
  margin: 30px 0 10px;
}

.yasal-icerik h2:first-child {
  margin-top: 0;
}

.yasal-icerik a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(230, 183, 76, 0.35);
}

.yasal-icerik a:hover {
  color: var(--gold);
}

.yasal-tarih {
  margin-top: 34px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Diğer araçlar kartları */
.tools-title {
  margin-bottom: 24px;
}

.tool-links {
  display: grid;
  grid-template-columns: 1fr 1fr; /* kartlar yan yana */
  gap: 14px;
}

@media (max-width: 640px) {
  .tool-links {
    grid-template-columns: 1fr; /* mobilde alt alta */
  }
}

.tool-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 30px 24px 24px;
  text-decoration: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(94, 70, 160, 0.22), transparent),
    linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(13, 16, 38, 0.65));
  border: 1px solid var(--border-soft);
  outline: 1px solid rgba(230, 183, 76, 0.12);
  outline-offset: -6px;
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tool-link::before {
  /* Üst kenarda incecik altın ışık çizgisi */
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 183, 76, 0.55), transparent);
}

.tool-link:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 183, 76, 0.5);
  box-shadow:
    0 22px 44px -24px rgba(0, 0, 0, 0.8),
    0 0 34px -14px rgba(230, 183, 76, 0.35);
}

.tool-glyph {
  flex-shrink: 0;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--gold);
  background: radial-gradient(circle at 50% 35%, rgba(230, 183, 76, 0.14), rgba(230, 183, 76, 0.04));
  border: 1px solid rgba(230, 183, 76, 0.35);
  box-shadow: 0 0 0 5px rgba(230, 183, 76, 0.05);
  border-radius: 50%;
  text-shadow: 0 0 14px rgba(230, 183, 76, 0.55);
  transition: box-shadow 0.25s ease, text-shadow 0.25s ease;
}

.tool-link:hover .tool-glyph {
  box-shadow: 0 0 0 5px rgba(230, 183, 76, 0.1), 0 0 24px rgba(230, 183, 76, 0.2);
  text-shadow: 0 0 20px rgba(230, 183, 76, 0.85);
}

.tool-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tool-text strong {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--text-light);
  font-size: 1.14rem;
  letter-spacing: 0.01em;
}

.tool-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tool-arrow {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.tool-arrow::before {
  content: "Hesapla";
}

.tool-link:hover .tool-arrow {
  color: var(--gold);
}

/* ============================================
   SSS (SIKÇA SORULAN SORULAR)
   ============================================ */

.faq {
  padding: 60px 0 90px;
}

.faq-inner {
  max-width: 800px;
}

.faq-kicker {
  text-align: center;
}

.faq h2 {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 36px;
}

.faq-item {
  background: linear-gradient(160deg, rgba(94, 70, 160, 0.1), rgba(13, 16, 38, 0.6));
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(230, 183, 76, 0.4);
}

.faq-item summary {
  position: relative;
  padding: 18px 52px 18px 22px;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none; /* varsayılan ok işaretini kaldır */
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none; /* Safari varsayılan oku */
}

/* Soru başlıkları (h3) görünümü summary ile aynı kalsın */
.faq-item summary h3 {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* + / − göstergesi */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
  border: 1px solid rgba(230, 183, 76, 0.4);
  border-radius: 50%;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item[open] summary {
  color: var(--gold-soft);
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  background: rgba(230, 183, 76, 0.12);
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--bg-dark), #0a0c1e);
}

/* Üstteki dekoratif kapanış satırı */
.footer-cta {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-soft);
}

.footer-cta p {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-cta p span {
  color: var(--gold);
}

/* Ana footer alanı */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-col h3 {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

/* Alt telif şeridi */
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-note {
  opacity: 0.75;
}

/* Hareket azaltma tercihi olan kullanıcılar için animasyonları kapat */
@media (prefers-reduced-motion: reduce) {
  .stars-1::before,
  .stars-2::before,
  .hero-img,
  .feature-visual svg,
  .feature-img,
  .loading-orb,
  .loading-orb span,
  .loading-text.degisti,
  .scroll-cue-ok,
  .result-block,
  .result-cover:not([hidden]) {
    animation: none;
  }
}

/* ============================================
   MOBİL GÖRÜNÜM
   ============================================ */

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  /* Açılır menü: kapsülün altında yüzen yuvarlatılmış kart */
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    border-radius: 22px;
    /* Zemin OPAK olmalı: blur desteklemeyen tarayıcılarda yarı saydam
       zemin, arkadaki butonları menünün içinden gösteriyordu (yaşandı). */
    background: rgb(18, 21, 44);
    -webkit-backdrop-filter: blur(16px) saturate(1.4); /* iOS Safari */
    backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(230, 183, 76, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    padding: 12px;
  }

  .main-nav a {
    padding: 12px 18px;
  }

  /* Hero – mobil: tek sütun, görsel metnin altında */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto;
    font-size: 1.02rem;
  }

  .hero-img {
    width: min(320px, 84vw); /* görsel ekrana göre küçülür, asla taşmaz */
  }

  /* Özellik bölümleri – mobil: tek sütun, önce metin sonra görsel */
  .feature {
    padding: 40px 0;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-reverse .feature-text {
    order: 1; /* mobilde her zaman önce metin */
  }
  .feature-reverse .feature-visual {
    order: 2;
  }

  .feature-visual svg {
    width: min(320px, 84vw);
  }

  .feature-text .btn {
    display: block;
    text-align: center;
    max-width: 340px;
  }

  /* Hesaplama formu – mobil */
  .calc-card {
    padding: 26px 18px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-field input,
  .form-field select {
    padding: 12px 12px;
  }

  .field-row-3 {
    gap: 8px;
  }

  /* SSS – mobil */
  .faq {
    padding: 40px 0 60px;
  }

  .faq-item summary {
    padding: 16px 48px 16px 16px;
    font-size: 0.98rem;
  }

  .faq-item p {
    padding: 0 16px 18px;
  }

  /* Footer – mobil */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   KÜÇÜK TELEFONLAR (≤ 400px, örn. iPhone SE)
   ============================================ */

@media (max-width: 400px) {
  .hero-tagline {
    font-size: 0.8rem;
    letter-spacing: 2.5px;
  }

  .logo-img {
    height: 22px;
  }

  .container {
    padding-inline: 16px;
  }

  .site-header {
    padding: 0 10px;
  }

  .header-inner {
    padding-left: 18px;
  }
}

/* ============================================================
   NUMEROLOJİ RAPORU
   Doğum haritası raporunun tipografisini aynen kullanır;
   burada yalnız sayıya özgü bileşenler tanımlıdır.
   ============================================================ */

/* Bölüm açılış paragrafında drop-cap */
.yorum-p-ilk::first-letter {
  float: left;
  font-size: 3.1em;
  line-height: 0.85;
  padding: 4px 10px 0 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- Sayı madalyonu: her sayı bölümünün görsel çapası ---- */
.sayi-madalyon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 auto 26px;
  padding: 22px 18px 18px;
  width: min(230px, 100%);
  text-align: center;
  border: 1px solid rgba(230, 183, 76, 0.32);
  outline: 1px solid rgba(230, 183, 76, 0.14);
  outline-offset: -6px;
  border-radius: 50% / 34%;
  background:
    radial-gradient(ellipse 80% 70% at 50% 15%, rgba(230, 183, 76, 0.14), transparent),
    radial-gradient(ellipse 90% 80% at 50% 110%, rgba(94, 70, 160, 0.24), transparent);
}

.sayi-madalyon-ust {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sayi-madalyon-rakam {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 13vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold-soft);
  text-shadow: 0 0 26px rgba(230, 183, 76, 0.28);
}

.sayi-madalyon-sifat {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--gold);
}

/* ---- Çekirdek sayı ızgarası (özet; paragraf yok) ---- */
.cekirdek-izgara {
  display: grid;
  /* 320 px ekranda rapor içi alan 252 px; iki sütun kalabilmesi için
     alt sınır 112 px. 136 px olsaydı tek sütuna düşüp yedi kart alt alta
     dizilirdi. */
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.cekirdek-kart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 10px 14px;
  text-align: center;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(94, 70, 160, 0.18), transparent),
    rgba(230, 183, 76, 0.03);
}

.cekirdek-ad {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  /* "DOĞUM GÜNÜ" gibi iki satıra düşen etiketler yüzünden komşu
     kartların rakamları hizadan kaymasın */
  min-height: 2.5em;
  display: flex;
  align-items: center;
  text-align: center;
}

.cekirdek-rakam {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1.15;
  color: var(--gold-soft);
}

.cekirdek-sifat {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.86rem;
  color: var(--gold);
}

/* ---- "Bu sayı nasıl hesaplandı" kutusu ---- */
.hesap-kutu {
  margin: 24px 0;
  padding: 18px 22px 16px;
  border: 1px dashed rgba(230, 183, 76, 0.3);
  border-radius: 14px;
  background: rgba(230, 183, 76, 0.025);
}

.hesap-baslik {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1rem;
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.hesap-satir {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-muted);
  overflow-wrap: anywhere;
}

.hesap-satir b {
  color: var(--gold-soft);
  font-weight: 600;
}

.hesap-sonuc {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(230, 183, 76, 0.16);
  font-size: 0.95rem;
  color: var(--gold-soft);
}

/* ---- Sayının nitelikleri (gezegen, gün, renk, taş, uyumlu) ---- */
.sayi-ozellik {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 10px;
  margin: 24px 0;
}

.sayi-ozellik div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 10px;
  text-align: center;
  border: 1px solid var(--border-soft);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
}

.sayi-ozellik span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.sayi-ozellik b {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold-soft);
}

@media (max-width: 420px) {
  .sayi-madalyon { width: 100%; border-radius: 24px; }
}

/* Kişisel yıl önerileri: ✦ işaretli sade liste */
.oneri-listesi {
  list-style: none;
  margin: 6px 0 8px;
}

.oneri-listesi li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  color: #b3b4c8;
  font-size: 1rem;
  line-height: 1.7;
}

.oneri-listesi li::before {
  content: "✦";
  position: absolute;
  left: 4px;
  top: 1px;
  font-size: 0.72em;
  color: var(--gold);
}

/* ---- Harf tablosu şeridi: ismin harfleri ve sayı değerleri ---- */
.harf-seridi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 22px 0 10px;
}

.harf {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
  padding: 7px 4px 5px;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: opacity 0.2s ease;
}

.harf b {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.1;
}

.harf i {
  font-style: normal;
  font-size: 0.76rem;
  opacity: 0.75;
  margin-top: 2px;
}

/* Sesliler altın, sessizler mor: raporun renk dili */
.harf.sesli {
  color: var(--gold-soft);
  border-color: rgba(230, 183, 76, 0.4);
  background: radial-gradient(circle at 30% 25%, rgba(230, 183, 76, 0.16), rgba(230, 183, 76, 0.04));
}

.harf.sessiz {
  color: #c9b9e6;
  border-color: rgba(146, 116, 210, 0.38);
  background: radial-gradient(circle at 30% 25%, rgba(94, 70, 160, 0.28), rgba(13, 16, 38, 0.45));
}

/* Ruh Arzusu / Kişilik bölümlerinde ilgisiz harfler geri çekilir */
.harf.sonuk {
  opacity: 0.26;
}

.harf-lejant {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.harf-nokta {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: -1px;
}

.harf-nokta.sesli { background: var(--gold); }
.harf-nokta.sessiz { background: #8f76c8; }

@media (max-width: 420px) {
  .harf { min-width: 32px; padding: 6px 3px 4px; }
  .harf b { font-size: 1.02rem; }
}

/* ---- İsmin rakam dağılımı: 1-9 arası frekans ---- */
.rakam-dagilim {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
  margin: 22px 0 26px;
}

.dagilim-hucre {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
}

.dagilim-hucre b {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--gold-soft);
}

.dagilim-hucre i {
  font-style: normal;
  font-size: 0.66rem;
  color: var(--text-muted);
}

/* Eksik rakam: karmik ders */
.dagilim-hucre.yok {
  border-color: rgba(146, 116, 210, 0.4);
  background: rgba(94, 70, 160, 0.16);
}
.dagilim-hucre.yok b { color: #8f8fae; }

/* En sık geçen: gizli tutku */
.dagilim-hucre.tutku {
  border-color: rgba(230, 183, 76, 0.55);
  outline: 1px solid rgba(230, 183, 76, 0.22);
  outline-offset: -4px;
  background: radial-gradient(circle at 50% 20%, rgba(230, 183, 76, 0.2), rgba(230, 183, 76, 0.05));
}

/* Karmik ders / gizli tutku paragraflarının başındaki rakam */
.ders-rakam {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 9px;
  border-radius: 8px;
  font-family: "New York", ui-serif, Georgia, serif;
  font-size: 0.92rem;
  vertical-align: -5px;
  color: #c9b9e6;
  border: 1px solid rgba(146, 116, 210, 0.45);
  background: rgba(94, 70, 160, 0.22);
}

.ders-rakam.tutku {
  color: var(--gold-soft);
  border-color: rgba(230, 183, 76, 0.45);
  background: rgba(230, 183, 76, 0.1);
}

@media (max-width: 440px) {
  .rakam-dagilim { gap: 4px; }
  .dagilim-hucre { padding: 8px 1px 6px; }
  .dagilim-hucre b { font-size: 0.98rem; }
  .dagilim-hucre i { font-size: 0.6rem; }
}

/* ---- Sayı Karesi (Lo Shu) SVG ---- */
.kare-sarmal {
  display: flex;
  justify-content: center;
  margin: 24px 0 12px;
}

.sayi-karesi {
  width: min(330px, 100%);
  height: auto;
  overflow: visible;
}

.sayi-karesi .kare-dolu {
  fill: rgba(230, 183, 76, 0.08);
  stroke: rgba(230, 183, 76, 0.45);
  stroke-width: 1.2;
}

.sayi-karesi .kare-bos {
  fill: rgba(94, 70, 160, 0.14);
  stroke: rgba(146, 116, 210, 0.34);
  stroke-width: 1.2;
  stroke-dasharray: 5 4;
}

.sayi-karesi .kare-rakam {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  fill: var(--gold-soft);
  text-anchor: middle;
  dominant-baseline: central;
  letter-spacing: -0.02em;
}

.sayi-karesi .kare-yok {
  fill: #6b6b8c;
  opacity: 0.8;
}

.sayi-karesi .kare-ok {
  stroke-width: 2.4;
  stroke-linecap: round;
}

.sayi-karesi .kare-ok-guclu {
  stroke: rgba(230, 183, 76, 0.85);
}

.sayi-karesi .kare-ok-zayif {
  stroke: rgba(160, 130, 220, 0.75);
  stroke-dasharray: 7 5;
}

.sayi-karesi .ok-ucu-guclu { fill: rgba(230, 183, 76, 0.9); }
.sayi-karesi .ok-ucu-zayif { fill: rgba(160, 130, 220, 0.8); }

/* ---- Dönem şeridi: dört zirvenin yaş aralıkları ---- */
.donem-seridi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 22px 0 8px;
}

.donem-kutu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 13px 6px 11px;
  text-align: center;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.donem-kutu.aktif {
  border-color: rgba(230, 183, 76, 0.5);
  outline: 1px solid rgba(230, 183, 76, 0.2);
  outline-offset: -5px;
  background: radial-gradient(ellipse 80% 90% at 50% 0%, rgba(230, 183, 76, 0.14), transparent),
              rgba(230, 183, 76, 0.04);
}

.donem-sira {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.donem-rakam {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--gold-soft);
}

.donem-yas {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Alt başlık yanındaki küçük yaş etiketi */
.donem-etiket {
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 2px 9px;
  vertical-align: 3px;
  -webkit-text-fill-color: var(--text-muted);
}

.donem-etiket.simdi {
  margin-left: 6px;
  color: var(--gold);
  border-color: rgba(230, 183, 76, 0.45);
  background: rgba(230, 183, 76, 0.08);
  -webkit-text-fill-color: var(--gold);
}

/* Dönem çerçeve cümlesi: italik ve biraz soluk */
.yorum-p em {
  color: #9fa0b8;
  font-style: italic;
}

@media (max-width: 520px) {
  .donem-seridi { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 12 ay şeridi ---- */
.ay-seridi {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 5px;
  margin: 22px 0 10px;
}

.ay-kutu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 9px 2px 7px;
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.02);
}

.ay-kutu.aktif {
  border-color: rgba(230, 183, 76, 0.55);
  background: radial-gradient(circle at 50% 15%, rgba(230, 183, 76, 0.18), rgba(230, 183, 76, 0.04));
}

.ay-adi {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ay-rakam {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.1;
  color: var(--gold-soft);
}

@media (max-width: 640px) {
  .ay-seridi { grid-template-columns: repeat(6, 1fr); }
}

/* ---- Sayıların konuşması: çift satırı ----
   Her sayı kendi etiketiyle tek parça; rozet ortada. Dar ekranda
   rozet kendi satırına iner, sayı-etiket eşleşmesi bozulmaz. */
.cift-satiri {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin: 4px 0 16px;
}

.cift-yan {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cift-yan b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  border-radius: 11px;
  font-family: "New York", ui-serif, Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-soft);
  border: 1px solid rgba(230, 183, 76, 0.4);
  background: rgba(230, 183, 76, 0.06);
}

.cift-yan i {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cift-bag {
  font-size: 0.74rem;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Dar ekranda: iki sayı yan yana, rozet altta tam genişlik.
   Rozet DOM'da ortada olduğu için konumlar açıkça verilir; yoksa
   ikinci sayıyı üçüncü satıra iter. */
@media (max-width: 460px) {
  .cift-satiri {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 10px;
  }
  .cift-yan:first-child { grid-area: 1 / 1 / 2 / 2; }
  .cift-yan:last-child  { grid-area: 1 / 2 / 2 / 3; }
  .cift-bag             { grid-area: 2 / 1 / 3 / 3; }
  .cift-yan { flex-direction: column; gap: 5px; text-align: center; }
  .cift-yan i { font-size: 0.72rem; }
  .cift-bag { justify-self: center; white-space: normal; text-align: center; }
}

.cift-bag.uyum {
  color: var(--gold-soft);
  border: 1px solid rgba(230, 183, 76, 0.4);
  background: rgba(230, 183, 76, 0.07);
}

.cift-bag.gerilim {
  color: #c9b9e6;
  border: 1px solid rgba(146, 116, 210, 0.45);
  background: rgba(94, 70, 160, 0.2);
}

/* Sadeleştirilen Türkçe harfin yanındaki küçük Latin karşılığı */
.harf b u {
  font-size: 0.5em;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.62;
  margin-left: 1px;
  vertical-align: 2px;
}

.harf-nokta.donusum {
  background: none;
  border: 1px dashed rgba(230, 183, 76, 0.6);
}

/* Bilgilendirme notu: vurgu kutusunun sakin, düz yazı hâli */
.yorum-not {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.72;
  color: #b3b4c8;
  border-left-color: rgba(146, 116, 210, 0.6);
  background: rgba(94, 70, 160, 0.12);
  padding-left: 26px;
}

.yorum-not::before { content: none; }

.yorum-not b {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ---- Sonuç paylaşım butonları ---- */
.paylas-baslik {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 30px 0 14px;
}

.paylas-satiri {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.paylas-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 11px;
  font: 600 0.92rem/1 inherit;
  color: var(--text-light);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.paylas-btn svg {
  width: 19px;
  height: 19px;
  flex: none;
  fill: currentColor;
}

.paylas-btn:hover,
.paylas-btn:focus-visible {
  transform: translateY(-1px);
}

/* Markaların rengi yalnız ikonda ve kenarlıkta; zemin raporun dili */
.paylas-btn.whatsapp svg { color: #4ac95f; }
.paylas-btn.whatsapp:hover { border-color: rgba(74, 201, 95, 0.55); background: rgba(74, 201, 95, 0.1); }

.paylas-btn.x svg { color: #e8e8f0; }
.paylas-btn.x:hover { border-color: rgba(232, 232, 240, 0.45); background: rgba(255, 255, 255, 0.09); }

.paylas-btn.facebook svg { color: #4b8ef0; }
.paylas-btn.facebook:hover { border-color: rgba(75, 142, 240, 0.55); background: rgba(75, 142, 240, 0.1); }

.paylas-btn.kopyala svg { color: var(--gold); }
.paylas-btn.kopyala:hover { border-color: rgba(230, 183, 76, 0.5); background: rgba(230, 183, 76, 0.09); }

.paylas-btn.tamam {
  border-color: rgba(74, 201, 95, 0.6);
  background: rgba(74, 201, 95, 0.12);
  color: #9ce0a8;
}
.paylas-btn.tamam svg { color: #4ac95f; }

@media (max-width: 420px) {
  .paylas-btn { padding: 10px 15px; font-size: 0.86rem; }
}

/* ============================================================
   AŞAMALI YÜKLEME SAHNESİ (iki sayfada ortak)
   Tek satırlık aşama metni + halka içi geri sayım. Mobilde
   dikey yer kaplamaması için liste yerine değişen tek satır.
   ============================================================ */
.yukleme-sahne {
  max-width: 420px;
  margin: 0 auto;
  padding: 14px 4px 6px;
  text-align: center;
}

.yukleme-halka {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto 26px;
}

.yukleme-halka svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.yukleme-halka circle {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

.halka-iz { stroke: rgba(230, 183, 76, 0.12); }

.halka-dolum {
  stroke: var(--gold);
  filter: drop-shadow(0 0 7px rgba(230, 183, 76, 0.4));
}

/* Geri sayım: rakam ve birimi alt alta, halkanın tam ortasında */
.yukleme-geri {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.yukleme-geri b {
  font-family: "New York", ui-serif, Georgia, serif;
  font-weight: 600;
  font-size: 2.9rem;
  line-height: 0.95;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.yukleme-geri i {
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 0.24em;
}

/* Değişen aşama satırı */
.yukleme-adim {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--gold-soft);
  min-height: 2.9em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.yukleme-adim.degisti {
  animation: adimGecis 0.5s ease;
}

@keyframes adimGecis {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}

.yukleme-sayac {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: #6f7090;
  font-variant-numeric: tabular-nums;
}

.yukleme-sayac b {
  color: var(--gold);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .yukleme-adim.degisti { animation: none; }
}

@media (max-width: 420px) {
  .yukleme-halka { width: 112px; height: 112px; margin-bottom: 20px; }
  .yukleme-geri b { font-size: 2.4rem; }
  .yukleme-adim { font-size: 1rem; }
}

/* ---- Sahne başlığı ve görselli düzen ---- */
.yukleme-sahne.gorselli { max-width: 460px; }

.yukleme-baslik {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1.25;
  margin-bottom: 8px;
}

.yukleme-alt {
  font-family: "New York", ui-serif, Georgia, serif;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 320px;
  margin: 0 auto 16px;
}

.yukleme-gorsel {
  width: min(150px, 44vw);
  margin: 0 auto 14px;
}

/* ---- Yükleme sahnesindeki dönen sayı halkası + sayı karesi ---- */
.sk-kare { width: 100%; height: auto; overflow: visible; }

.sk-doner {
  transform-origin: 150px 150px;
  animation: carkDon 52s linear infinite;
}

.sk-kare .sk-halka {
  fill: none;
  stroke: rgba(230, 183, 76, 0.22);
  stroke-width: 1.2;
}

.sk-kare .sk-tik {
  stroke: rgba(230, 183, 76, 0.3);
  stroke-width: 1.1;
}

.sk-kare .sk-halka-rakam {
  font-family: "New York", ui-serif, Georgia, serif;
  font-size: 15px;
  fill: rgba(140, 140, 175, 0.7);
  text-anchor: middle;
  dominant-baseline: central;
}

/* Karede bulunan rakamlar halkada da altın yanar */
.sk-kare .sk-halka-rakam.dolu { fill: rgba(230, 183, 76, 0.85); }

/* Ortadaki kare: baştan dolu, hücreler sırayla nabız atar */
.sk-kare .sk-hucre rect {
  fill: rgba(94, 70, 160, 0.16);
  stroke: rgba(146, 116, 210, 0.3);
  stroke-width: 1.1;
  stroke-dasharray: 4 3;
}

.sk-kare .sk-hucre text {
  font-family: "New York", ui-serif, Georgia, serif;
  font-weight: 600;
  fill: #6b6b8c;
  text-anchor: middle;
  dominant-baseline: central;
}

.sk-kare .sk-hucre.dolu rect {
  fill: rgba(230, 183, 76, 0.08);
  stroke: rgba(230, 183, 76, 0.4);
  stroke-dasharray: none;
}

.sk-kare .sk-hucre.dolu text { fill: var(--gold-soft); }

.sk-kare .sk-hucre.dolu {
  transform-box: fill-box;
  transform-origin: center;
  animation: hucreNabiz 3.8s ease-in-out infinite;
}

@keyframes hucreNabiz {
  0%, 72%, 100% { opacity: 0.72; }
  14%           { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .sk-doner { animation: none; }
  .sk-kare .sk-hucre.dolu { animation: none; opacity: 1; }
}

/* ---- Görselli düzende ince ilerleme çubuğu ve geri sayım ---- */
.yukleme-cubuk {
  height: 3px;
  border-radius: 999px;
  background: rgba(230, 183, 76, 0.12);
  overflow: hidden;
  margin: 0 auto 10px;
  max-width: 260px;
}

.yukleme-cubuk span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(230,183,76,0.55), var(--gold));
  box-shadow: 0 0 8px rgba(230, 183, 76, 0.5);
}




@media (prefers-reduced-motion: reduce) {
  .yk-kare .yk-hucre text,
  .yk-kare .yk-hucre rect,
  .yk-kare .yk-ok { transition: none; }
}

/* Sahnenin en altındaki küçük uyarı: kullanıcı sekmeyi kapatmasın */
/* Sayacın altında, çubuğa bitişik: sayacı açıklayan küçük satır */
.yukleme-not {
  margin-top: 9px;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #6f7090;
}

/* ---- Açılır pencere hâli ---- */
.yukleme-pencere {
  position: relative;
  /* Dosya başındaki evrensel margin sıfırlaması ortalamayı eziyor */
  margin: auto;
  max-width: min(92vw, 440px);
  max-height: 92vh;
  padding: 22px 20px 18px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(94, 70, 160, 0.28), transparent),
    linear-gradient(160deg, rgba(94, 70, 160, 0.14), #10132c);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  color: var(--text-light);
  overflow: hidden;
  overscroll-behavior: contain;
}

.yukleme-pencere::backdrop {
  background: rgba(6, 8, 22, 0.8);
  backdrop-filter: blur(5px);
}

.sahne-kapat {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  z-index: 2;
}

.sahne-kapat:hover,
.sahne-kapat:focus-visible {
  color: var(--gold-soft);
  border-color: rgba(230, 183, 76, 0.45);
}

/* ---- Büyük geri sayım: görselli düzende tek başına ---- */
.yukleme-sayac-buyuk {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 7px;
  margin-bottom: 12px;
}

.yukleme-sayac-buyuk b {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(230, 183, 76, 0.28);
}

.yukleme-sayac-buyuk i {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Ekran okuyucu için: aşama adı görünmez ama duyurulur */
.gorunmez {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---- Sığdırma kademeleri ----
   Pencere açıldıktan sonra ölçülür; taşıyorsa sırayla eklenir.
   Amaç: hiçbir ekranda kaydırma çubuğu çıkmaması. */
.yukleme-pencere.sikisik-1 .yukleme-alt { display: none; }

.yukleme-pencere.sikisik-2 .yukleme-gorsel { width: min(118px, 34vw); margin-bottom: 10px; }
.yukleme-pencere.sikisik-2 .yukleme-sayac-buyuk { margin-bottom: 9px; }
.yukleme-pencere.sikisik-2 .yukleme-sayac-buyuk b { font-size: 1.95rem; }
.yukleme-pencere.sikisik-2 .yukleme-baslik { font-size: 1.28rem; margin-bottom: 6px; }

.yukleme-pencere.sikisik-3 .yukleme-liste { margin-top: 8px; }
.yukleme-pencere.sikisik-3 .yukleme-liste li { padding: 2px 8px; font-size: 0.79rem; gap: 8px; }
.yukleme-pencere.sikisik-3 .liste-isaret { width: 14px; height: 14px; }
.yukleme-pencere.sikisik-3 .liste-isaret::after { inset: 2.5px; }
.yukleme-pencere.sikisik-3 .yukleme-liste li.bitti .liste-isaret::after {
  inset: auto; left: 4px; top: 1.6px; width: 3px; height: 6px;
}
.yukleme-pencere.sikisik-3 { padding: 16px 14px 13px; }

.yukleme-pencere.sikisik-4 .yukleme-not { display: none; }
.yukleme-pencere.sikisik-4 .yukleme-gorsel { width: min(94px, 28vw); margin-bottom: 8px; }
.yukleme-pencere.sikisik-4 .yukleme-sayac-buyuk b { font-size: 1.7rem; }
.yukleme-pencere.sikisik-4 .yukleme-baslik { font-size: 1.15rem; }

/* ---- Onay işaretli aşama listesi ---- */
.yukleme-liste {
  list-style: none;
  text-align: left;
  margin: 12px 0 0;
}

.yukleme-liste li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 9px;
  border-radius: 9px;
  font-size: 0.86rem;
  line-height: 1.35;
  color: #61627f;
  transition: color 0.35s ease, background 0.35s ease;
}

.liste-isaret {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  transition: border-color 0.35s ease, background 0.35s ease;
}

.yukleme-liste li.simdi {
  color: var(--text-light);
  background: rgba(230, 183, 76, 0.07);
}

.yukleme-liste li.simdi .liste-isaret { border-color: var(--gold); }

.yukleme-liste li.simdi .liste-isaret::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  animation: adimNabiz 1.3s ease-in-out infinite;
}

.yukleme-liste li.bitti { color: #8b8da8; }

.yukleme-liste li.bitti .liste-isaret {
  border-color: rgba(230, 183, 76, 0.5);
  background: rgba(230, 183, 76, 0.14);
}

.yukleme-liste li.bitti .liste-isaret::after {
  content: "";
  position: absolute;
  left: 4.6px;
  top: 1.8px;
  width: 3.4px;
  height: 7px;
  border: solid var(--gold);
  border-width: 0 1.7px 1.7px 0;
  transform: rotate(42deg);
}

@keyframes adimNabiz {
  0%, 100% { opacity: 0.45; transform: scale(0.78); }
  50%      { opacity: 1;    transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .liste-isaret::after { animation: none !important; }
}

@media (max-width: 420px) {
  .yukleme-pencere { padding: 18px 14px 15px; }
  .yukleme-liste li { font-size: 0.8rem; padding: 3px 7px; }
}

/* Kısa ekranlarda (küçük telefonlar, yatay mod) kaydırma çıkmasın */
@media (max-height: 700px) {
  .yukleme-gorsel { width: min(112px, 34vw); margin-bottom: 8px; }
  .yukleme-sayac-buyuk { margin-bottom: 9px; }
  .yukleme-sayac-buyuk b { font-size: 1.85rem; }
  .yukleme-not { margin-top: 7px; font-size: 0.72rem; }
  .yukleme-liste { margin-top: 9px; }
  .yukleme-baslik { font-size: 1.3rem; }
  .yukleme-alt { display: none; }
  .yukleme-liste li { padding: 3px 8px; font-size: 0.8rem; }
}

.yukleme-hata {
  color: #e8a5a5;
  font-size: 0.98rem;
  padding: 30px 10px;
}

/* ---- Yükleme sahnesindeki dönen natal çark ---- */
.ck-cark { width: 100%; height: auto; overflow: visible; }

.ck-doner {
  transform-origin: 150px 150px;
  animation: carkDon 48s linear infinite;
}

@keyframes carkDon { to { transform: rotate(360deg); } }

.ck-cark .ck-halka {
  fill: none;
  stroke: rgba(230, 183, 76, 0.3);
  stroke-width: 1.2;
}

.ck-cark .ck-orta { stroke: rgba(146, 116, 210, 0.4); }
.ck-cark .ck-ic   { stroke: rgba(230, 183, 76, 0.18); }

.ck-cark .ck-zod {
  stroke: rgba(230, 183, 76, 0.34);
  stroke-width: 1.1;
}

.ck-cark .ck-ev {
  stroke: rgba(146, 116, 210, 0.3);
  stroke-width: 0.9;
  stroke-dasharray: 3 3;
}

.ck-cark .ck-burc {
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
  font-size: 13px;
  fill: rgba(230, 183, 76, 0.55);
  text-anchor: middle;
  dominant-baseline: central;
}

.ck-cark .ck-gez {
  font-family: "Apple Symbols", "Segoe UI Symbol", "Noto Sans Symbols 2", sans-serif;
  font-size: 15px;
  fill: var(--gold-soft);
  text-anchor: middle;
  dominant-baseline: central;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  animation: gezegenBelir 0.5s cubic-bezier(.2,1.4,.4,1) forwards;
}

@keyframes gezegenBelir {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .ck-doner { animation: none; }
  .ck-cark .ck-gez { animation: none; opacity: 1; }
}

/* ---- Pisagor harf tablosu (numeroloji bilgi bölümü) ---- */
.tablo-kaydir {
  overflow-x: auto;
  margin: 18px 0 20px;
}

.harf-tablosu {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.95rem;
}

.harf-tablosu th {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  color: var(--gold);
  padding: 8px 4px;
  border-bottom: 1px solid rgba(230, 183, 76, 0.35);
}

.harf-tablosu td {
  color: var(--text-light);
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.harf-tablosu tr td:nth-child(odd) { background: rgba(255, 255, 255, 0.015); }

/* Karşılaştırma tablosu (güneş burcu / yükselen) */
.kiyas-tablosu {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.kiyas-tablosu th {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  color: var(--gold);
  padding: 8px 10px;
  border-bottom: 1px solid rgba(230, 183, 76, 0.35);
}

.kiyas-tablosu td {
  color: var(--text-light);
  padding: 9px 10px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kiyas-tablosu td:first-child {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Bilgi bölümü listeleri (adımlar + kaynak listesi) */
.adim-listesi,
.bilgi-listesi {
  margin: 0 0 16px;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.adim-listesi li,
.bilgi-listesi li {
  margin-bottom: 10px;
  line-height: 1.65;
}

.adim-listesi li::marker { color: var(--gold); font-weight: 600; }
.bilgi-listesi li::marker { color: var(--gold); }

.adim-listesi strong,
.bilgi-listesi strong {
  color: var(--gold-soft);
  font-weight: 600;
}

/* Dekan kutusu: yükselen yorumunun içinde derece diliminin çeşnisi */
.dekan-kutu {
  margin: 26px 0;
  padding: 18px 22px;
  border: 1px solid rgba(230, 183, 76, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(ellipse 90% 80% at 50% 0%, rgba(230, 183, 76, 0.07), transparent),
    rgba(255, 255, 255, 0.015);
}

.dekan-etiket {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.dekan-metin {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============ YÜKSELEN BURÇ SAYFASI ============ */

/* Kapak vitrini: yükselenin açıklandığı alan */
.asc-vitrin {
  max-width: 430px;
  margin: 4px auto 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 183, 76, 0.18);
}

.asc-vitrin-etiket {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.asc-vitrin-sembol {
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  border: 1px solid rgba(230, 183, 76, 0.45);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 28%, rgba(230, 183, 76, 0.16), transparent 70%),
    rgba(13, 16, 38, 0.6);
  box-shadow: 0 0 36px rgba(230, 183, 76, 0.12);
}

.asc-vitrin-burc {
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 8vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .asc-vitrin-burc {
    background: linear-gradient(120deg, var(--text-light) 15%, var(--gold) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.asc-vitrin-derece {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Büyük üçlü: üç mini kart yan yana */
.uclu-kartlar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px 0 6px;
}

@media (max-width: 700px) {
  .uclu-kartlar { grid-template-columns: 1fr; }
}

.uclu-aciklama {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Rapor içi köprü: tam doğum haritasına geçiş */
.rapor-cta {
  display: block;
  margin-top: 26px;
  padding: 24px 26px;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(230, 183, 76, 0.4);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 80% 90% at 50% 0%, rgba(94, 70, 160, 0.25), transparent),
    rgba(230, 183, 76, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rapor-cta:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.rapor-cta strong {
  display: block;
  font-family: "New York", ui-serif, Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 8px;
}

.rapor-cta span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.rapor-cta .cta-ok {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Bilgi bölümündeki alt başlıklar (12 yükselen listesi) */
.info-expand h3 {
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin: 22px 0 8px;
}
