@font-face { font-family: "Montserrat"; font-weight: 500; font-display: swap; src: url("../fonts/Montserrat-Medium.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 700; font-display: swap; src: url("../fonts/Montserrat-Bold.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 800; font-display: swap; src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 900; font-display: swap; src: url("../fonts/Montserrat-Black.woff2") format("woff2"); }

:root {
  --bg: #070b18; --bg2: #0b1228; --panel: rgba(255,255,255,.045); --line: rgba(255,255,255,.09);
  --text: #eef2ff; --muted: #9aa6c4; --gold: #ffcc4d; --gold2: #ff9f1a; --cyan: #4dd8ff;
  --radius: 18px; --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2,.8,.2,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font); font-weight: 500; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
.wrap { width: min(1180px, 92vw); margin: 0 auto; }
.narrow { width: min(820px, 92vw); }
.gold { background: linear-gradient(90deg, var(--gold), var(--gold2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.dot { color: var(--gold); margin: 0 .12em; }
.small { font-size: 13px; color: var(--muted); }

/* ── Menü ── */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; display: flex; align-items: center; gap: 28px; padding: 16px max(4vw, 20px); transition: background .3s, backdrop-filter .3s, padding .3s, border-color .3s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7,11,24,.78); backdrop-filter: blur(14px); padding-top: 10px; padding-bottom: 10px; border-color: var(--line); }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; font-size: 22px; letter-spacing: .05em; white-space: nowrap; }
.logo img { width: 40px; height: 40px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); transition: transform .4s var(--ease); } .logo:hover img { transform: rotate(-8deg) scale(1.08); }
.links { display: flex; gap: 26px; margin-left: auto; }
.links a { color: var(--muted); font-weight: 700; font-size: 14px; position: relative; transition: color .2s; }
.links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.links a:hover { color: var(--text); } .links a:hover::after { width: 100%; }
.burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: transform .3s, opacity .3s; }

/* ── Butonlar ── */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; border-radius: 14px; border: 1px solid transparent; cursor: pointer; transition: transform .15s var(--ease), box-shadow .3s, filter .2s, background .2s; will-change: transform; }
.btn:hover { transform: translateY(-2px); } .btn:active { transform: translateY(0) scale(.98); }
.btn-gold { background: linear-gradient(90deg, var(--gold), var(--gold2)); color: #1b1203; box-shadow: 0 10px 30px rgba(255,160,30,.25); }
.btn-gold:hover { box-shadow: 0 16px 44px rgba(255,160,30,.42); filter: brightness(1.06); }
.btn-ghost { background: rgba(255,255,255,.06); border-color: var(--line); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: 10px 18px; font-size: 14px; } .btn-lg { padding: 17px 30px; font-size: 17px; }
.play-ico { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,0,0,.14); font-size: 11px; }

/* ── Kahraman ── */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: grid; place-items: center; overflow: hidden; isolation: isolate; }
#sky { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; }
.hero::after { content: ""; position: absolute; inset: auto 0 0 0; height: 30vh; background: linear-gradient(transparent, var(--bg)); z-index: -1; pointer-events: none; }
.hero-inner { text-align: center; padding: 120px 20px 80px; max-width: 980px; width: 100%; min-width: 0; position: relative; }
.hero-inner::before { content: ""; position: absolute; inset: 8% -4%; z-index: -1; background: radial-gradient(closest-side, rgba(7,11,24,.55), transparent); pointer-events: none; }
.pill { display: inline-block; max-width: 100%; font-size: 13px; font-weight: 700; color: var(--text); padding: 8px 16px; border-radius: 99px; background: rgba(255,255,255,.07); border: 1px solid var(--line); backdrop-filter: blur(8px); }
.title { font-weight: 900; font-size: clamp(34px, 10.4vw, 132px); white-space: nowrap; line-height: 1; letter-spacing: .02em; margin: 18px 0 6px; text-shadow: 0 10px 50px rgba(0,0,0,.35); }
.title span { display: inline-block; }
.hero-mark { width: clamp(96px, 13vw, 150px); height: auto; margin: 0 auto 12px; filter: drop-shadow(0 18px 40px rgba(0,0,0,.45)); animation: bob 5s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
.meaning { margin: 0 0 10px; font-size: clamp(13px, 1.5vw, 16px); color: var(--muted); font-weight: 700; letter-spacing: .04em; }
.meaning b { color: var(--text); } .meaning .m { white-space: nowrap; } .meaning i { font-style: normal; color: var(--gold); margin: 0 .6em; }
.tag { font-size: clamp(20px, 3vw, 30px); font-weight: 800; margin: 6px 0 14px; } .tag b { color: var(--gold); }
.lead { color: #cdd5ec; font-size: clamp(15px, 1.6vw, 18px); max-width: 680px; margin: 0 auto; }
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.trust { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 28px; font-size: 13px; color: var(--muted); font-weight: 700; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: var(--gold); border-radius: 2px; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ── Bölümler ── */
.section { padding: 120px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, var(--bg), var(--bg2) 20%, var(--bg2) 80%, var(--bg)); }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .22em; font-size: 12px; margin: 0; }
h2 { font-weight: 900; font-size: clamp(32px, 5vw, 56px); line-height: 1.05; margin: 10px 0 14px; letter-spacing: -.01em; }
.sub { color: var(--muted); max-width: 680px; font-size: 17px; margin: 0 0 48px; }

/* Hareket kartları */
.moves { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.move { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; transition: transform .35s var(--ease), border-color .3s, background .3s; }
.move:hover { transform: translateY(-6px); border-color: rgba(255,204,77,.35); background: rgba(255,255,255,.065); }
.move h3 { margin: 14px 0 6px; font-size: 18px; font-weight: 800; } .move p { margin: 0; color: var(--muted); font-size: 14px; } .move b { color: var(--text); }
.fig { height: 150px; border-radius: 14px; background: radial-gradient(120px 90px at 50% 60%, rgba(77,216,255,.12), transparent), rgba(0,0,0,.18); display: grid; place-items: center; }
.fig svg { width: 150px; height: 150px; }
.fig line, .person line { stroke: var(--text); stroke-width: 5; stroke-linecap: round; }
.fig .head { fill: none; stroke: var(--text); stroke-width: 5; } .fig .eye { fill: var(--gold); }
.fig .arm line { stroke: var(--gold); } .fig .armln { stroke: var(--gold); } .fig .palm { fill: var(--cyan); }
.fig .arm.l { transform-origin: 52px 44px; } .fig .arm.r { transform-origin: 68px 44px; }
.fig-flap .arm.l { animation: flapL 1.1s ease-in-out infinite; } .fig-flap .arm.r { animation: flapR 1.1s ease-in-out infinite; }
@keyframes flapL { 0%,100% { transform: rotate(-26deg); } 50% { transform: rotate(22deg); } }
@keyframes flapR { 0%,100% { transform: rotate(26deg); } 50% { transform: rotate(-22deg); } }
.fig-brake .palm { animation: pulse 1.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.5); opacity: 1; } }
.fig-spin .fore { transform-origin: 34px 46px; animation: spin 1s linear infinite; } .fig-spin .fore.r2 { transform-origin: 86px 46px; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.fig-lean .body-lean { transform-origin: 60px 100px; animation: lean 2.6s ease-in-out infinite; }
@keyframes lean { 0%,100% { transform: rotate(-12deg); } 50% { transform: rotate(12deg); } }
.fig-pitch .body-pitch { transform-origin: 60px 104px; animation: pitch 2.6s ease-in-out infinite; }
@keyframes pitch { 0%,100% { transform: scaleY(1) translateY(0) skewX(0); } 50% { transform: skewX(-14deg); } }
.fig-dive svg { animation: dive 1.8s ease-in-out infinite; } @keyframes dive { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(8px); } }
.fig-look .head-turn { transform-origin: 60px 26px; animation: look 2.4s ease-in-out infinite; } @keyframes look { 0%,100% { transform: translateX(-4px) scaleX(-1); } 50% { transform: translateX(4px) scaleX(1); } }
.fig-land .flutter.l { animation: flut 0.5s ease-in-out infinite; } .fig-land .flutter.r { animation: flut 0.5s ease-in-out infinite reverse; }
@keyframes flut { 0%,100% { transform: rotate(-6deg); } 50% { transform: rotate(6deg); } }
.modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.mode { border: 1px dashed rgba(255,204,77,.35); border-radius: 14px; padding: 16px 18px; display: flex; flex-direction: column; gap: 4px; }
.mode b { color: var(--gold); letter-spacing: .06em; } .mode span { color: var(--muted); font-size: 14px; }

/* Özellikler */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .3s; }
.card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(400px 160px at var(--mx, 50%) var(--my, 0%), rgba(255,204,77,.13), transparent 60%); opacity: 0; transition: opacity .3s; pointer-events: none; }
.card:hover { transform: translateY(-6px); border-color: rgba(255,204,77,.3); } .card:hover::before { opacity: 1; }
.card .ico { font-size: 30px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.06); }
.card h3 { margin: 16px 0 6px; font-weight: 800; } .card p { margin: 0; color: var(--muted); font-size: 15px; }

/* Türler */
.species { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.sp { border-radius: var(--radius); padding: 26px; background: linear-gradient(160deg, color-mix(in srgb, var(--c1) 42%, transparent), rgba(255,255,255,.03) 60%); border: 1px solid var(--line); transition: transform .35s var(--ease); }
.sp:hover { transform: translateY(-6px) rotate(-.4deg); }
.sp h3 { margin: 0; font-weight: 900; font-size: 26px; } .sp i { color: var(--muted); font-size: 13px; }
.stat { display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 10px; margin: 12px 0 0; font-size: 13px; color: var(--muted); }
.stat b { height: 8px; border-radius: 99px; background: rgba(255,255,255,.08); position: relative; overflow: hidden; }
.stat b::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 0; border-radius: 99px; background: linear-gradient(90deg, var(--gold2), var(--gold)); transition: width 1.2s var(--ease) .2s; }
.sp.in .stat b::after { width: var(--v); }
.sp p { color: #cfd6ea; font-size: 14px; margin: 16px 0 0; }

/* Mini oyunlar */
.games { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
.game { border-radius: 16px; padding: 22px 18px; background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--g); display: flex; flex-direction: column; gap: 8px; transition: transform .35s var(--ease), box-shadow .3s; }
.game:hover { transform: translateY(-6px); box-shadow: 0 20px 40px color-mix(in srgb, var(--g) 18%, transparent); }
.game b { font-weight: 800; } .game span { color: var(--muted); font-size: 14px; }

/* Büyük CTA */
.big-cta { padding: 120px 0; text-align: center; background: radial-gradient(700px 300px at 50% 50%, rgba(255,160,30,.16), transparent 70%); }
.big-cta h2 { font-size: clamp(38px, 6vw, 70px); } .big-cta p { color: var(--muted); } .big-cta .btn { margin: 20px 0 16px; }

/* SSS */
.faq { border-bottom: 1px solid var(--line); padding: 18px 4px; }
.faq summary { cursor: pointer; font-weight: 800; font-size: 17px; list-style: none; display: flex; justify-content: space-between; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 24px; line-height: 1; transition: transform .3s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--muted); margin: 12px 0 0; } .faq a { color: var(--gold); }

.footer { border-top: 1px solid var(--line); padding: 40px 0; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 22px; font-weight: 700; color: var(--muted); } .foot-links a:hover { color: var(--gold); }

/* Kaydırınca belirme */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .moves { grid-template-columns: repeat(2, 1fr); } .grid { grid-template-columns: repeat(2, 1fr); }
  .species { grid-template-columns: repeat(2, 1fr); } .games { grid-template-columns: repeat(2, 1fr); } .modes { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0; background: rgba(7,11,24,.97); padding: 10px 0; border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .35s var(--ease); }
  .links.open { transform: none; } .links a { padding: 14px 6vw; }
  .burger { display: block; margin-left: auto; } .nav > .btn-sm { display: none; }
  .moves, .grid, .species, .games { grid-template-columns: 1fr; } .section { padding: 90px 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; }
}

/* ── İsmin hikâyesi ── */
.story-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; align-items: center; margin-top: 30px; }
.eq { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 8px 0; }
.word { font-weight: 900; font-size: clamp(26px, 4vw, 46px); letter-spacing: .04em; padding: 6px 16px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); line-height: 1.2; }
.word.result { background: linear-gradient(135deg, rgba(255,204,77,.14), rgba(255,159,26,.06)); border-color: rgba(255,204,77,.45); box-shadow: 0 10px 40px rgba(255,160,30,.12); }
.op { font-weight: 900; font-size: clamp(22px, 3vw, 34px); color: var(--gold); }
.word .drop { display: inline-block; transition: opacity .6s var(--ease) 1s, filter .6s 1s; }
.words.in .word .drop { opacity: .28; filter: blur(1px); text-decoration: line-through rgba(255,204,77,.7) 3px; }
.words.in .word.result { animation: pop .7s var(--ease) 1.4s both; }
@keyframes pop { 0% { transform: scale(.85); opacity: .2; } 60% { transform: scale(1.06); opacity: 1; } 100% { transform: scale(1); } }
.story-cap { color: #cdd5ec; max-width: 620px; margin: 6px 0 26px; }
.logo-story { margin: 0; text-align: center; position: relative; }
.logo-story img { width: min(320px, 70vw); height: auto; margin: 0 auto; filter: drop-shadow(0 24px 60px rgba(0,0,0,.5)); animation: bob 6s ease-in-out infinite; }
.logo-story figcaption { display: grid; gap: 8px; margin-top: 18px; text-align: left; font-size: 14px; color: var(--muted); }
.logo-story figcaption b { color: var(--text); }
.k { display: inline-block; width: 12px; height: 12px; border-radius: 4px; margin-right: 10px; vertical-align: -1px; }
.k1 { background: #f2c49c; } .k2 { background: linear-gradient(135deg, #ffd966, #ff8a12); } .k3 { background: linear-gradient(135deg, #2fa3d6, #4cc27a); } .k4 { background: #ffb52e; border-radius: 50%; }
@media (max-width: 860px) { .story-grid { grid-template-columns: 1fr; gap: 24px; } .logo-story figcaption { max-width: 360px; margin-inline: auto; } }
@media (max-width: 560px) { .nav .logo { font-size: 18px; } .logo img { width: 34px; height: 34px; } }
@media (prefers-reduced-motion: reduce) { .hero-mark, .logo-story img { animation: none; } }
