/* Basit modern görünüm */
:root {
	--bg: #0b1020;
	--card: #121a33;
	--text: #e6e9f2;
	--muted: #9aa4c7;
	--primary: #6aa2ff;
	--accent: #7ef7d6;
	--cta: linear-gradient(135deg, #6aa2ff, #7e7bff 60%, #ff7ad1);
	--radius: 14px;
	--shadow: 0 10px 30px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial;
	background: radial-gradient(1200px 800px at 10% -20%, #1a2347 0%, transparent 60%),
				radial-gradient(1000px 700px at 110% 10%, #1a2b57 0%, transparent 55%),
				var(--bg);
	color: var(--text);
	line-height: 1.6;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header { position: sticky; top: 0; backdrop-filter: blur(8px); background: rgba(11,16,32,0.6); border-bottom: 1px solid rgba(255,255,255,0.06); z-index: 10; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.site-title { font-size: 20px; margin: 0; letter-spacing: 0.3px; }
.site-title a { color: var(--text); text-decoration: none; }
.nav-link { color: var(--muted); text-decoration: none; padding: 8px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.08); }
.nav-link:hover { color: var(--text); border-color: rgba(255,255,255,0.18); }

.post-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; padding: 24px 0 48px; }
.post-card { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.post-card .cover-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; background: #0e1530; }
.post-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card .cover-wrap:hover img { transform: scale(1.05); }
.post-title { margin: 14px 16px 8px; font-size: 18px; }
.post-title a { color: var(--text); text-decoration: none; }
.post-excerpt { color: var(--muted); margin: 0 16px 14px; min-height: 44px; }
.post-actions { display: flex; gap: 10px; padding: 0 16px 16px; }

.btn { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 12px; text-decoration: none; font-weight: 600; letter-spacing: .2px; transition: transform .1s ease, filter .2s ease, box-shadow .2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)); color: var(--text); border: 1px solid rgba(255,255,255,0.12); }
.btn-accent { background: linear-gradient(180deg, rgba(126,247,214,0.15), rgba(126,247,214,0.05)); color: #0a1f1a; border: 1px solid rgba(126,247,214,0.35); box-shadow: 0 8px 20px rgba(126,247,214,0.18) inset, 0 6px 20px rgba(126,247,214,0.12); }

/* Detay sayfası CTA */
.post-detail { padding: 28px 0 64px; }
.cover-hero { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.08); }
.cover-hero img { width: 100%; height: auto; display: block; }
.post-detail h1 { margin: 18px 0 12px; font-size: 32px; }
.post-content { color: var(--text); opacity: 0.95; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 18px; }
.post-cta { margin-top: 20px; }
.btn-cta { position: relative; background: var(--cta); color: #0b0b14; border: 0; padding: 12px 18px; border-radius: 14px; box-shadow: 0 10px 30px rgba(110, 162, 255, .25), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-icon { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; border-radius: 8px; background: rgba(255,255,255,.7); color: #1a1a30; }

.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; color: var(--muted); }

@media (max-width: 600px) {
	.post-detail h1 { font-size: 26px; }
	.post-excerpt { min-height: auto; }
}


