/* MovanaRelo design system — dark + neon green
   Used by: blog, countries, routes, tags pages
   NOT used by: index.html, firma.html, admin.html (they have inline CSS) */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap");

:root {
  --bg: #08090d;
  --bg-2: #0d0f15;
  --bg-3: #13151c;
  --line: #1f2230;
  --line-2: #2a2e3e;
  --ink: #e8eaf0;
  --ink-2: #a0a6b8;
  --ink-3: #6b7185;
  --neon: #a3ff3c;
  --neon-2: #7ed320;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  --r: 10px;
  --r-lg: 16px;
  --maxw: 1180px;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 8px 30px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-top: 1.6em; }
h3 { font-size: 1.15rem; margin-top: 1.4em; }

p { margin: 0 0 1em; color: var(--ink-2); }

a {
  color: var(--neon);
  text-decoration: none;
  transition: color .15s, opacity .15s;
}
a:hover { color: var(--neon-2); text-decoration: underline; }

ul, ol { color: var(--ink-2); padding-left: 1.4em; }
li { margin-bottom: .4em; }

strong { color: var(--ink); font-weight: 700; }
code { font-family: var(--mono); background: var(--bg-3); padding: 2px 6px; border-radius: 4px; font-size: .9em; color: var(--neon); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  background: rgba(8, 9, 13, 0.85);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter .25s ease;
}
.nav-logo:hover { filter: drop-shadow(0 0 12px rgba(163,255,60,.3)); text-decoration: none; }
.nav-logo svg { display: block; }
.nav-links {
  display: flex; gap: 4px; align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 8px;
  transition: all .2s;
}
.nav-links a:hover {
  background: var(--bg-3);
  color: var(--ink);
  text-decoration: none;
}
.nav-cta {
  background: var(--neon) !important;
  color: var(--bg) !important;
  font-weight: 700 !important;
  padding: 9px 16px !important;
}
.nav-cta:hover { background: var(--neon-2) !important; color: var(--bg) !important; }

.nav-toggle {
  display: none;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--neon);
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 12px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
}

/* ===== ARTICLE / HUB ===== */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article.wide { max-width: var(--maxw); }

.article .meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.article .meta a { color: var(--ink-3); }
.article .meta a:hover { color: var(--neon); }
.article .meta::before {
  content: "// ";
  color: var(--neon);
}

.article h1 { margin-top: 0; }

.article > p:first-of-type, .lede {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon);
  color: var(--bg) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 22px;
  border-radius: 10px;
  margin-top: 8px;
  transition: all .2s;
  text-decoration: none !important;
}
.btn:hover {
  background: var(--neon-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(163,255,60,.2);
}

/* ===== HUB GRID (blog index, countries index) ===== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.hub-grid a {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 20px;
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition: all .2s;
  text-decoration: none !important;
  position: relative;
}
.hub-grid a:hover {
  background: var(--bg-3);
  border-color: var(--neon);
  transform: translateY(-2px);
  color: var(--neon) !important;
}
.hub-grid a::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
  font-size: 16px;
  transition: all .2s;
  opacity: 0;
}
.hub-grid a:hover::after {
  opacity: 1;
  color: var(--neon);
  right: 12px;
}

/* ===== TAG CLOUD ===== */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tag-cloud a {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-2) !important;
  text-transform: lowercase;
  letter-spacing: .03em;
  transition: all .2s;
  text-decoration: none !important;
}
.tag-cloud a:hover {
  border-color: var(--neon);
  color: var(--neon) !important;
  background: rgba(163,255,60,.05);
}

/* ===== RELATED CARDS ===== */
.related { margin-top: 48px; }
.related h2 {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.related h2::before { content: "// "; color: var(--neon); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.related-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 16px;
  transition: all .2s;
}
.related-card:hover {
  border-color: var(--neon);
  background: var(--bg-3);
}
.related-card a {
  color: var(--ink) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  display: block;
}
.related-card:hover a { color: var(--neon) !important; }

/* ===== CTA BLOCK (for content pages) ===== */
.cta-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--neon);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin: 40px 0;
}
.cta-block h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.cta-block p { margin-bottom: 16px; }

/* ===== HERO (hub pages) ===== */
.hub-hero {
  text-align: center;
  padding: 60px 24px 30px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.hub-hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.hub-hero .pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
}
.hub-hero h1 {
  max-width: 720px;
  margin: 0 auto 16px;
}
.hub-hero h1 .gr {
  background: linear-gradient(135deg, var(--neon), var(--neon-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hub-hero p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-2);
}

/* ===== CATEGORY SECTION (hub pages) ===== */
.cat-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 36px 24px 0;
}
.cat-section h2 {
  font-size: 13px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-2);
  margin: 28px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.cat-section h2:first-child { border-top: none; padding-top: 0; }
.cat-section h2::before { content: "// "; color: var(--neon); }
.cat-section .cat-desc {
  color: var(--ink-3);
  font-size: 13px;
  margin: -8px 0 18px;
  font-family: var(--mono);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 48px 24px 24px;
  margin-top: 80px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 700;
}
.site-footer h4::before { content: "// "; color: var(--neon); }
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul a {
  color: var(--ink-2);
  font-size: 13px;
  text-decoration: none;
}
.site-footer ul a:hover { color: var(--neon); }
.site-footer .brand-blurb {
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 320px;
}
.site-footer .copyright {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 12px;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 11px;
  text-align: center;
  letter-spacing: .04em;
}

@media (max-width: 720px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
  .site-footer .brand-blurb-wrap { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .site-footer .container { grid-template-columns: 1fr; }
  .article { padding: 36px 18px 60px; }
  .hub-hero { padding: 40px 18px 24px; }
}

/* Selection */
::selection { background: var(--neon); color: var(--bg); }

/* ── YORUM SİSTEMİ ──────────────────────────────────────────────── */
.comments-section {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  padding-top: 48px;
}
.comments-section h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.comments-section h2::before { content: "// "; color: var(--neon); font-family: var(--mono); }
.comments-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 32px;
  display: block;
}

/* Yorum formu */
.comment-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 40px;
}
.comment-form h3 {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 600px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-field label {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
}
.cf-field input,
.cf-field textarea {
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 9px;
  padding: 11px 14px;
  color: var(--ink);
  font-size: 14px;
  transition: border-color .2s;
  resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--neon);
  box-shadow: 0 0 0 3px rgba(163,255,60,.08);
}
.cf-field textarea { min-height: 100px; }
.cf-submit {
  background: var(--neon);
  color: var(--bg);
  border: none;
  border-radius: 9px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all .25s;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.cf-submit:hover { box-shadow: 0 0 24px rgba(163,255,60,.4); transform: translateY(-1px); }
.cf-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.cf-notice {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--mono);
}
.cf-success {
  background: rgba(163,255,60,.06);
  border: 1px solid rgba(163,255,60,.2);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon);
  display: none;
  margin-top: 14px;
}

/* Onaylı yorumlar */
.comments-list { display: flex; flex-direction: column; gap: 20px; }
.comment-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
  position: relative;
}
.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--bg);
  flex-shrink: 0;
}
.comment-meta { flex: 1; }
.comment-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.comment-date {
  font-size: 10px;
  color: var(--ink-3);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}
.comment-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
}
.comments-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--ink-3);
  font-size: 13px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px dashed var(--line);
  border-radius: 12px;
}
