/* ================================================================
   VDSSATINAL.BLOG — Developer / Kod Teması
   Konsept: Terminal Green + Siyah — Hacker/dev kültürü
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg:       #0a0a0a;
  --bg2:      #111111;
  --panel:    #141414;
  --panel2:   #1a1a1a;
  --accent:   #00ff88;
  --accent2:  #00cc6a;
  --accent3:  #39ff14;
  --text:     #e0ffe0;
  --text-dim: #6b8a6b;
  --border:   rgba(0,255,136,0.12);
  --radius:   8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  line-height: 1.8; overflow-x: hidden;
}

/* Scanline overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,255,136,0.015) 2px,
    rgba(0,255,136,0.015) 4px
  );
  pointer-events: none; z-index: 0;
}

.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--accent);
  z-index: 9999; width: 0;
  box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
}

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.header-container {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; }

.logo-dot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem; color: var(--accent);
}
/* Override .logo-dot to show ▶ instead */
.logo-dot::before { content: '▶ '; }

.logo-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem; font-weight: 700; color: var(--accent);
  letter-spacing: 1px;
}
.logo-text::after {
  content: '_';
  animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.nav-links { display: flex; gap: 0.5rem; }
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim); text-decoration: none;
  padding: 0.4rem 0.9rem; border-radius: 4px;
  font-size: 0.82rem; font-weight: 400;
  transition: all 0.2s; border: 1px solid transparent;
}
.nav-links a::before { content: './'; opacity: 0.5; }
.nav-links a:hover { color: var(--accent); border-color: var(--border); }

.cta-button {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(0,255,136,0.1);
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.5rem 1.2rem; border-radius: 4px;
  text-decoration: none; font-size: 0.82rem; font-weight: 700;
  transition: all 0.3s;
}
.cta-button:hover {
  background: var(--accent);
  color: #000 !important;
  box-shadow: 0 0 20px rgba(0,255,136,0.4);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }

.hero-intro { text-align: left; padding: 6rem 2rem 4rem; }

.hero-tag {
  font-family: 'JetBrains Mono', monospace;
  display: inline-block;
  color: var(--text-dim); font-size: 0.8rem;
  margin-bottom: 1.5rem;
}
.hero-tag::before { content: '# '; color: var(--accent); }

.hero-intro h1 {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.3;
  margin-bottom: 1.5rem;
}
.hero-intro h1 span { color: var(--accent); text-shadow: 0 0 20px rgba(0,255,136,0.5); }

.subtitle {
  color: var(--text-dim); font-size: 1rem;
  max-width: 650px; margin-bottom: 2.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem; line-height: 1.9;
}
.subtitle::before { content: '// '; color: var(--accent2); }

.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.stat-item {
  background: var(--panel); border: 1px solid var(--border);
  padding: 1rem 1.5rem; border-radius: 6px;
  min-width: 120px; text-align: center;
}
.stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem; font-weight: 700;
  color: var(--accent); display: block;
  text-shadow: 0 0 15px rgba(0,255,136,0.4);
}
.stat-label { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--text-dim); }

.content-block { margin: 2rem 0 6rem; }

.section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.section::before {
  content: attr(id);
  position: absolute; top: 1rem; right: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; color: var(--border);
  text-transform: uppercase; letter-spacing: 2px;
}
.section:hover { border-color: rgba(0,255,136,0.3); }

.section-number {
  font-family: 'JetBrains Mono', monospace;
  display: inline-block; font-size: 0.7rem;
  color: var(--accent2); margin-bottom: 0.5rem;
}
.section-number::before { content: '$ '; }

.section h2 {
  font-size: 1.5rem; font-weight: 700; color: #fff;
  margin-bottom: 1.2rem; line-height: 1.3;
}
.section h2::before { content: '## '; color: var(--accent); font-family: 'JetBrains Mono', monospace; font-size: 0.9em; }

.section img {
  width: 100%; height: 300px; object-fit: cover;
  border-radius: 6px; margin: 1.5rem 0;
  border: 1px solid var(--border);
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.section img:hover { filter: grayscale(0%); }

.section p { color: var(--text-dim); font-size: 0.97rem; margin-bottom: 1rem; line-height: 1.85; text-align: justify; }

a { color: var(--accent); text-decoration: none; font-weight: 600; font-family: 'JetBrains Mono', monospace; font-size: 0.9em; }
a:hover { color: var(--accent3); text-shadow: 0 0 8px rgba(0,255,136,0.4); }

.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; margin-top: 4rem; }
.footer-container { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.footer-col h4 { font-family: 'JetBrains Mono', monospace; color: var(--accent); font-size: 0.85rem; margin-bottom: 1.2rem; }
.footer-col h4::before { content: '> '; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.85rem; font-family: 'JetBrains Mono', monospace; transition: all 0.2s; font-weight: 400; }
.footer-col a:hover { color: var(--accent); }
.footer-desc { color: var(--text-dim); font-size: 0.85rem; line-height: 1.7; margin-top: 0.8rem; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 1rem; }
  .section { padding: 1.8rem 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .nav-links { display: none; }
}

/* ==========================================
   MIGRATED INLINE STYLES
   ========================================== */
:root {
      --accent: #10b981;
      --accent2: #059669;
      --accent3: #34d399;
      --border: rgba(16, 185, 129, 0.15);
      --text: #e2e8f0;
      --text-dim: #94a3b8;
    }
    .winner-box {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04));
      border: 2px solid rgba(16, 185, 129, 0.4);
      border-radius: 16px;
      padding: 1.8rem 2rem;
      margin: 1.5rem 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .winner-crown {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #10b981;
    }
    .winner-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #fff;
      margin: 0;
    }
    .cta-primary {
      display: inline-block;
      background: linear-gradient(135deg, #10b981, #34d399);
      color: #000 !important;
      -webkit-text-fill-color: #000 !important;
      padding: .8rem 2rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: .95rem;
      text-decoration: none;
      transition: all .3s;
      box-shadow: 0 4px 20px rgba(16, 185, 129, .35);
    }
    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(16, 185, 129, .5);
    }
    .cta-secondary {
      display: inline-block;
      border: 1px solid rgba(16, 185, 129, .4);
      color: #10b981 !important;
      -webkit-text-fill-color: #10b981 !important;
      padding: .6rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: .88rem;
      text-decoration: none;
      transition: all .3s;
      margin-left: .8rem;
    }
    .cta-secondary:hover {
      background: rgba(16, 185, 129, .1);
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.2rem 0;
      font-size: .88rem;
    }
    .compare-table th {
      background: rgba(16, 185, 129, .15);
      color: #10b981;
      font-weight: 700;
      padding: .75rem 1rem;
      text-align: left;
      border-bottom: 2px solid rgba(16, 185, 129, .2);
    }
    .compare-table td {
      padding: .7rem 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
      color: #94a3b8;
      vertical-align: middle;
    }
    .compare-table tr:hover td {
      background: rgba(16, 185, 129, .04);
    }
    .compare-table .best {
      color: #10b981;
      font-weight: 600;
    }
    .check {
      color: #10b981;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .cross {
      color: #ef4444;
      font-weight: 700;
      font-size: 1.1rem;
    }
    .feature-list {
      list-style: none;
      padding: 0;
      margin: .8rem 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .5rem;
    }
    @media(max-width:640px) {
      .feature-list {
        grid-template-columns: 1fr;
      }
    }
    .feature-list li {
      display: flex;
      align-items: flex-start;
      gap: .5rem;
      color: #94a3b8;
      font-size: .9rem;
      padding: .4rem .5rem;
      border-radius: 6px;
      background: rgba(255, 255, 255, .02);
    }
    .feature-list li::before {
      content: "✓";
      color: #10b981;
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .tip-box {
      background: rgba(16, 185, 129, .06);
      border-left: 3px solid #10b981;
      border-radius: 0 8px 8px 0;
      padding: 1rem 1.2rem;
      margin: 1rem 0;
      font-size: .88rem;
      color: #94a3b8;
    }
    .tip-box strong {
      color: #10b981;
    }
    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      padding: 1rem 0;
    }
    .faq-q {
      font-weight: 600;
      color: #e2e8f0;
      font-size: .95rem;
      margin-bottom: .5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-q::after {
      content: "+";
      color: #10b981;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .faq-a {
      color: #64748b;
      font-size: .88rem;
      line-height: 1.7;
    }
    .section-cta {
      margin-top: 1.2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, .06);
    }
    .rating-row {
      display: flex;
      align-items: center;
      gap: .5rem;
      margin: .3rem 0;
      font-size: .88rem;
      color: #94a3b8;
    }
    .rating-bar {
      flex: 1;
      height: 6px;
      background: rgba(255, 255, 255, .08);
      border-radius: 3px;
      overflow: hidden;
    }
    .rating-fill {
      height: 100%;
      background: linear-gradient(90deg, #10b981, #34d399);
      border-radius: 3px;
    }
    .badge-row {
      display: flex;
      gap: .6rem;
      flex-wrap: wrap;
      margin: .8rem 0;
    }
    .badge {
      display: inline-block;
      background: rgba(16, 185, 129, .1);
      border: 1px solid rgba(16, 185, 129, .25);
      color: #10b981;
      padding: .25rem .75rem;
      border-radius: 50px;
      font-size: .75rem;
      font-weight: 600;
    }

