@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;600;700;800&display=swap');

/* ClansNetwork 2.0 — tanıtım sitesi
   Dev display tipografi, zikzak bölümler, marquee, oyunlu ton
   + fluxer.app (ürün-odaklı netlik). Palet: ClansNetwork aurora (#176dfe → #3FB6FF),
   pembe #FF5C8A ve altın #FFD166 aksanları. */

:root {
	--bg: #06060f;
	--bg-2: #0b0b1c;
	--bg-card: #101024;
	--line: rgba(255, 255, 255, 0.08);
	--text: #f3f3fa;
	--muted: #a9a9c4;
	--brand: #176dfe;
	--blue: #3fb6ff;
	--pink: #ff5c8a;
	--gold: #ffd166;
	--green: #22c55e;
	--grad: linear-gradient(100deg, #176dfe, #3fb6ff);
	--radius: 20px;
	--font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	--font-display: 'Archivo Black', 'Arial Black', -apple-system, sans-serif;
	--card-glass: rgba(150, 163, 255, 0.10);
	--card-line: rgba(200, 210, 255, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	background-color: #070b24;
	background:
		radial-gradient(90% 60% at 80% -5%, rgba(63, 182, 255, 0.16), transparent 60%),
		radial-gradient(80% 55% at 8% 22%, rgba(23, 109, 254, 0.20), transparent 60%),
		radial-gradient(70% 45% at 90% 55%, rgba(157, 132, 255, 0.12), transparent 60%),
		linear-gradient(180deg, #070b24 0%, #101b52 30%, #16246e 55%, #0e1747 78%, #070b24 100%);
	background-color: #070b24;
	color: var(--text);
	font-family: var(--font);
	line-height: 1.6;
	overflow-x: hidden;
}
body::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		radial-gradient(1.5px 1.5px at 8% 12%, rgba(255, 255, 255, 0.7) 49%, transparent 51%),
		radial-gradient(1px 1px at 22% 38%, rgba(255, 255, 255, 0.45) 49%, transparent 51%),
		radial-gradient(2px 2px at 34% 8%, rgba(255, 255, 255, 0.55) 49%, transparent 51%),
		radial-gradient(1px 1px at 47% 26%, rgba(255, 255, 255, 0.4) 49%, transparent 51%),
		radial-gradient(1.5px 1.5px at 62% 15%, rgba(255, 255, 255, 0.6) 49%, transparent 51%),
		radial-gradient(1px 1px at 74% 42%, rgba(255, 255, 255, 0.4) 49%, transparent 51%),
		radial-gradient(2px 2px at 88% 22%, rgba(255, 255, 255, 0.5) 49%, transparent 51%),
		radial-gradient(1px 1px at 15% 64%, rgba(255, 255, 255, 0.4) 49%, transparent 51%),
		radial-gradient(1.5px 1.5px at 31% 82%, rgba(255, 255, 255, 0.5) 49%, transparent 51%),
		radial-gradient(1px 1px at 55% 71%, rgba(255, 255, 255, 0.38) 49%, transparent 51%),
		radial-gradient(2px 2px at 70% 88%, rgba(255, 255, 255, 0.45) 49%, transparent 51%),
		radial-gradient(1px 1px at 84% 62%, rgba(255, 255, 255, 0.4) 49%, transparent 51%),
		radial-gradient(1.5px 1.5px at 93% 78%, rgba(255, 255, 255, 0.5) 49%, transparent 51%),
		radial-gradient(1px 1px at 42% 52%, rgba(255, 255, 255, 0.32) 49%, transparent 51%);
}
main, section, header, footer, .marquee { position: relative; z-index: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
b { color: var(--text); }

.grad {
	background: linear-gradient(100deg, #9d84ff, #3fb6ff 55%, #67e8f9);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ─── Butonlar ─────────────────────────────────────────────── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 1rem;
	padding: 14px 28px;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
	cursor: pointer;
	border: none;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 19px 40px; font-size: 1.2rem; font-weight: 800; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }
.btn-primary {
	background: var(--grad);
	color: #fff;
	box-shadow: 0 8px 30px rgba(23, 109, 254, 0.45);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(63, 182, 255, 0.55); }
.btn-white { background: #fff; color: #0b0b1c; }
.btn-white:hover { color: var(--brand); }
.btn-dark {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border: 1px solid var(--line);
	backdrop-filter: blur(6px);
}
.btn-dark:hover { background: rgba(255, 255, 255, 0.14); }
.btn-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.25);
	justify-content: center;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ─── Nav ──────────────────────────────────────────────────── */
.nav {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	background: transparent;
	-webkit-backdrop-filter: blur(0);
	backdrop-filter: blur(0);
	border-bottom: 1px solid transparent;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		-webkit-backdrop-filter 0.25s ease,
		backdrop-filter 0.25s ease;
}
.nav.scrolled,
.nav.menu-open {
	background: rgba(6, 6, 15, 0.82);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom-color: var(--line);
}
.nav-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 14px 24px;
	display: grid;
	grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
	align-items: center;
	gap: 24px;
}
.nav-brand {
	display: flex;
	align-items: center;
	justify-self: start;
	gap: 10px;
	min-width: 0;
	transition: transform 0.2s ease;
}
.nav-brand:hover { transform: scale(1.04); }
.nav-brand:hover .nav-logo { transform: rotate(-8deg); }
.nav-logo { width: 34px; height: 34px; border-radius: 9px; transition: transform 0.25s ease; }
.nav-name { font-weight: 900; font-size: 1.25rem; letter-spacing: -0.02em; }
.nav-links {
	display: flex;
	align-items: center;
	justify-self: center;
	gap: 4px;
	margin: 0;
}
.nav-links a {
	position: relative;
	font-weight: 600;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.78);
	padding: 8px 16px;
	border-radius: 999px;
	transition: color 0.15s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-1px);
}
.nav-links a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 2px;
	width: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--grad);
	transform: translateX(-50%);
	transition: width 0.22s ease;
}
.nav-links a:hover::after { width: calc(100% - 32px); }
.nav-links a[aria-current='page'] {
	color: #fff;
	background: rgba(23, 109, 254, 0.14);
}
.nav-links a[aria-current='page']::after { width: calc(100% - 32px); }
.nav-actions {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 10px;
	margin: 0;
}
.nav-login:hover { color: var(--brand); transform: translateY(-2px) scale(1.03); }
.nav-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	color: #fff;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid var(--line);
	border-radius: 13px;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.nav-menu-toggle:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.18);
}
.nav-menu-toggle span {
	display: block;
	width: 19px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
	outline: 3px solid rgba(63, 182, 255, 0.72);
	outline-offset: 3px;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
	position: relative;
	padding: 150px 24px 0;
	text-align: center;
	overflow: hidden;
}
.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	pointer-events: none;
}
.hero-glow-1 {
	width: 680px; height: 680px;
	background: rgba(23, 109, 254, 0.28);
	top: -220px; left: -160px;
}
.hero-glow-2 {
	width: 620px; height: 620px;
	background: rgba(63, 182, 255, 0.18);
	top: -120px; right: -180px;
}
.sparkle {
	position: absolute;
	color: var(--gold);
	font-size: 1.4rem;
	opacity: 0.85;
	animation: floaty 5s ease-in-out infinite;
	pointer-events: none;
	z-index: 1;
}
.s1 { top: 18%; left: 12%; animation-delay: 0s; color: var(--pink); }
.s2 { top: 26%; right: 14%; animation-delay: 1.2s; }
.s3 { top: 52%; left: 6%; animation-delay: 2.1s; font-size: 1rem; color: var(--blue); }
.s4 { top: 14%; right: 34%; animation-delay: 0.6s; font-size: 1rem; }
.s5 { top: 60%; right: 8%; animation-delay: 1.8s; color: var(--pink); }
@keyframes floaty {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50% { transform: translateY(-14px) rotate(12deg); }
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 7.5vw, 6rem);
	font-weight: 400;
	line-height: 0.98;
	letter-spacing: 0;
	text-transform: uppercase;
}
.hero-sub {
	max-width: 640px;
	margin: 26px auto 0;
	font-size: 1.15rem;
	color: var(--muted);
}
.hero-cta {
	margin-top: 36px;
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ─── App mockup ───────────────────────────────────────────── */
.hero-app {
	position: relative;
	z-index: 2;
	max-width: 960px;
	margin: 70px auto -2px;
}
.app-window {
	border: 1px solid var(--line);
	border-bottom: none;
	border-radius: 18px 18px 0 0;
	background: #0d0d1e;
	box-shadow: 0 -10px 80px rgba(23, 109, 254, 0.25), 0 0 120px rgba(63, 182, 255, 0.12);
	overflow: hidden;
	text-align: left;
}
.app-titlebar {
	display: flex;
	gap: 7px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.02);
}
.app-titlebar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.app-titlebar span:first-child { background: #ff5f57; }
.app-titlebar span:nth-child(2) { background: #febc2e; }
.app-titlebar span:nth-child(3) { background: #28c840; }
.app-body { display: flex; min-height: 340px; }

.app-rail {
	width: 64px;
	padding: 12px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: rgba(0, 0, 0, 0.35);
}
.rail-home { width: 40px; height: 40px; border-radius: 12px; }
.rail-sep { width: 26px; height: 2px; background: var(--line); border-radius: 2px; }
.rail-guild { width: 40px; height: 40px; border-radius: 50%; opacity: 0.9; }
.rail-add {
	width: 40px; height: 40px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	color: var(--green);
	font-size: 1.3rem;
	font-weight: 700;
}

.app-channels {
	width: 190px;
	padding: 14px 10px;
	border-right: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.015);
	flex-shrink: 0;
}
.ch-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 800;
	font-size: 0.95rem;
	padding: 0 8px 12px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 10px;
}
.ch-level {
	font-size: 0.6rem;
	font-weight: 800;
	color: var(--gold);
	border: 1px solid rgba(255, 209, 102, 0.5);
	border-radius: 6px;
	padding: 1px 5px;
}
.ch-item {
	padding: 7px 8px;
	border-radius: 8px;
	color: var(--muted);
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 2px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.ch-item.active { background: rgba(23, 109, 254, 0.18); color: #fff; }
.ch-count {
	margin-left: auto;
	font-size: 0.7rem;
	font-weight: 700;
	color: var(--blue);
	background: rgba(63, 182, 255, 0.14);
	border-radius: 999px;
	padding: 1px 7px;
}

.app-main { flex: 1; padding: 16px 18px; min-width: 0; }
.room-title { font-weight: 800; font-size: 1rem; margin-bottom: 14px; }
.voice-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 10px;
	border-radius: 10px;
	margin-bottom: 4px;
}
.voice-row.speaking { background: rgba(34, 197, 94, 0.07); }
.v-avatar { width: 30px; height: 30px; border-radius: 50%; }
.voice-row.speaking > .v-avatar,
.voice-row.speaking .v-avatar-wrap .v-avatar { box-shadow: 0 0 0 2px var(--green); }
.v-name { font-weight: 600; font-size: 0.9rem; }
.v-muted { margin-left: auto; opacity: 0.75; font-size: 0.85rem; }
.v-tier { font-size: 0.8rem; }
.v-ultra { filter: drop-shadow(0 0 5px rgba(255, 209, 102, 0.8)); }
.v-pro { filter: drop-shadow(0 0 5px rgba(63, 182, 255, 0.8)); }

/* Rütbe sprite — usergrade.webp 5 kolon × 13 satır */
.v-rank, .rank-big {
	display: inline-block;
	width: 18px; height: 18px;
	background-image: url('usergrade.webp');
	background-size: 500% 1300%;
	background-position: calc(var(--col) * 25%) calc(var(--row) * 8.3333%);
	flex-shrink: 0;
}
.rank-big { width: 34px; height: 34px; }
.rank-inline { width: 22px; height: 22px; vertical-align: -5px; }
.rank-big.glowy { filter: drop-shadow(0 0 8px rgba(255, 209, 102, 0.7)); }

.room-actions {
	display: flex;
	gap: 10px;
	margin-top: 18px;
	align-items: center;
}
.ra {
	height: 38px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
}
.ra-mic { width: 38px; color: #cfd0e6; }
.ra-screen { padding: 0 18px; background: var(--grad); color: #fff; }
.ra-leave { width: 38px; background: rgba(242, 63, 67, 0.2); }

/* Prizmatik profil efekti (Market'ten canlı demo) */
.v-avatar-wrap {
	position: relative;
	display: inline-flex;
	flex-shrink: 0;
}
.fx-prismatic::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	background: conic-gradient(from 0deg, #ff0040, #ff8800, #ffd166, #22c55e, #3fb6ff, #b968ff, #ff0040);
	filter: blur(6px) saturate(1.35);
	animation: spin 2.6s linear infinite;
}
.fx-prismatic::after {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	border: 2px solid transparent;
	background:
		linear-gradient(#0d0d1e, #0d0d1e) padding-box,
		repeating-conic-gradient(from 20deg, #ff5c8a 0deg 16deg, #ffd166 16deg 32deg, #22c55e 32deg 48deg, #3fb6ff 48deg 64deg, #b968ff 64deg 80deg) border-box;
	animation: spin 3.8s linear infinite reverse;
}
.fx-prismatic .v-avatar { position: relative; z-index: 1; }
.fx-big::before { inset: -9px; filter: blur(10px) saturate(1.35); }
.fx-big::after { inset: -6px; border-width: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Gökkuşağı isim efekti (Market'ten canlı demo) */
.name-rainbow {
	background-image: linear-gradient(90deg, #ff0040, #ff8800, #ffd166, #22c55e, #3fb6ff, #1257d6, #ff0040);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: rainbowSlide 2s linear infinite;
	font-weight: 800;
}
@keyframes rainbowSlide { to { background-position: 300% 50%; } }

/* ─── Marquee ──────────────────────────────────────────────── */
.marquee {
	overflow: hidden;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	background: var(--bg-2);
	padding: 18px 0;
}
.marquee-track {
	display: flex;
	align-items: center;
	gap: 34px;
	width: max-content;
	animation: marquee 22s linear infinite;
}
.marquee-track span {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4.5vw, 3.4rem);
	font-weight: 400;
	letter-spacing: 0.01em;
	text-transform: uppercase;
}
.marquee-track i {
	font-style: normal;
	color: var(--brand);
	font-size: 1.1rem;
}
@keyframes marquee { to { transform: translateX(-33.333%); } }


/* ─── Feature bölümleri ────────────────────────────────────── */
.feature { padding: 60px 24px; }
.feature-alt { background: transparent; }
.feature-inner {
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 60px;
	align-items: center;
	background: var(--card-glass);
	border: 1px solid var(--card-line);
	border-radius: 56px;
	padding: 64px 60px;
	box-shadow: 0 40px 120px rgba(4, 8, 40, 0.55);
}
.feature-visual {
	background: var(--panel-grad, linear-gradient(140deg, #1d49c8, #3fb6ff));
	border-radius: 38px;
	padding: 32px;
	box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.06);
}
.feature:nth-of-type(odd) .feature-visual { --panel-grad: linear-gradient(140deg, #16389e 0%, #2f9ded 60%, #57e0ff 135%); }
.feature:nth-of-type(even) .feature-visual { --panel-grad: linear-gradient(140deg, #47209e 0%, #8a3fd4 55%, #ff5c8a 135%); }
.feature:nth-of-type(3) .feature-visual { --panel-grad: linear-gradient(140deg, #0b5e3c 0%, #1fa855 60%, #8fe89a 140%); }
#rutbe .feature-visual { --panel-grad: linear-gradient(140deg, #8a5200 0%, #e0a52d 60%, #ffe08a 140%); }
#moderasyon .feature-visual { --panel-grad: linear-gradient(140deg, #0e5e74 0%, #08a5c4 60%, #99f6e4 140%); }
.feature-alt .feature-inner .feature-text { order: 2; }
.feature-alt .feature-inner .feature-visual { order: 1; }
.feature-text h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.4vw, 2.7rem);
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: 0;
	text-transform: uppercase;
	margin-bottom: 22px;
}
.feature-text p { color: var(--muted); font-size: 1.1rem; max-width: 460px; }

.mock-card {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-card);
	padding: 26px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 60px rgba(23, 109, 254, 0.08);
	transition: transform 0.3s ease;
}
.mock-card:hover { transform: translateY(-6px) rotate(-0.5deg); }
.mock-voice .voice-row { padding: 8px 10px; }
.mock-voice .ch-item { margin-top: 6px; }

/* Yayın mockup */
.stream-screen {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--line);
}
/* Yayın içindeki gerçek oyun kaydı (Xonotic — açık kaynak FPS) */
.g-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stream-live {
	position: absolute;
	top: 12px; left: 12px;
	z-index: 2;
	background: #f23f43;
	color: #fff;
	font-weight: 800;
	font-size: 0.72rem;
	padding: 4px 10px;
	border-radius: 7px;
	letter-spacing: 0.05em;
}
.stream-q {
	position: absolute;
	top: 12px; right: 12px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	font-weight: 800;
	font-size: 0.72rem;
	padding: 4px 10px;
	border-radius: 7px;
}
.stream-tag {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 9px;
	padding: 5px 12px;
	font-size: 0.78rem;
	font-weight: 700;
	color: #fff;
}

/* Yayın altı katılımcı kutuları — konuşma vurgusu sırayla dolaşır */
.stream-tiles {
	display: grid;
	grid-template-columns: 1fr 1.2fr 1fr;
	gap: 10px;
	margin-top: 10px;
}
.tile {
	position: relative;
	aspect-ratio: 16 / 10;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tile-purple { background: linear-gradient(150deg, #5a43c9, #33246e); }
.tile-blue { background: linear-gradient(150deg, #2d7fd6, #173c74); }
.tile-avatar {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.tile-cam video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.tile-name {
	position: absolute;
	left: 9px;
	bottom: 9px;
	z-index: 2;
	background: rgba(0, 0, 0, 0.6);
	border-radius: 7px;
	padding: 2px 10px;
	font-size: 0.72rem;
	font-weight: 700;
	color: #fff;
}
.tile::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 14px;
	border: 2.5px solid var(--green);
	box-shadow: inset 0 0 18px rgba(34, 197, 94, 0.25);
	opacity: 0;
	pointer-events: none;
	animation: speakTurn 9s linear infinite;
}
.speak-1::after { animation-delay: 0s; }
.speak-2::after { animation-delay: 3s; }
.speak-3::after { animation-delay: 6s; }
@keyframes speakTurn {
	0% { opacity: 0; }
	4% { opacity: 1; }
	30% { opacity: 1; }
	36% { opacity: 0; }
	100% { opacity: 0; }
}

/* Rütbe mockup */
.rank-strip {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
	padding: 10px 0 24px;
}
.xp-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: 0.95rem;
}
.xp-right { margin-left: auto; color: var(--muted); font-weight: 600; font-size: 0.85rem; }
.xp-bar {
	height: 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	margin-top: 10px;
	overflow: hidden;
}
.xp-fill {
	width: 62%;
	height: 100%;
	border-radius: 999px;
	background: var(--grad);
	animation: xpPulse 2.4s ease-in-out infinite;
}
@keyframes xpPulse {
	0%, 100% { filter: brightness(1); }
	50% { filter: brightness(1.35); }
}
.xp-chips { display: flex; gap: 10px; margin-top: 18px; }
.chip {
	font-size: 0.75rem;
	font-weight: 800;
	border-radius: 999px;
	padding: 5px 12px;
}
.chip-pro { color: var(--blue); border: 1px solid rgba(63, 182, 255, 0.5); background: rgba(63, 182, 255, 0.08); }
.chip-ultra { color: var(--gold); border: 1px solid rgba(255, 209, 102, 0.5); background: rgba(255, 209, 102, 0.08); }

/* Market mockup */
.market-hero { display: flex; align-items: center; gap: 22px; padding: 12px 6px 22px; }
.v-avatar-big { width: 72px; height: 72px; border-radius: 50%; }
.market-hero-meta { display: flex; flex-direction: column; gap: 4px; }
.market-name { font-size: 1.5rem; }
.market-sub { color: var(--muted); font-size: 0.85rem; }
.market-badges {
	display: flex;
	align-items: center;
	gap: 14px;
	border-top: 1px solid var(--line);
	padding-top: 18px;
}
.market-badges img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)); }
.market-rc {
	margin-left: auto;
	font-weight: 800;
	font-size: 0.85rem;
	color: var(--brand);
	border: 1px solid rgba(23, 109, 254, 0.5);
	background: rgba(23, 109, 254, 0.1);
	border-radius: 999px;
	padding: 5px 14px;
}

/* Sunucu mockup */
.server-search {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.04);
	padding: 13px 16px;
	color: var(--muted);
	font-size: 0.95rem;
}
.server-result {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 16px;
	border: 1px solid rgba(23, 109, 254, 0.35);
	border-radius: 14px;
	background: rgba(23, 109, 254, 0.07);
	padding: 14px 16px;
}
.sr-icon { width: 44px; height: 44px; border-radius: 12px; }
.sr-meta { display: flex; flex-direction: column; }
.sr-name { font-weight: 800; }
.sr-id { color: var(--muted); font-size: 0.82rem; }
.sr-level {
	margin-left: auto;
	font-size: 0.7rem;
	font-weight: 800;
	color: var(--gold);
	border: 1px solid rgba(255, 209, 102, 0.5);
	border-radius: 8px;
	padding: 4px 9px;
	letter-spacing: 0.04em;
}

/* ─── Arkadaş oyun durumu ─────────────────────────────────── */
.mock-friends { display: flex; flex-direction: column; gap: 4px; }
.fr-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	color: var(--muted);
	padding: 0 6px 12px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 8px;
}
.fr-online { color: var(--green); font-size: 0.72rem; letter-spacing: 0; }
.fr-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 9px 10px;
	border-radius: 12px;
	transition: background 0.15s ease;
}
.fr-row:hover { background: rgba(255, 255, 255, 0.04); }
.fr-avatar-wrap { position: relative; flex-shrink: 0; display: inline-flex; }
.fr-avatar { width: 38px; height: 38px; border-radius: 50%; }
.fr-dot {
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--green);
	border: 2.5px solid var(--bg-card);
}
.fr-dot-off { background: #5b5b73; }
.fr-meta { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.fr-name { font-weight: 700; font-size: 0.92rem; }
.fr-game { color: var(--muted); font-size: 0.78rem; }
.fr-row:not(.fr-off) .fr-game { color: #86efac; }
.fr-join {
	margin-left: auto;
	font-size: 0.75rem;
	font-weight: 800;
	color: var(--blue);
	border: 1px solid rgba(63, 182, 255, 0.5);
	background: rgba(63, 182, 255, 0.08);
	border-radius: 999px;
	padding: 5px 13px;
	transition: background 0.15s ease, color 0.15s ease;
}
.fr-row:hover .fr-join { background: var(--blue); color: #04121f; }
.fr-off { opacity: 0.55; }

/* ─── Platformlar ─────────────────────────────────────────── */
.platforms { padding: 110px 24px; text-align: center; }
.platforms-inner { max-width: 900px; margin: 0 auto; }
.platforms h2 {
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}
.platforms-sub { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }
.plat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 44px;
}
.plat-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--bg-card);
	padding: 26px 12px 22px;
	font-weight: 800;
	font-size: 1rem;
	transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.plat-card:not(.plat-soon):hover {
	transform: translateY(-5px);
	border-color: var(--brand);
	box-shadow: 0 14px 40px rgba(23, 109, 254, 0.25);
}
.plat-icon { display: flex; color: #cfd0e6; transition: color 0.2s ease; }
.plat-card:hover .plat-icon { color: #fff; }
.plat-soon { opacity: 0.75; cursor: default; }
.plat-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 0.58rem;
	font-weight: 900;
	letter-spacing: 0.07em;
	color: var(--gold);
	border: 1px solid rgba(255, 209, 102, 0.5);
	border-radius: 6px;
	padding: 2px 6px;
}
.plat-badge.plat-live { color: #08251a; background: #70f0b1; }

/* ─── Premium ─────────────────────────────────────────────── */
.premium {
	padding: 120px 24px;
	background:
		radial-gradient(ellipse at 50% 0%, rgba(23, 109, 254, 0.16), transparent 60%),
		var(--bg-2);
	text-align: center;
}
.premium-inner { max-width: 900px; margin: 0 auto; }
.premium-title {
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 900;
	letter-spacing: -0.02em;
}
.premium-sub { color: var(--muted); margin-top: 14px; font-size: 1.1rem; }
.premium-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
	margin-top: 50px;
	text-align: left;
}
.p-card {
	position: relative;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-card);
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: transform 0.25s ease, border-color 0.25s ease;
}
.p-card:hover { transform: translateY(-6px); }
.p-pro:hover { border-color: rgba(63, 182, 255, 0.6); }
.p-ultra { border-color: rgba(255, 209, 102, 0.35); }
.p-ultra:hover { border-color: rgba(255, 209, 102, 0.75); }
.p-ribbon {
	position: absolute;
	top: -12px; right: 22px;
	background: linear-gradient(100deg, var(--gold), #ff9f43);
	color: #1a1000;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	border-radius: 999px;
	padding: 4px 12px;
}
.p-head { display: flex; align-items: center; gap: 12px; }
.p-badge { font-size: 1.5rem; }
.p-badge-pro { filter: drop-shadow(0 0 8px rgba(63, 182, 255, 0.8)); }
.p-badge-ultra { filter: drop-shadow(0 0 8px rgba(255, 209, 102, 0.8)); }
.p-name { font-weight: 900; font-size: 1.5rem; }
.p-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.p-card li { color: var(--muted); padding-left: 26px; position: relative; }
.p-card li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 800;
}
.p-card .btn { justify-content: center; }

/* ─── Gürültü engelleme şeridi ────────────────────────────── */
.opensource { padding: 80px 24px; border-top: 1px solid var(--line); }
.os-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.os-inner h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.os-inner p { color: var(--muted); }
.eq {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 6px;
	height: 42px;
	margin-bottom: 22px;
}
.eq i {
	width: 7px;
	border-radius: 999px;
	background: var(--grad);
	animation: eqBounce 1.1s ease-in-out infinite;
}
.eq i:nth-child(1) { height: 30%; animation-delay: 0s; }
.eq i:nth-child(2) { height: 55%; animation-delay: 0.12s; }
.eq i:nth-child(3) { height: 85%; animation-delay: 0.24s; }
.eq i:nth-child(4) { height: 100%; animation-delay: 0.36s; background: linear-gradient(180deg, var(--pink), var(--brand)); }
.eq i:nth-child(5) { height: 80%; animation-delay: 0.48s; }
.eq i:nth-child(6) { height: 50%; animation-delay: 0.6s; }
.eq i:nth-child(7) { height: 32%; animation-delay: 0.72s; }
@keyframes eqBounce {
	0%, 100% { transform: scaleY(0.55); }
	50% { transform: scaleY(1); }
}

/* ─── Kapanış ─────────────────────────────────────────────── */
.closing {
	position: relative;
	padding: 150px 24px;
	text-align: center;
	background:
		radial-gradient(ellipse at 50% 100%, rgba(63, 182, 255, 0.14), transparent 55%),
		radial-gradient(ellipse at 50% 0%, rgba(255, 92, 138, 0.08), transparent 50%),
		var(--bg);
	overflow: hidden;
}
.closing h2 {
	font-size: clamp(2.6rem, 8vw, 5.4rem);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: -0.03em;
}
.closing-sub { color: var(--muted); font-size: 1.3rem; margin-top: 18px; }
.closing .hero-cta { margin-top: 34px; }
.closing-note {
	display: block;
	margin-top: 18px;
	color: var(--muted);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
	border-top: 1px solid var(--line);
	background: var(--bg-2);
	padding: 70px 24px 0;
}
.footer-inner {
	max-width: 1120px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 60px;
	padding-bottom: 50px;
}
.footer-logo { width: 44px; height: 44px; border-radius: 12px; }
.footer-name { display: block; font-weight: 900; font-size: 1.6rem; margin-top: 14px; }
.footer-tag { color: var(--muted); font-size: 0.85rem; margin-top: 4px; }
.footer-social { display: flex; gap: 14px; margin-top: 18px; }
.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	color: var(--muted);
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--line);
	transition: color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.footer-social a:hover {
	color: #fff;
	background: var(--brand);
	transform: translateY(-3px);
}
.footer-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.f-col { display: flex; flex-direction: column; gap: 10px; }
.f-col h4 {
	color: var(--brand);
	font-size: 0.8rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
}
.f-col a { color: var(--muted); font-size: 0.95rem; }
.f-col a:hover { color: #fff; }
.footer-bottom {
	border-top: 1px solid var(--line);
	padding: 22px 24px;
	text-align: center;
	color: var(--muted);
	font-size: 0.85rem;
}

/* ─── Reveal animasyonu ───────────────────────────────────── */
.reveal {
	opacity: 0;
	transform: translateY(34px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1120px) {
	.nav-inner {
		grid-template-columns: minmax(135px, 1fr) auto minmax(135px, 1fr);
		gap: 12px;
		padding-inline: 18px;
	}
	.nav-links a { padding-inline: 9px; font-size: 0.86rem; }
}
@media (max-width: 980px) {
	.nav-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 10px;
		padding: 12px 18px;
	}
	.nav-links {
		position: fixed;
		top: 68px;
		left: 50%;
		width: min(440px, calc(100vw - 32px));
		padding: 10px;
		flex-direction: column;
		align-items: stretch;
		gap: 3px;
		background: rgba(11, 11, 28, 0.96);
		border: 1px solid rgba(255, 255, 255, 0.1);
		border-radius: 18px;
		box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
		backdrop-filter: blur(18px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translate(-50%, -10px) scale(0.98);
		transform-origin: top center;
		transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	}
	.nav.menu-open .nav-links {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(-50%, 0) scale(1);
	}
	.nav-links a {
		width: 100%;
		padding: 12px 14px;
		font-size: 0.95rem;
	}
	.nav-links a:hover { transform: none; }
	.nav-links a::after { left: 14px; bottom: 7px; transform: none; }
	.nav-links a:hover::after,
	.nav-links a[aria-current='page']::after { width: 28px; }
	.nav-actions { grid-column: 2; }
	.nav-menu-toggle {
		display: inline-flex;
		grid-column: 3;
	}
	.feature-inner { grid-template-columns: 1fr; gap: 40px; }
	.feature-alt .feature-inner .feature-text { order: 1; }
	.feature-alt .feature-inner .feature-visual { order: 2; }
	.premium-cards { grid-template-columns: 1fr; }
	.plat-grid { grid-template-columns: 1fr 1fr; }
	.footer-inner { grid-template-columns: 1fr; gap: 40px; }
	.app-channels { display: none; }
	.feature { padding: 80px 20px; }
}
@media (max-width: 560px) {
	.nav-inner { padding: 10px 14px; gap: 8px; }
	.nav-logo { width: 32px; height: 32px; }
	.nav-name { font-size: 1.08rem; }
	.nav-login { padding: 8px 13px; font-size: 0.8rem; }
	.nav-menu-toggle { width: 40px; height: 40px; border-radius: 12px; }
	.nav-links { top: 62px; width: calc(100vw - 24px); }
	.app-rail { display: none; }
	.hero { padding-top: 120px; }
	.marquee-track span { font-size: 1.1rem; }
	.rank-strip { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
	.reveal { opacity: 1; transform: none; }
	.nav,
	.nav-brand,
	.nav-logo,
	.nav-links,
	.nav-links a,
	.nav-links a::after,
	.nav-menu-toggle,
	.nav-menu-toggle span {
		transition-duration: 0.01ms !important;
	}
}


/* SVG ikon hizaları (emoji yerine gerçek ikonlar) */
.room-title { display: flex; align-items: center; gap: 7px; }
.fr-game { display: inline-flex; align-items: center; gap: 5px; }
.stream-tag { display: inline-flex; align-items: center; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 5px; }
.v-tier { display: inline-flex; align-items: center; }
.v-muted { display: inline-flex; align-items: center; color: #f87171; }
.v-muted { margin-left: auto; }

/* ─── Premium keşfet banner'ı ─────────────────────────────── */
.premium-banner { padding: 100px 24px; }
.pb-card {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: center;
	border-radius: 24px;
	padding: 54px 56px;
	overflow: hidden;
	background:
		radial-gradient(ellipse at 85% 15%, rgba(255, 209, 102, 0.14), transparent 55%),
		radial-gradient(ellipse at 10% 90%, rgba(23, 109, 254, 0.22), transparent 60%),
		linear-gradient(160deg, #171130, #101024 65%);
}
.pb-card::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: 26px;
	padding: 2px;
	background: conic-gradient(from var(--pbspin, 0deg), #ffd166, #ff9f43, #ff5c8a, #b968ff, #3fb6ff, #ffd166);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	animation: pbSpin 6s linear infinite;
	pointer-events: none;
}
@property --pbspin { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes pbSpin { to { --pbspin: 360deg; } }
.pb-float { position: absolute; pointer-events: none; animation: floaty 6s ease-in-out infinite; filter: drop-shadow(0 8px 20px rgba(0,0,0,.4)); }
.pb-f1 { top: 18px; right: 34%; animation-delay: 0.4s; }
.pb-f2 { bottom: 26px; right: 6%; animation-delay: 1.3s; }
.pb-f3 { top: 30%; right: 46%; color: var(--pink); font-size: 1.2rem; animation-delay: 2s; }
.pb-kicker {
	display: inline-flex;
	border-radius: 999px;
	border: 1px solid rgba(255, 209, 102, 0.5);
	background: rgba(255, 209, 102, 0.1);
	color: var(--gold);
	font-weight: 900;
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	padding: 6px 14px;
}
.pb-title {
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	margin-top: 16px;
}
.pb-shine {
	background: linear-gradient(100deg, #ffd166 10%, #fff3c4 30%, #ff9f43 50%, #ffd166 70%);
	background-size: 250% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: pbShine 4s linear infinite;
}
@keyframes pbShine { to { background-position: 250% 50%; } }
.pb-sub { color: var(--muted); margin-top: 14px; max-width: 440px; font-size: 1.05rem; }
.pb-cta { display: flex; align-items: center; gap: 18px; margin-top: 26px; flex-wrap: wrap; }
.pb-price-note { color: var(--muted); font-size: 0.85rem; }
.btn-gold {
	background: linear-gradient(100deg, #ffd166, #ff9f43);
	color: #1a1000;
	box-shadow: 0 8px 30px rgba(255, 209, 102, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 44px rgba(255, 159, 67, 0.5); }
.pb-visual { display: flex; flex-direction: column; gap: 14px; }
.pb-tier {
	display: flex;
	align-items: center;
	gap: 10px;
	border-radius: 14px;
	padding: 14px 18px;
	font-weight: 700;
	font-size: 0.95rem;
}
.pb-tier b { margin-left: auto; font-size: 1.2rem; }
.pb-tier-pro { border: 1px solid rgba(63, 182, 255, 0.4); background: rgba(63, 182, 255, 0.07); }
.pb-tier-pro b { color: var(--blue); }
.pb-tier-ultra { border: 1px solid rgba(255, 209, 102, 0.45); background: rgba(255, 209, 102, 0.07); }
.pb-tier-ultra b { color: var(--gold); }
.pb-bar { height: 10px; border-radius: 999px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.pb-bar i {
	display: block;
	height: 100%;
	width: 85%;
	border-radius: 999px;
	background: linear-gradient(90deg, #3fb6ff, #ffd166);
	animation: pbBarGrow 2.8s ease-in-out infinite;
}
@keyframes pbBarGrow { 0% { width: 8%; } 65%, 100% { width: 85%; } }

/* ─── Moderasyon (roller) mockup ──────────────────────────── */
.roles-header {
	display: flex;
	justify-content: space-between;
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	color: var(--muted);
	padding: 0 6px 12px;
	border-bottom: 1px solid var(--line);
	margin-bottom: 10px;
}
.role-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	border-radius: 12px;
	transition: background 0.15s ease;
}
.role-row:hover { background: rgba(255, 255, 255, 0.04); }
.role-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.role-name { font-weight: 800; font-size: 0.95rem; }
.role-perm { margin-left: auto; color: var(--muted); font-size: 0.78rem; }
.audit-line {
	margin-top: 12px;
	border-top: 1px solid var(--line);
	padding: 14px 6px 2px;
	color: var(--muted);
	font-size: 0.82rem;
}
.audit-line b { color: var(--blue); }
.audit-time { float: right; font-size: 0.75rem; opacity: 0.7; }

/* ─── Botlar & API (terminal) mockup ──────────────────────── */
.mock-term { padding: 0; overflow: hidden; }
.term-bar {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--line);
	background: rgba(255, 255, 255, 0.02);
}
.term-bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.14); }
.term-bar span:first-child { background: #ff5f57; }
.term-bar span:nth-child(2) { background: #febc2e; }
.term-bar span:nth-child(3) { background: #28c840; }
.term-bar b { margin-left: 8px; color: var(--muted); font-size: 0.75rem; font-weight: 600; }
.term-body {
	margin: 0;
	padding: 22px 20px 26px;
	font-family: 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
	font-size: 0.82rem;
	line-height: 1.9;
	color: #d5d5ea;
	white-space: pre-wrap;
	word-break: break-all;
}
.t-p { color: var(--green); font-weight: 700; }
.t-j { color: var(--gold); }
.t-ok { color: var(--green); font-weight: 700; }
.t-c { color: var(--muted); }
.t-cursor {
	display: inline-block;
	width: 8px;
	height: 15px;
	background: var(--brand);
	vertical-align: -2px;
	margin-left: 4px;
	animation: cursorBlink 1.1s steps(2, start) infinite;
}
@keyframes cursorBlink { to { visibility: hidden; } }

@media (max-width: 860px) {
	.pb-card { grid-template-columns: 1fr; padding: 38px 28px; }
	.pb-float { display: none; }
}

/* ═══ Cila katmanı (2026-07-18) — doku, canlı aurora, mikro-etkileşim ═══
   Not: prefers-reduced-motion bloğu yukarıda TÜM animasyonları 0.01ms'e
   indirdiği için buradaki animasyonlar otomatik kapsanıyor. */

/* 1) Film greni — degrade bantlanmasını kırar */
body::after {
	content: '';
	position: fixed;
	inset: 0;
	z-index: 9999;
	pointer-events: none;
	opacity: 0.05;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 140px 140px;
}

/* 2) Hero nokta ızgarası — başlık çevresinde belirir, kenarlara doğru erir */
.hero::before,
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1.4px);
	background-size: 32px 32px;
	-webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 30%, #000 15%, transparent 74%);
	mask-image: radial-gradient(ellipse 72% 68% at 50% 30%, #000 15%, transparent 74%);
}

/* 3) Canlı aurora — glow blobları yavaşça gezinir (transform-only, GPU-ucuz) */
.hero-glow-1 { animation: glowDrift1 26s ease-in-out infinite alternate; }
.hero-glow-2 { animation: glowDrift2 21s ease-in-out infinite alternate; }
@keyframes glowDrift1 {
	to { transform: translate3d(90px, 50px, 0) scale(1.14); }
}
@keyframes glowDrift2 {
	to { transform: translate3d(-70px, 36px, 0) scale(1.1); }
}

/* 4) Gradyan metin ışıltısı — DİKKAT: transform/will-change EKLEME (Chrome
   background-clip:text dokusunu önbelleğe alır, animasyon donar) */
.grad {
	background-size: 220% 100%;
	animation: gradShift 8s ease-in-out infinite alternate;
}
@keyframes gradShift {
	from { background-position: 0% 50%; }
	to { background-position: 100% 50%; }
}

/* 5) Buton cilası — üst iç ışık + odak halkası */
.btn-primary {
	box-shadow: 0 8px 30px rgba(23, 109, 254, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
	box-shadow: 0 12px 40px rgba(63, 182, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.2);
	filter: saturate(1.15);
}
.btn-gold {
	box-shadow: 0 8px 30px rgba(255, 159, 67, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.45), inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}
.btn-white { box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08), 0 8px 26px rgba(255, 255, 255, 0.12); }
.btn:focus-visible,
a:focus-visible {
	outline: 2px solid var(--blue);
	outline-offset: 3px;
}

/* 6) Gradyan kılcal çizgiler — footer üstü + kaydırılmış nav altı */
.footer { position: relative; }
.footer::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 4%, rgba(23, 109, 254, 0.55), rgba(63, 182, 255, 0.55), transparent 96%);
}
.nav.scrolled::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1px;
	pointer-events: none;
	background: linear-gradient(90deg, transparent 8%, rgba(23, 109, 254, 0.45), rgba(63, 182, 255, 0.45), transparent 92%);
}

/* 7) Kaydırma çubuğu */
html { scrollbar-width: thin; scrollbar-color: #34345c var(--bg); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #3a3a63, #262649);
	border-radius: 8px;
	border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--brand), #35318f); }

/* 8) Seçim rengi */
::selection { background: rgba(23, 109, 254, 0.55); color: #fff; }

/* 9) Reveal — daha yumuşak süzülme */
.reveal {
	transform: translateY(26px) scale(0.985);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { transform: translateY(0) scale(1); }

/* ─── Nostalji şeridi ─────────────────────────────────────── */
.legacy-band {
	position: relative;
	padding: 64px 24px;
	background: var(--bg-2);
	overflow: hidden;
}
.legacy-band::before,
.legacy-band::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 6%, rgba(23, 109, 254, 0.45), rgba(63, 182, 255, 0.45), transparent 94%);
}
.legacy-band::before { top: 0; }
.legacy-band::after { bottom: 0; }
.legacy-inner {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 34px;
}
.legacy-ghost {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(4rem, 12vw, 8.5rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	color: rgba(23, 109, 254, 0.07);
	pointer-events: none;
	user-select: none;
	white-space: nowrap;
}
.legacy-text h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 900; letter-spacing: -0.01em; }
.legacy-text p { color: var(--muted); margin-top: 6px; max-width: 560px; }
.legacy-inner .btn { margin-left: auto; flex-shrink: 0; }
@media (max-width: 760px) {
	.legacy-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
	.legacy-inner .btn { margin-left: 0; }
}

/* ─── Discord-dili ek dokunuşlar (2026-07-23 redesign) ─────────────── */
.closing h2, .platforms h2, .legacy-inner h3 {
	font-family: var(--font-display);
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
}
.closing h2 { font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 0.98; }
.platforms-inner, .legacy-inner {
	max-width: 1240px;
	margin: 0 auto;
	background: var(--card-glass);
	border: 1px solid var(--card-line);
	border-radius: 56px;
	padding: 70px 60px;
	box-shadow: 0 40px 120px rgba(4, 8, 40, 0.55);
}
.platforms, .legacy-band { background: transparent; padding: 60px 24px; }
.hero-float {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	filter: drop-shadow(0 18px 40px rgba(5, 10, 40, 0.6));
	animation: floaty 6s ease-in-out infinite;
}
.hero-float-castle { width: 92px; top: 21%; left: 6%; border-radius: 24px; animation-delay: 0.8s; }
.hero-float-coin { width: 74px; top: 47%; right: 6%; animation-delay: 2s; }
.hero-float-coin2 { width: 44px; top: 12%; right: 22%; animation-delay: 3.2s; opacity: 0.9; }
@media (max-width: 900px) {
	.feature-inner, .platforms-inner, .legacy-inner { border-radius: 34px; padding: 40px 26px; }
	.hero-float { display: none; }
}
@media (prefers-reduced-motion: reduce) {
	.hero-float, .sparkle { animation: none; }
}

/* ─── Dil seçici (kompakt küre hapı; select görünmez tam-boy overlay) ── */
.lang-switch-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	color: #cfd6e6;
	background: rgba(255, 255, 255, 0.05);
	transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch-wrap:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.lang-switch-wrap .lang-code {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	min-width: 17px;
	text-align: center;
}
.lang-switch-wrap select {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;
}
.lang-switch-wrap select option { background: #10142e; color: #e8e8f2; }
[dir='rtl'] .nav-links, [dir='rtl'] .footer-cols { direction: rtl; }

/* ─── Mobil düzeltmeler (yalnız dar ekran; desktop etkilenmez) ── */
@media (max-width: 480px) {
	.nav-name { display: none; } /* logo yeter; ad + dil seçici + giriş + menü 390px'e sığmıyordu */
	.lang-switch-wrap { padding: 8px 10px; gap: 5px; }
	.nav-actions { gap: 7px; }
}
@media (max-width: 560px) {
	.feature-text h2 { font-size: clamp(1.45rem, 6.6vw, 1.8rem); overflow-wrap: break-word; }
	.feature-inner { padding: 34px 22px; border-radius: 30px; }
	.feature-visual { border-radius: 22px; }
	.hero-title { font-size: clamp(2rem, 10vw, 2.6rem); }
	.closing h2 { font-size: clamp(1.9rem, 9.5vw, 2.5rem); }
	.platforms h2, .legacy-inner h3 { font-size: clamp(1.6rem, 7.5vw, 2rem); }
	.plat-grid { grid-template-columns: 1fr; }
	.hero-float { display: none; } /* dar ekranda süs görseller metinle çakışmasın */
}
@media (max-width: 980px) {
	/* Dekoratif glow'lar ve maketler layout viewport'u genişletmesin (mobil Chrome ICB genişlemesi) */
	html, body { overflow-x: clip; }
	.hero-glow { max-width: 96vw; }
	.feature-visual { overflow: hidden; }
	.feature-text h2, .feature-text p { overflow-wrap: anywhere; }
}
