:root {
  --bg: #0a0e13;
  --bg-2: #10161f;
  --bg-3: #161e2a;
  --surface: #131b26;
  --surface-2: #1a2433;
  --border: rgba(212, 168, 92, 0.22);
  --border-strong: rgba(212, 168, 92, 0.45);
  --text: #e8e2d4;
  --text-soft: #b6ad99;
  --text-dim: #8a8272;
  --gold: #d4a85c;
  --gold-bright: #f0c878;
  --gold-deep: #9a7433;
  --teal: #3fb8a8;
  --teal-glow: rgba(63, 184, 168, 0.35);
  --shadow: rgba(0, 0, 0, 0.55);
  --hero-overlay: linear-gradient(180deg, rgba(10,14,19,0.55) 0%, rgba(10,14,19,0.35) 0%, rgba(10,14,19,0.92) 100%);
  --nav-bg: rgba(10, 14, 19, 0.82);
  --card-glow: rgba(212, 168, 92, 0.16);
  --rune-glow: rgba(240, 200, 120, 0.55);
}

html[data-theme="light"] {
  --bg: #f2ecdd;
  --bg-2: #eae2cf;
  --bg-3: #e0d6bd;
  --surface: #f8f3e7;
  --surface-2: #efe7d3;
  --border: rgba(122, 90, 40, 0.28);
  --border-strong: rgba(122, 90, 40, 0.5);
  --text: #2b2317;
  --text-soft: #584a35;
  --text-dim: #7d6f56;
  --gold: #8f6a2a;
  --gold-bright: #a87e35;
  --gold-deep: #6e5220;
  --teal: #17756b;
  --teal-glow: rgba(23, 117, 107, 0.18);
  --shadow: rgba(80, 60, 20, 0.18);
  --hero-overlay: linear-gradient(180deg, rgba(20,16,8,0.45) 0%, rgba(20,16,8,0.25) 40%, rgba(242,236,221,0.95) 100%);
  --nav-bg: rgba(242, 236, 221, 0.85);
  --card-glow: rgba(143, 106, 42, 0.14);
  --rune-glow: rgba(143, 106, 42, 0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", "Arial", serif;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Fondamento", "Spectral", serif;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--text);
}

.rune-char, .rune-glyph, .float-rune, .brand-rune {
  font-family: "Noto Sans Runic", "Spectral", serif;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Navigasyon ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.5s ease;
}

.nav-inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Fondamento", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 0.08em;
}

.brand-rune {
  color: var(--gold);
  font-size: 1.5rem;
  text-shadow: 0 0 14px var(--rune-glow);
  animation: brandPulse 4s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% { text-shadow: 0 0 8px var(--rune-glow); }
  50% { text-shadow: 0 0 22px var(--rune-glow), 0 0 40px var(--teal-glow); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-soft);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transition: width 0.35s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

/* Tema butonu */
.theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--gold);
  font-size: 1.15rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease, background 0.4s ease;
}

.theme-toggle:hover {
  transform: rotate(40deg) scale(1.08);
  box-shadow: 0 0 18px var(--rune-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  transition: transform 0.35s ease, opacity 0.3s ease;
}

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

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0% 0;
  background: url("../img/hero.jpg") center 60% / cover no-repeat;
  will-change: transform;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
  transition: background 0.5s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 1.2rem 4rem;
  max-width: 900px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Fondamento", serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.hero-kicker::before, .hero-kicker::after {
  content: "";
  width: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-kicker::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 900;
  color: #f5edd8;
  text-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 0 60px var(--rune-glow);
  margin-bottom: 1.3rem;
}

.hero-slogan {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: #e8dfc8;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  max-width: 720px;
  margin: 0 auto 2.4rem;
  font-style: italic;
}

.hero-slogan strong { color: var(--gold-bright); font-style: normal; }

.hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  display: inline-block;
  font-family: "Fondamento", serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 0.95rem 2.2rem;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 55%, var(--gold-bright));
  color: #14100a;
  font-weight: 700;
  box-shadow: 0 8px 26px rgba(212, 168, 92, 0.35);
}

.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(212, 168, 92, 0.5); }

.btn-ghost {
  background: rgba(10, 14, 19, 0.35);
  color: #f0e8d2;
  border-color: rgba(240, 200, 120, 0.55);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover { transform: translateY(-3px); background: rgba(212,168,92,0.16); box-shadow: 0 10px 26px rgba(0,0,0,0.4); }

/* Havada suzulen runler */
.float-runes { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }

.float-rune {
  position: absolute;
  bottom: -1%;
  color: var(--gold-bright);
  opacity: 0;
  text-shadow: 0 0 16px var(--rune-glow);
  animation: floatUp ease-out infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.75; }
  85% { opacity: 0.95; }
  100% { transform: translateY(-150vh) rotate(22deg); opacity: 0; }
}

/* Asagi kaydir gostergesi */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-bright);
  font-size: 1.6rem;
  animation: bounceHint 2.2s ease-in-out infinite;
  text-shadow: 0 0 14px var(--rune-glow);
}

@keyframes bounceHint {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50% { transform: translate(-50%, 12px); opacity: 1; }
}

/* ---------- Bolumler ---------- */
.section { padding: 5.5rem 0; position: relative; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 3.2rem; }

.section-head .kicker {
  font-family: "Fondamento", serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.8rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--text);
  margin-bottom: 0.9rem;
}

.section-head h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p { color: var(--text-soft); }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--gold);
}

.divider::before, .divider::after {
  content: "";
  width: 90px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong));
}
.divider::after { background: linear-gradient(90deg, var(--border-strong), transparent); }

/* ---------- Kartlar ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.8rem;
}

.card {
  position: relative;
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.4s ease;
  color: var(--text);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), var(--card-glow), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 50px var(--shadow), 0 0 30px var(--card-glow);
}

.card:hover::before { opacity: 1; }

.card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover .card-media img { transform: scale(1.09); }

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, var(--surface) 100%);
}

.card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-family: "Fondamento", serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(10, 14, 19, 0.68);
  color: var(--gold-bright);
  border: 1px solid var(--border-strong);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.card-body { padding: 1.5rem 1.6rem 1.8rem; position: relative; z-index: 1; }

.card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-body h3 .rune-char { color: var(--gold); font-size: 1.5rem; text-shadow: 0 0 12px var(--rune-glow); }

.card-body p { color: var(--text-soft); font-size: 0.98rem; margin-bottom: 1.1rem; }

.card-link {
  font-family: "Fondamento", serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link .arrow { transition: transform 0.35s ease; }
.card:hover .card-link .arrow { transform: translateX(8px); }

/* ---------- Sayfa basligi (alt sayfalar) ---------- */
.page-hero {
  position: relative;
  padding: 10rem 0 4.5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: -15% 0;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  z-index: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
  z-index: 1;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  color: #f5edd8;
  text-shadow: 0 4px 26px rgba(0,0,0,0.65), 0 0 50px var(--rune-glow);
  margin-bottom: 1rem;
}

.page-hero p.lead {
  max-width: 720px;
  margin: 0 auto;
  color: #e6ddc6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.65);
  font-size: 1.08rem;
}

/* ---------- Icerik bloklari ---------- */
.prose { max-width: 860px; margin: 0 auto; }
.prose p { color: var(--text-soft); margin-bottom: 1.4rem; }
.prose h2 { font-size: 1.7rem; margin: 2.6rem 0 1rem; color: var(--gold-bright); }
.prose h3 { font-size: 1.25rem; margin: 2rem 0 0.8rem; }
.prose ul { margin: 0 0 1.4rem 1.4rem; color: var(--text-soft); }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--text); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.6rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.feature:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: 0 16px 36px var(--shadow); }

.feature .rune-char {
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.7rem;
  text-shadow: 0 0 14px var(--rune-glow);
}

.feature h3 { font-size: 1.1rem; margin-bottom: 0.45rem; }
.feature p { font-size: 0.92rem; color: var(--text-soft); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 24px 60px var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Run anlamlari izgarasi ---------- */
.runes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.3rem;
}

.rune-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.3rem;
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rune-card:hover {
  transform: translateY(-7px);
  border-color: var(--border-strong);
  box-shadow: 0 18px 40px var(--shadow), 0 0 26px var(--card-glow);
}

.rune-card .rune-glyph {
  font-size: 3rem;
  color: var(--gold-bright);
  text-shadow: 0 0 18px var(--rune-glow);
  display: block;
  margin-bottom: 0.5rem;
  transition: transform 0.4s ease;
}

.rune-card:hover .rune-glyph { transform: scale(1.15) rotate(-3deg); }

.rune-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.rune-card .rune-latin { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 0.7rem; }
.rune-card .rune-keywords { font-size: 0.82rem; color: var(--gold); font-family: "Fondamento", serif; letter-spacing: 0.06em; margin-bottom: 0.6rem; display: block; }
.rune-card p { font-size: 0.86rem; color: var(--text-soft); line-height: 1.6; }

.aett-title {
  grid-column: 1 / -1;
  text-align: center;
  font-family: "Fondamento", serif;
  font-size: 1.3rem;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
}

.aett-title::before, .aett-title::after {
  content: "";
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong));
}
.aett-title::after { background: linear-gradient(90deg, var(--border-strong), transparent); }

/* ---------- Gunun Runu ---------- */
.daily-stage {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem 4rem;
  position: relative;
}

.attune-text {
  font-family: "Fondamento", serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  text-shadow: 0 0 24px var(--rune-glow);
  animation: attunePulse 1.1s ease-in-out infinite;
}

@keyframes attunePulse {
  0%, 100% { opacity: 0.45; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

.attune-runes {
  margin-top: 1.6rem;
  display: flex;
  gap: 1.1rem;
  font-size: 1.9rem;
  color: var(--teal);
}

.attune-runes span {
  animation: attuneSpin 1.6s ease-in-out infinite;
  text-shadow: 0 0 16px var(--teal-glow);
  display: inline-block;
}
.attune-runes span:nth-child(2) { animation-delay: 0.15s; }
.attune-runes span:nth-child(3) { animation-delay: 0.3s; }
.attune-runes span:nth-child(4) { animation-delay: 0.45s; }
.attune-runes span:nth-child(5) { animation-delay: 0.6s; }

@keyframes attuneSpin {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-14px) rotate(12deg); opacity: 1; }
}

.daily-result { display: none; flex-direction: column; align-items: center; }

.daily-rune-wrap {
  position: relative;
  width: 210px; height: 210px;
  display: grid;
  place-items: center;
  margin-bottom: 1.8rem;
}

.daily-rune-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  animation: ringSpin 24s linear infinite;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 62%);
}

.daily-rune-wrap::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px dashed var(--border);
  animation: ringSpin 32s linear infinite reverse;
}

@keyframes ringSpin { to { transform: rotate(0deg); } }

.daily-rune-glyph {
  font-size: 0;
  color: var(--gold-bright);
  text-shadow: 0 0 34px var(--rune-glow), 0 0 70px var(--teal-glow);
  line-height: 1;
}

.daily-rune-glyph.reveal {
  animation: runeGrow 3.1s cubic-bezier(0.22, 1.8, 0.36, 1) forwards;
}

@keyframes runeGrow {
  0% { font-size: 0; transform: scale(0) rotate(90deg); opacity: 0; }
  60% { opacity: 1; }
  100% { font-size: 6.2rem; transform: scale(1) rotate(0deg); opacity: 1; }
}

.daily-info { max-width: 640px; opacity: 0; transform: translateY(26px); }
.daily-info.reveal { animation: infoRise 0.9s ease forwards; }

@keyframes infoRise {
  to { opacity: 1; transform: translateY(0); }
}

.daily-info .rune-latin {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.4rem;
}

.daily-info h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--gold-bright); margin-bottom: 0.4rem; }
.daily-info .daily-keywords { font-family: "Fondamento", serif; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; display: block; }
.daily-info p { color: var(--text-soft); }

.daily-note {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* ---------- CTA bandi ---------- */
.cta-band {
  position: relative;
  padding: 4.5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cta-band h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: 1rem; }
.cta-band p { color: var(--text-soft); max-width: 620px; margin: 0 auto 1.8rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.6rem;
  text-align: center;
  transition: background 0.5s ease;
}

.footer-runes {
  font-size: 1.4rem;
  letter-spacing: 0.7em;
  color: var(--gold);
  text-shadow: 0 0 14px var(--rune-glow);
  margin-bottom: 1.1rem;
}

.footer-slogan {
  font-family: "Fondamento", serif;
  font-size: clamp(1rem, 2.4vw, 1.3rem);
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.footer-slogan em { font-style: normal; color: var(--gold-bright); }

.footer-tagline { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 2rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a { color: var(--text-soft); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold-bright); }

.footer-copy { font-size: 0.8rem; color: var(--text-dim); border-top: 1px solid var(--border); padding-top: 1.4rem; width: min(1180px, 92%); margin: 0 auto; }

/* ---------- Yukari don ---------- */
.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--gold-bright);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 900;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(20px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 26px var(--shadow);
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  animation: topBob 2.4s ease-in-out infinite;
}

@keyframes topBob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1); }
}

.back-to-top:hover { box-shadow: 0 0 22px var(--rune-glow); animation-play-state: paused; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 68px; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 0 0 0 14px;
    padding: 0.8rem 0;
    min-width: 240px;
    transform: translateX(110%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -16px 20px 40px var(--shadow);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.75rem 1.6rem; font-size: 1rem; }
  .nav-links a::after { display: none; }

  .section { padding: 4rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 6rem; }
  .back-to-top { width: 46px; height: 46px; right: 1rem; bottom: 1rem; }
}

@media (max-width: 420px) {
  .runes-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .rune-card { padding: 1.1rem 0.8rem; }
  .rune-card .rune-glyph { font-size: 2.3rem; }
  .daily-rune-wrap { width: 170px; height: 170px; }
  .daily-rune-glyph.reveal { animation-name: runeGrowMobile; }
  @keyframes runeGrowMobile {
    0% { font-size: 0; transform: scale(0) rotate(-160deg); opacity: 0; }
    60% { opacity: 1; }
    100% { font-size: 4.6rem; transform: scale(1) rotate(0deg); opacity: 1; }
  }
}

/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
