/* Bilet — Berber Döngüsü: karanlık-neon pixel art kimliği */
:root {
	--bg: #050508;
	--bg-2: #0c0c16;
	--line: #1d1d2e;
	--fg: #e8e6f0;
	--muted: #9a97ad;
	--gold: #d4bc7e;
	--gold-deep: #b89e5e;
	--neon: #33e6e6;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--fg);
	font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

.display {
	font-family: "VT323", monospace;
	font-weight: 400;
	line-height: 1;
}

.container {
	max-width: 60rem;
	margin: 0 auto;
	padding: 0 1.25rem;
}

a:focus-visible {
	outline: 2px solid var(--neon);
	outline-offset: 3px;
}

/* ————— Hero ————— */
.hero {
	position: relative;
	overflow: hidden;
	text-align: center;
	padding: 5rem 0 4rem;
	background: radial-gradient(60rem 30rem at 50% -12rem, rgba(51, 230, 230, 0.08), transparent 65%),
		linear-gradient(var(--bg-2), var(--bg));
	border-bottom: 1px solid var(--line);
}

.hero img.icon {
	width: 108px;
	height: 108px;
	border-radius: 24px;
	margin-bottom: 2rem;
	box-shadow: 0 0 60px rgba(212, 188, 126, 0.25);
}

.hero h1 {
	font-size: clamp(3.2rem, 11vw, 6rem);
	color: var(--gold);
	letter-spacing: 0.04em;
	text-shadow: 0 0 32px rgba(212, 188, 126, 0.35);
}

.hero .alt {
	font-size: clamp(1.4rem, 4.5vw, 2.1rem);
	color: var(--neon);
	letter-spacing: 0.22em;
	text-transform: uppercase;
	margin: 0.4rem 0 1.8rem;
	text-shadow: 0 0 24px rgba(51, 230, 230, 0.4);
}

.hero p.tagline {
	max-width: 34rem;
	margin: 0 auto 2.2rem;
	color: var(--muted);
	font-size: 1.1rem;
}

.badge {
	display: inline-block;
	font-family: "VT323", monospace;
	font-size: 1.15rem;
	letter-spacing: 0.14em;
	color: var(--bg);
	background: linear-gradient(var(--gold), var(--gold-deep));
	border-radius: 999px;
	padding: 0.5rem 1.5rem;
	text-transform: uppercase;
}

/* ————— Bölümler ————— */
section {
	padding: 4rem 0;
}

.section-title {
	font-family: "VT323", monospace;
	font-size: 2rem;
	color: var(--neon);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.section-title::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--line);
}

/* ————— Özellik kartları ————— */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 1rem;
}

.feature {
	background: var(--bg-2);
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 1.5rem;
}

.feature h3 {
	font-family: "VT323", monospace;
	font-size: 1.45rem;
	font-weight: 400;
	color: var(--gold);
	letter-spacing: 0.08em;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
}

.feature p {
	color: var(--muted);
	font-size: 0.95rem;
}

/* ————— Ekran görüntüleri: telefon mockup çerçevesi ————— */
.shots {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	padding: 0.5rem 0.25rem 1.25rem;
	scroll-snap-type: x mandatory;
}

.phone {
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 0.65rem 0.65rem 0.9rem;
	background: linear-gradient(#181826, #101018);
	border: 1px solid var(--line);
	border-radius: 1.9rem;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.55), 0 0 24px rgba(51, 230, 230, 0.05);
	position: relative;
}

/* hoparlör çizgisi */
.phone::before {
	content: "";
	position: absolute;
	top: 0.32rem;
	left: 50%;
	transform: translateX(-50%);
	width: 2.4rem;
	height: 0.22rem;
	border-radius: 999px;
	background: var(--line);
}

.phone img {
	display: block;
	width: min(56vw, 13rem);
	height: auto;
	border-radius: 1.25rem;
}

/* ————— Uyarı & alt bilgi ————— */
.notice {
	border: 1px dashed var(--line);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	color: var(--muted);
	font-size: 0.9rem;
}

footer {
	border-top: 1px solid var(--line);
	padding: 2.5rem 0;
	text-align: center;
	color: var(--muted);
	font-size: 0.85rem;
}

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

footer a:hover {
	text-decoration: underline;
}

footer .links {
	display: flex;
	justify-content: center;
	gap: 1.75rem;
	margin-bottom: 1rem;
	flex-wrap: wrap;
}

/* ————— Gizlilik sayfası ————— */
.prose {
	max-width: 44rem;
	margin: 0 auto;
	padding: 4rem 1.25rem;
}

.prose h1 {
	font-family: "VT323", monospace;
	font-weight: 400;
	font-size: 2.6rem;
	color: var(--gold);
	letter-spacing: 0.06em;
	margin-bottom: 0.5rem;
}

.prose h2 {
	font-family: "VT323", monospace;
	font-weight: 400;
	font-size: 1.7rem;
	color: var(--neon);
	letter-spacing: 0.08em;
	margin: 2.2rem 0 0.6rem;
}

.prose p,
.prose li {
	color: var(--muted);
}

.prose ul {
	padding-left: 1.4rem;
}

.prose strong {
	color: var(--fg);
}

.prose em {
	color: var(--muted);
}

.prose hr {
	border: 0;
	border-top: 1px solid var(--line);
	margin: 3rem 0;
}

.prose a {
	color: var(--gold);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
