﻿/* =====================================================
   SahteMi — UI Design
   Kurumsal · Açık Tema · Minimal
   ===================================================== */

/* === TOKENS === */
:root {
  --bg:        #f8f9fa;
  --surface:   #ffffff;
  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --text:      #0f172a;
  --text-2:    #64748b;
  --text-3:    #94a3b8;
  --primary-color: #0E5480;
  --primary:   #0E5480;
  --accent:    var(--primary-color);
  --danger:    #dc2626;
  --safe:      #16a34a;
  --warn:      #d97706;
  --border:    #e2e8f0;
  --radius:    4px;
  --font:      "Space Grotesk", system-ui, sans-serif;
  --mono:      "JetBrains Mono", "Courier New", monospace;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; }
input, textarea, select { font-family: var(--font); }
ul, ol { list-style: none; }

/* === LAYOUT === */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.site-main  { flex: 1 0 auto; display: flex; flex-direction: column; }

/* === NAVBAR === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 249, 250, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}
.site-header .container {
  display: flex; align-items: center;
  height: 64px; gap: 2rem;
}
.logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-weight: 700; font-size: 1.5rem;
  letter-spacing: -0.02em; flex-shrink: 0;
  text-decoration: none; color: inherit;
}
.logo-mark {
  width: 56px; height: 56px;
  background: var(--accent); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 34px; height: 34px; color: #ffffff; }
.logo-text { color: var(--accent); font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }

.nav-dropdown { display: contents; }
.nav-main { display: none; align-items: center; gap: 0.25rem; margin-left: auto; }
.nav-link {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-2); padding: 0.4rem 0.75rem;
  border-radius: var(--radius); transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }
.nav-link.nav-accent { color: var(--accent); }

.nav-auth { display: none; align-items: center; gap: 0.5rem; }
.nav-user {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; color: var(--text-2);
}

/* hamburger */
.nav-toggle {
  margin-left: auto; background: none; border: none;
  display: flex; flex-direction: column; gap: 4px; padding: 4px;
}
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text); transition: transform 0.2s; }

/* mobile open */
.nav-open .nav-dropdown {
  display: flex; flex-direction: column;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  z-index: 99;
}
.nav-open .nav-main {
  display: flex; flex-direction: column; align-items: flex-start;
  position: static;
  padding: 1rem 1.25rem; gap: 0.5rem;
}
.nav-open .nav-auth {
  display: flex; flex-direction: column; align-items: flex-start;
  position: static;
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.25rem 1rem; gap: 0.5rem;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; font-family: var(--font); font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.04em;
  padding: 0.55rem 1.1rem; border-radius: var(--radius);
  border: 1px solid transparent; cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap; line-height: 1;
}
.btn-sm  { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
.btn-lg  { font-size: 0.9rem; padding: 0.75rem 1.5rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--accent); color: #ffffff; border-color: var(--accent); }
.btn-primary:hover { background: #0c4367; border-color: #0c4367; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text-2); }
.btn-ghost { background: transparent; color: var(--text-2); border-color: transparent; }
.btn-ghost:hover { color: var(--text); background: var(--surface-2); }
.btn-danger { background: transparent; color: var(--danger); border-color: var(--danger); }
.btn-danger:hover { background: #dc262618; }
.btn-disabled, .btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* === FORMS === */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label, .form-row label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-2);
}
.form-input, .form-textarea, select.form-input {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font); font-size: 0.9rem;
  padding: 0.65rem 0.9rem; width: 100%;
  transition: border-color 0.15s; outline: none; appearance: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-hint { font-size: 0.75rem; color: var(--text-3); margin-top: 0.2rem; }
.form-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--text-2); }
.form-check input[type="checkbox"] { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; accent-color: var(--accent); }
.form-check a { color: var(--text); text-decoration: underline; }
.label-row { display: flex; justify-content: space-between; align-items: center; }
.forgot-link { font-size: 0.75rem; color: var(--text-3); transition: color 0.15s; }
.forgot-link:hover { color: var(--text); }
.input-pass-wrap { position: relative; }
.input-pass-wrap .form-input { padding-right: 2.5rem; }
.pass-toggle {
  position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 0.9rem;
  color: var(--text-3); cursor: pointer; padding: 0; line-height: 1;
}
.password-strength { height: 2px; background: var(--border); border-radius: 1px; margin-top: 0.4rem; transition: background 0.3s; }
.char-count { font-size: 0.72rem; color: var(--text-3); text-align: right; display: block; margin-top: 0.25rem; }
.required { color: var(--danger); }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-actions { display: flex; gap: 0.75rem; justify-content: flex-end; padding-top: 0.5rem; }

/* === FLASH === */
.flash {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.75rem 1.25rem;
  font-size: 0.85rem; border-bottom: 1px solid transparent;
}
.flash-error   { background: #dc262610; border-color: #dc262630; color: #991b1b; }
.flash-success { background: #16a34a10; border-color: #16a34a30; color: #15803d; }
.flash-info    { background: #0E548010; border-color: #0E548030; color: var(--accent); }
.flash-close { background: none; border: none; font-size: 0.9rem; color: inherit; opacity: 0.6; cursor: pointer; }

/* === FOOTER === */
.site-footer {
  flex-shrink: 0;
  border-top: 1px solid var(--border);
  padding: 1.25rem 0; margin-top: auto;
}
.site-footer .container { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-copy { font-size: 0.78rem; color: var(--text-3); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.footer-nav a {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-3); transition: color 0.15s;
}
.footer-nav a:hover { color: var(--text-2); }
.footer-links-row { display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.footer-links-row a {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-3); transition: color 0.15s;
}
.footer-links-row a:hover { color: var(--text-2); }

/* Legal pages */
.legal-page {
  padding: 3rem 1.25rem 5rem;
  background: var(--bg);
  min-height: calc(100vh - 64px);
}
.legal-container {
  max-width: 760px; margin: 0 auto;
}
.legal-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem;
}
.legal-breadcrumb a { color: var(--text-3); }
.legal-breadcrumb a:hover { color: var(--accent); }
.legal-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.25rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.35rem;
}
.legal-updated { font-size: 0.8rem; color: var(--text-3); }

.legal-body { display: flex; flex-direction: column; gap: 0; }
.legal-section {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-size: 1rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.75rem;
}
.legal-section h3 {
  font-size: 0.875rem; font-weight: 700; color: var(--text);
  margin-bottom: 0.5rem;
}
.legal-section p { font-size: 0.9rem; line-height: 1.75; color: var(--text-2); margin-bottom: 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 1.25rem; margin: 0.5rem 0 0.75rem; list-style: disc; }
.legal-section li { font-size: 0.9rem; line-height: 1.75; color: var(--text-2); padding-left: 0.25rem; }
.legal-section a { color: var(--accent); text-decoration: underline; }
.legal-section code {
  font-family: var(--mono); font-size: .82em;
  background: var(--surface-2); padding: 0.1em 0.35em; border-radius: 3px;
  color: var(--text);
}

.legal-service-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.75rem; }
.legal-service {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.9rem 1rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.legal-service strong { font-size: 0.875rem; color: var(--text); }
.legal-service span { font-size: 0.82rem; color: var(--text-2); }
.legal-service a { font-size: 0.78rem; color: var(--accent); text-decoration: underline; }

.legal-table {
  width: 100%; border-collapse: collapse; margin-top: 0.75rem; font-size: 0.82rem;
}
.legal-table th {
  text-align: left; padding: 0.5rem 0.75rem;
  background: var(--surface-2); font-weight: 700; color: var(--text);
  border: 1px solid var(--border);
}
.legal-table td {
  padding: 0.5rem 0.75rem; color: var(--text-2);
  border: 1px solid var(--border); vertical-align: top;
}
.legal-table tr:nth-child(even) td { background: var(--surface-2); }

.legal-contact {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.65rem 1rem;
  font-size: 0.88rem; color: var(--text); margin-top: 0.5rem;
}

.legal-footer-nav {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.legal-footer-nav a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-3);
  text-decoration: none; transition: color .15s;
}
.legal-footer-nav a:hover { color: var(--accent); }

/* =====================================================
   HOME PAGE
   ===================================================== */
.hero { padding: 4rem 0 3rem; border-bottom: 1px solid var(--border); }
.hero .container { display: flex; flex-direction: column; gap: 2.5rem; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: #566879;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hero-left { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title {
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--text);
}
.hero-title-accent { color: var(--accent); }
.hero-desc { font-size: 0.92rem; color: var(--text-2); line-height: 1.7; max-width: 460px; }

/* Search widget */
.search-widget {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface); overflow: hidden;
  width: 100%;
}
.search-tabs { display: flex; border-bottom: 1px solid var(--border); }
.search-tab {
  flex: 1; background: none;
  border: none; border-right: 1px solid var(--border);
  color: #566879; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 12px 24px; cursor: pointer;
  transition: color 0.15s, background 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.search-tab svg { width: 15px; height: 15px; flex-shrink: 0; }
.search-tab:last-child { border-right: none; }
.search-tab:hover { color: var(--text-2); background: var(--surface-2); }
.search-tab.active { color: var(--accent); background: var(--surface-2); font-weight: 700; }
.search-tab.active svg { stroke: var(--accent); }
.search-form-inner { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.85rem; }
.search-input-row {
  display: flex; border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  background: var(--bg); transition: border-color 0.2s, box-shadow 0.2s;
}
.search-input-row:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(14,84,128,.1); }
.search-main-input {
  flex: 1; background: none; border: none;
  color: var(--text); font-family: var(--mono);
  font-size: 15px; padding: 0 1rem;
  height: 52px; outline: none; min-width: 0; width: 0;
}
.search-main-input::placeholder { color: var(--text-3); font-family: var(--font); font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-submit {
  background: var(--accent); border: none; color: #ffffff;
  font-family: var(--font); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0 16px; cursor: pointer; flex-shrink: 0; height: 52px;
  transition: background 0.15s; display: flex; align-items: center; gap: 0.4rem;
}
.search-submit:hover { background: #0c4367; }
@media (min-width: 480px) {
  .search-submit { padding: 0 32px; }
}
.search-chips { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.chips-label {
  font-size: 0.7rem; color: #566879;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; flex-shrink: 0;
}
.chip {
  background: none; border: 1px solid var(--border); border-radius: 2px;
  color: #566879; font-family: var(--mono); font-size: 0.72rem;
  padding: 0.2rem 0.5rem; cursor: pointer; transition: color 0.15s, border-color 0.15s;
}
.chip:hover { color: var(--text-2); border-color: var(--text-3); }

/* Stats bar */
.hero-stats {
  padding-top: 2.5rem; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem;
}
.stat-num {
  display: block; font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.03em; color: var(--text); font-variant-numeric: tabular-nums;
}
.stat-label {
  display: block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); margin-top: 0.1rem;
}

/* Sections */
.section { padding: 3.5rem 0; border-bottom: 1px solid var(--border); }
.section:last-child { border-bottom: none; }
.section-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.75rem;
}
.section-label-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--danger); flex-shrink: 0; }
.section-label-dot.green  { background: var(--safe); }
.section-label-dot.accent { background: var(--accent); }
.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700; letter-spacing: -0.025em; color: var(--text); margin-bottom: 0.4rem;
}
.section-sub { font-size: 0.88rem; color: var(--text-2); }
.section-header { margin-bottom: 2rem; }

/* Threat list */
.threat-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.threat-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); transition: background 0.1s;
}
.threat-row:last-child { border-bottom: none; }
.threat-row:hover { background: var(--surface-2); }
.threat-type {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); width: 48px; flex-shrink: 0;
}
.threat-val {
  flex: 1; font-family: var(--mono); font-size: 0.82rem;
  color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.threat-score-pill {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem; border-radius: 2px; flex-shrink: 0; font-variant-numeric: tabular-nums;
}
.threat-score-pill.danger { background: #dc262612; color: var(--danger); }
.threat-score-pill.warn   { background: #d9770612; color: var(--warn); }
.threat-score-pill.safe   { background: #16a34a12; color: var(--safe); }

/* ── Anasayfa Blog Widget ────────────────────────── */
.blog-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.25rem;
}
.blog-home-card {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface-1); transition: border-color .15s, box-shadow .15s;
  text-decoration: none; color: inherit; overflow: hidden;
}
.blog-home-cover {
  width: 100%; height: 160px; object-fit: cover; display: block;
}
.blog-home-body {
  display: flex; flex-direction: column; gap: .6rem;
  padding: 1.1rem 1.4rem 1.4rem;
  flex: 1;
}
.blog-home-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.blog-home-cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--primary);
}
.blog-home-title {
  font-size: 1rem; font-weight: 600; color: var(--text);
  line-height: 1.4; margin: 0;
}
.blog-home-summary {
  font-size: .85rem; color: var(--text-2);
  line-height: 1.55; flex: 1; margin: 0;
}
.blog-home-more {
  font-size: .82rem; font-weight: 600; color: var(--primary);
  margin-top: .25rem;
}

/* How it works — horizontal stepper */
.how-steps {
  display: flex; align-items: stretch;
  border: 1px solid #e8edf5; border-radius: var(--radius); overflow: hidden;
  flex-wrap: wrap;
}
.how-step {
  flex: 1; min-width: 200px;
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.45rem;
  background: var(--surface);
}
.how-arrow {
  display: none; align-items: center; justify-content: center;
  padding: 0 1.1rem; flex-shrink: 0;
  background: #f1f5f9;
  border-left: 1px solid #dde3ed; border-right: 1px solid #dde3ed;
  color: #94a3b8; font-size: 1.35rem; font-weight: 400; line-height: 1;
  pointer-events: none; user-select: none;
}
.how-step-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--accent); font-family: var(--mono);
}
.how-step-title { font-size: 0.92rem; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.how-step-desc { font-size: 0.8rem; color: var(--text-2); line-height: 1.55; margin-top: 0.1rem; }

/* Sources */
.sources-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.source-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.source-row:last-child { border-bottom: none; }
.source-name { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.source-desc { font-size: 0.78rem; color: var(--text-2); margin-top: 0.1rem; }
.source-weight { font-family: var(--mono); font-size: 0.82rem; font-weight: 500; color: var(--accent); flex-shrink: 0; }

/* =====================================================
   SEARCH FORM PAGE
   ===================================================== */
.search-page {
  flex: 1;
  padding: 80px 1.25rem 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(14,84,128,.07) 0%, transparent 70%),
    linear-gradient(180deg, #f0f4f8 0%, #f8f9fa 40%, #f8f9fa 100%);
  display: flex; justify-content: center; align-items: flex-start;
}
.search-page-inner {
  width: 100%; max-width: 640px;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.search-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,.04), 0 4px 16px rgba(14,84,128,.06);
}
@media (min-width: 480px) {
  .search-card { padding: 32px; }
}
.search-card-head { margin-bottom: 1.75rem; text-align: center; }
.search-card-title {
  font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.35rem;
}
.search-card-sub { font-size: 0.88rem; color: var(--text-2); }

/* Son Sorgulananlar */
.sq-recent {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.sq-recent-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 0.65rem;
}
.sq-recent-list { display: flex; flex-direction: column; gap: 0; }
.sq-recent-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0; border-bottom: 1px solid var(--border);
}
.sq-recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.sq-recent-type {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--text-3); flex-shrink: 0; width: 44px;
}
.sq-recent-val {
  flex: 1; font-family: var(--mono); font-size: 0.78rem;
  color: var(--text-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color .15s;
}
.sq-recent-val:hover { color: var(--accent); }
.sq-recent-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem; border-radius: 3px; flex-shrink: 0;
}
.sq-badge-danger  { background: #dc262610; color: var(--danger); }
.sq-badge-warn    { background: #d9770612; color: var(--warn); }
.sq-badge-safe    { background: #16a34a12; color: var(--safe); }
.sq-badge-neutral { background: var(--surface-2); color: var(--text-3); }

/* İstatistik satırı */
.sq-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-3);
}
.sq-stats strong { color: var(--text-2); font-weight: 600; }
.sq-stats-sep { color: var(--border); }

/* =====================================================
   RESULT PAGE
   ===================================================== */
.result-page { padding: 2rem 0 4rem; }
.result-crumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1.5rem;
}
.result-crumb a { color: var(--text-3); }
.result-crumb a:hover { color: var(--text-2); }
.result-query-type { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.4rem; }
.result-query-val {
  font-family: var(--mono); font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 500; color: var(--text); word-break: break-all; margin-bottom: 1.5rem;
}
.result-header { padding-bottom: 2rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border); }

/* Score */
.score-block { display: flex; flex-direction: column; gap: 0.75rem; }
.score-number-row { display: flex; align-items: baseline; gap: 0.5rem; }
.score-number { font-size: clamp(3rem, 10vw, 5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.score-number.danger { color: var(--danger); }
.score-number.warn   { color: var(--warn); }
.score-number.safe   { color: var(--safe); }
.score-denom { font-size: 1rem; color: var(--text-3); font-weight: 400; }
.score-bar-track { height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.score-bar-fill { height: 100%; border-radius: 2px; transition: width 0.8s ease; }
.score-bar-fill.danger { background: var(--danger); }
.score-bar-fill.warn   { background: var(--warn); }
.score-bar-fill.safe   { background: var(--safe); }
.score-verdict { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.score-verdict.danger { color: var(--danger); }
.score-verdict.warn   { color: var(--warn); }
.score-verdict.safe   { color: var(--safe); }
.score-meta { font-size: 0.75rem; color: var(--text-3); }

/* Alert */
.result-alert {
  padding: 0.85rem 1.1rem; border-radius: var(--radius); border: 1px solid;
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 0.84rem; line-height: 1.5; margin-top: 1.5rem;
}
.result-alert.danger { background: #dc26260c; border-color: #dc262640; color: #991b1b; }
.result-alert.warn   { background: #d977060c; border-color: #d9770640; color: #92400e; }
.result-alert svg { flex-shrink: 0; margin-top: 1px; }
.result-alert strong { color: inherit; }

.result-cols { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }

.result-section-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}

/* Scan list */
.scan-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.scan-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.9rem 1rem; border-bottom: 1px solid var(--border);
}
.scan-row:last-child { border-bottom: none; }
.scan-source-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  flex-shrink: 0; width: 130px;
}
.scan-source-tag.gsb   { color: #4285f4; }
.scan-source-tag.vt    { color: #394eff; }
.scan-source-tag.whois { color: var(--text-2); }
.scan-source-tag.internal { color: var(--text-3); }
.scan-status-area { flex: 1; }
.scan-status-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; }
.scan-detail-text { font-size: 0.76rem; color: var(--text-3); margin-top: 0.2rem; }
.s-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.s-dot.danger { background: var(--danger); }
.s-dot.safe   { background: var(--safe); }
.s-dot.warn   { background: var(--warn); }
.scan-contrib { font-family: var(--mono); font-size: 0.78rem; color: var(--text-3); flex-shrink: 0; }

/* Sticky panel */
.result-sticky {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.sticky-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.sticky-stat-list { display: flex; flex-direction: column; }
.sticky-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.82rem;
}
.sticky-stat:last-child { border-bottom: none; }
.sticky-stat-label { color: var(--text-2); }
.sticky-stat-val { font-weight: 600; color: var(--text); font-family: var(--mono); font-size: 0.8rem; }

/* Comments */
.comments-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.comments-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); display: flex; align-items: center; gap: 0.5rem;
}
.comment-count-badge {
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-2); font-size: 0.68rem; padding: 0.1rem 0.4rem; border-radius: 2px;
}

/* Report form */
.report-form-wrap {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; margin-top: 1rem;
  background: var(--surface); display: flex; flex-direction: column; gap: 1rem;
}
.experience-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.exp-option input { display: none; }
.exp-btn {
  display: inline-block; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.4rem 0.75rem;
  font-size: 0.78rem; cursor: pointer; color: var(--text-2);
  transition: border-color 0.15s, color 0.15s; user-select: none;
}
.exp-option input:checked + .exp-btn { border-color: var(--text-2); color: var(--text); }
.trust-stars { display: flex; gap: 0.25rem; align-items: center; }
.trust-stars label { cursor: pointer; }
.trust-stars input { display: none; }
.star { font-size: 1.3rem; color: var(--border); transition: color 0.1s; }
.trust-hint { font-size: 0.78rem; color: var(--text-3); margin-left: 0.5rem; }
.file-upload-area {
  border: 1px dashed var(--border); border-radius: var(--radius);
  padding: 1rem; cursor: pointer; transition: border-color 0.15s;
}
.file-upload-area:hover { border-color: var(--text-3); }
.file-upload-trigger {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem; color: var(--text-3); font-size: 0.82rem;
}
.file-upload-trigger small { font-size: 0.72rem; }
.file-preview { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }

/* Comment cards */
.comment-list { display: flex; flex-direction: column; }
.comment-item { padding: 1.1rem 0; border-bottom: 1px solid var(--border); }
.comment-item:last-child { border-bottom: none; }
.comment-item:first-child { padding-top: 0; }
.comment-item-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 0.6rem;
}
.comment-author-info { display: flex; flex-direction: column; gap: 0.15rem; }
.comment-author-name {
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 0.4rem;
}
.verified-badge {
  background: var(--accent); color: #ffffff;
  font-size: 0.6rem; font-weight: 700; padding: 0.1rem 0.3rem; border-radius: 2px;
}
.role-badge {
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text-3); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 0.1rem 0.35rem; border-radius: 2px;
}
.comment-date { font-size: 0.72rem; color: var(--text-3); }
.comment-meta-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.exp-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.2rem 0.5rem; border-radius: 2px; }
.exp-tag.scammed    { background: #dc262612; color: var(--danger); }
.exp-tag.suspicious { background: #d9770612; color: var(--warn); }
.exp-tag.safe       { background: #16a34a12; color: var(--safe); }
.comment-title-text { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.3rem; }
.comment-body-text  { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }
.loss-tag { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; color: var(--danger); margin-top: 0.5rem; }
.evidence-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.6rem; }
.evidence-thumb { width: 72px; height: 54px; border-radius: 2px; overflow: hidden; border: 1px solid var(--border); }
.evidence-thumb img { width: 100%; height: 100%; object-fit: cover; }
.comment-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
.vote-btns { display: flex; align-items: center; gap: 0.35rem; }
.vote-btn {
  background: none; border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-3); font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.6rem; cursor: pointer;
  display: flex; align-items: center; gap: 0.3rem; transition: color 0.15s, border-color 0.15s;
}
.vote-btn:hover { color: var(--text-2); border-color: var(--text-3); }
.vote-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.verify-area { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; }
.verify-btn {
  background: none; border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-3); font-size: 0.72rem; padding: 0.25rem 0.5rem;
  cursor: pointer; transition: color 0.15s, border-color 0.15s;
}
.verify-btn:hover { color: var(--safe); border-color: var(--safe); }
.verify-btn.fake:hover { color: var(--danger); border-color: var(--danger); }
.verify-stats { font-size: 0.7rem; color: var(--text-3); }
.vote-count-static { font-size: 0.75rem; color: var(--text-3); }
.empty-state {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; padding: 2.5rem 1rem;
  color: var(--text-3); font-size: 0.84rem; text-align: center;
}

/* =====================================================
   AUTH PAGES
   ===================================================== */
.auth-page {
  display: flex; align-items: center; justify-content: center;
  min-height: calc(100vh - 56px); padding: 2rem 1.25rem;
}
.auth-wrap {
  position: relative; width: 100%; max-width: 420px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem;
}

/* === AUTH MODAL OVERLAY === */
.auth-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; overflow-y: auto;
}
.auth-overlay .auth-wrap {
  width: 100%; max-width: 420px;
  max-height: calc(100dvh - 2rem);
  overflow-y: auto;
  animation: authSlideUp 0.2s ease;
  scrollbar-width: none;
}
.auth-overlay .auth-wrap::-webkit-scrollbar { display: none; }
/* reCAPTCHA rozeti görünsün */
.grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 99999 !important;
  bottom: 80px !important; /* çerez banner'ının üzerinde */
}
@keyframes authSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.auth-tabs {
  display: flex; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.auth-tab-btn {
  flex: 1; padding: 0.65rem 1rem; background: none; border: none;
  font-size: 0.875rem; font-weight: 600; color: var(--text-3);
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; font-family: var(--font);
  transition: color 0.15s, border-color 0.15s;
}
.auth-tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.auth-tab-btn:hover:not(.active) { color: var(--text-2); }

/* pass-wrap */
.pass-wrap { position: relative; }
.pass-wrap .form-input { padding-right: 2.75rem; }
.pass-strength {
  height: 4px; border-radius: 2px;
  background: var(--border); margin-top: 0.35rem;
  transition: background 0.3s;
}
.auth-logo-wrap { margin-bottom: 1rem; display: flex; justify-content: center; align-items: center; }
.auth-title { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.025em; color: var(--text); margin-bottom: 0.25rem; }
.auth-sub { font-size: 0.85rem; color: var(--text-2); margin-bottom: 1rem; }
.auth-benefits {
  display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 1rem;
  padding: 0.6rem 0.85rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.auth-benefit-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-2); }
.auth-benefit-item svg { color: var(--safe); flex-shrink: 0; }
.auth-form { display: flex; flex-direction: column; gap: 1rem; }
.auth-footer { text-align: center; font-size: 0.82rem; color: var(--text-3); margin-top: 1.25rem; }
.auth-footer a { color: var(--text); text-decoration: underline; }

/* =====================================================
   PREMIUM PAGE
   ===================================================== */
.premium-page { padding: 3rem 0 5rem; }
.premium-hero { padding: 3rem 0 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
.premium-eyebrow {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.premium-title { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 700; letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.5rem; line-height: 1.1; }
.premium-sub { font-size: 0.9rem; color: var(--text-2); max-width: 500px; }
.premium-layout { display: flex; flex-direction: column; gap: 2.5rem; }
.price-box { order: -1; }
.premium-features-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.premium-feature-list { display: flex; flex-direction: column; }
.premium-feature { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.premium-feature:last-child { border-bottom: none; }
.premium-feature:first-child { padding-top: 0; }
.premium-feature-check {
  width: 18px; height: 18px; border: 1px solid var(--safe);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.premium-feature-check svg { color: var(--safe); }
.premium-feature-label { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.premium-feature-sub { font-size: 0.78rem; color: var(--text-2); margin-top: 0.1rem; }

/* Price box */
.price-box {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.price-box-header { border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.price-plan-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.price-amount-row { display: flex; align-items: baseline; gap: 0.3rem; }
.price-big { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.04em; color: var(--text); line-height: 1; font-variant-numeric: tabular-nums; }
.price-currency { font-size: 1.5rem; color: var(--text-2); font-weight: 400; }
.price-period { font-size: 0.85rem; color: var(--text-3); }
.price-yearly { font-size: 0.78rem; color: var(--text-3); margin-top: 0.35rem; }
.price-yearly strong { color: var(--accent); }
.price-cta { display: flex; flex-direction: column; gap: 0.5rem; }
.price-note { font-size: 0.72rem; color: var(--text-3); text-align: center; }

/* Comparison table */
.compare-section { margin-top: 3rem; }
.compare-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1rem; }
.compare-table {
  width: 100%; border-collapse: collapse; font-size: 0.84rem;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.compare-table th {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); padding: 0.7rem 1rem; text-align: left;
  border-bottom: 1px solid var(--border); background: var(--surface);
}
.compare-table th.th-premium { color: var(--accent); }
.compare-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-2); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .td-center { text-align: center; }
.compare-table .td-premium { color: var(--text); }
.tbl-ok { color: var(--safe); font-weight: 700; }
.tbl-no { color: var(--text-3); }

/* =====================================================
   ADMIN PAGES
   ===================================================== */
.admin-page { padding: 2rem 0 4rem; }
.admin-topbar { display: flex; flex-direction: column; gap: 1rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.admin-page-title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.admin-nav { display: flex; gap: 0.25rem; flex-wrap: wrap; }
.admin-nav-link {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); padding: 0.4rem 0.75rem; border-radius: var(--radius);
  border: 1px solid transparent; transition: color 0.15s, border-color 0.15s;
  display: flex; align-items: center; gap: 0.4rem;
}
.admin-nav-link:hover { color: var(--text-2); }
.admin-nav-link.active { color: var(--text); border-color: var(--border); }
.badge-num {
  background: var(--danger); color: #fff; font-size: 0.6rem; font-weight: 700;
  padding: 0.1rem 0.35rem; border-radius: 2px;
}

/* Admin stats */
.admin-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem;
}
.admin-stat { background: var(--surface); padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.2rem; }
.admin-stat-val { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text); font-variant-numeric: tabular-nums; }
.admin-stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); }
.admin-stat-action { font-size: 0.72rem; color: var(--accent); margin-top: 0.5rem; font-weight: 600; }

/* Admin table block */
.admin-block { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.admin-block-title {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); padding: 0.9rem 1rem; border-bottom: 1px solid var(--border);
  background: var(--surface); display: flex; align-items: center; justify-content: space-between;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table th {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); padding: 0.6rem 1rem; text-align: left;
  border-bottom: 1px solid var(--border); background: var(--surface);
}
.admin-table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-2); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table a { color: var(--text); }
.admin-table a:hover { color: var(--accent); }
.admin-table code { font-family: var(--mono); font-size: 0.78rem; color: var(--text-2); }
.text-muted { color: var(--text-3); }

/* Risk badges */
.risk-badge {
  display: inline-block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.4rem; border-radius: 2px;
}
.risk-badge.critical, .risk-badge.high    { background: #dc262612; color: var(--danger); }
.risk-badge.medium                         { background: #d9770612; color: var(--warn); }
.risk-badge.low, .risk-badge.safe          { background: #16a34a12; color: var(--safe); }
.risk-badge.user                           { background: var(--surface-2); color: var(--text-3); }
.risk-badge.premium                        { background: #0E548010; color: var(--accent); }
.risk-badge.admin, .risk-badge.moderator   { background: #dc262612; color: var(--danger); }
.risk-badge.banned                         { background: #dc262625; color: var(--danger); }

/* Admin add form */
.admin-form-row { display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem; }

/* Comment moderation */
.mod-comment { padding: 1.1rem; border-bottom: 1px solid var(--border); }
.mod-comment:last-child { border-bottom: none; }
.mod-comment-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.6rem; }
.mod-author { display: flex; align-items: center; gap: 0.6rem; }
.avatar-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: var(--text-2); flex-shrink: 0;
}
.mod-author-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.mod-author-meta { font-size: 0.72rem; color: var(--text-3); }
.mod-body  { font-size: 0.83rem; color: var(--text-2); line-height: 1.6; margin-bottom: 0.75rem; }
.mod-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.mod-actions { display: flex; gap: 0.5rem; align-items: center; }

/* Pagination */
.pagination { display: flex; gap: 0.25rem; flex-wrap: wrap; margin-top: 1rem; padding: 0 1rem 1rem; }

/* =====================================================
   768px+ BREAKPOINT
   ===================================================== */
@media (min-width: 768px) {
  /* Navbar */
  .nav-toggle { display: none; }
  .nav-dropdown { display: contents; }
  .nav-main { display: flex; flex-direction: row; align-items: center; gap: 0.25rem; position: static; background: none; border: none; padding: 0; margin-left: auto; }
  .nav-auth { display: flex; flex-direction: row; align-items: center; position: static; background: none; border: none; padding: 0; }

  /* Hero */
  .hero .container { display: grid; grid-template-columns: 1fr minmax(440px,520px); gap: 3rem; align-items: center; }
  .hero-stats { grid-column: 1 / -1; }

  /* Footer */
  .site-footer .container { flex-direction: row; align-items: center; justify-content: space-between; }

  /* Premium */
  .premium-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
  .price-box { order: 0; }

  /* Result */
  .result-cols { display: grid; grid-template-columns: 1fr 260px; gap: 2rem; align-items: start; }
  .result-sticky { position: sticky; top: 72px; }

  /* Admin */
  .admin-form-row { flex-direction: row; align-items: flex-end; }
  .admin-form-row .form-group { flex: 1; }
  .admin-form-row .form-group:first-child { flex: 0 0 120px; }
  .admin-form-row .form-group:last-of-type { flex: 0; }
  .admin-topbar { flex-direction: row; align-items: center; justify-content: space-between; }

  /* How steps — unwrap on desktop */
  .how-steps { flex-wrap: nowrap; }
  .how-arrow { display: flex; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

  /* Search tips */
}

/* === UTILS === */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mono { font-family: var(--mono); }
.accent { color: var(--accent); }
.danger-text { color: var(--danger); }
.safe-text { color: var(--safe); }

/* === MISSING ADMIN ALIASES === */
/* admin-nav direct <a> tags (no -link suffix in views) */
.admin-nav a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3); padding: 0.4rem 0.75rem; border-radius: var(--radius);
  border: 1px solid transparent; transition: color 0.15s, border-color 0.15s;
  display: flex; align-items: center; gap: 0.4rem;
}
.admin-nav a:hover { color: var(--text-2); }
.admin-nav a.active { color: var(--text); border-color: var(--border); }
.admin-badge {
  background: var(--danger); color: #fff; font-size: 0.6rem; font-weight: 700;
  padding: 0.1rem 0.35rem; border-radius: 2px;
}

/* Admin stat box alias */
.admin-stat-box { background: var(--surface); padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.2rem; }
.admin-stat-num { font-size: 1.6rem; font-weight: 700; letter-spacing: -0.03em; color: var(--text); font-variant-numeric: tabular-nums; }
.admin-stat-num.warn { color: var(--warn); }
.admin-stat-num.danger { color: var(--danger); }

/* Score/type pills for admin tables */
.score-pill {
  display: inline-block; font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
  padding: 0.2rem 0.45rem; border-radius: 2px; min-width: 40px; text-align: center;
}
.score-pill.danger { background: #dc262612; color: var(--danger); }
.score-pill.warn   { background: #d9770612; color: var(--warn); }
.score-pill.safe   { background: #16a34a12; color: var(--safe); }
.type-badge {
  display: inline-block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.15rem 0.4rem; border-radius: 2px;
  background: var(--surface-2); color: var(--text-3); border: 1px solid var(--border);
}
.mono-cell { font-family: var(--mono); font-size: 0.78rem; color: var(--text-2); }
.table-val-link { color: var(--text); font-weight: 500; }
.table-val-link:hover { color: var(--accent); }

/* User status */
.status-active { color: var(--safe); font-size: 0.75rem; font-weight: 600; }
.status-banned { color: var(--danger); font-size: 0.75rem; font-weight: 600; }
.row-banned td { opacity: 0.55; }

/* Pagination */
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; font-size: 0.78rem; font-weight: 600;
  color: var(--text-2); border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; transition: border-color 0.15s, color 0.15s;
}
.page-btn:hover { color: var(--text); border-color: var(--text-3); }
.page-btn.active { color: var(--accent); border-color: var(--accent); }

/* Button variants */
.btn-safe { background: transparent; color: var(--safe); border-color: var(--safe); }
.btn-safe:hover { background: #16a34a12; }
.btn-danger-outline { background: transparent; color: var(--danger); border-color: var(--danger); }
.btn-danger-outline:hover { background: #dc262612; }

/* Mod-comment extra classes used in views */
.mod-comment-list {}
.mod-comment-meta { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.mod-comment-user { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.mod-comment-date { font-size: 0.72rem; color: var(--text-3); }
.mod-comment-target {
  font-size: 0.72rem; color: var(--text-3); display: inline-flex; align-items: center; gap: 0.25rem;
}
.mod-comment-target:hover { color: var(--accent); }
.mod-comment-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.mod-comment-body { font-size: 0.83rem; color: var(--text-2); line-height: 1.6; margin: 0.5rem 0; }
.mod-comment-actions { display: flex; gap: 0.5rem; margin-top: 0.6rem; }

/* Role badge */
.role-badge {
  display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.15rem 0.4rem; border-radius: 2px;
  background: var(--surface-2); color: var(--text-3);
}

/* === AUTH MODAL CLOSE === */
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-3);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.modal-close:hover { color: var(--text); background: var(--surface-2); }

/* === AFFİLİATE KORUMA KUTUSU === */
.affiliate-protect-box {
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  background: #fffbeb;
}
.affiliate-protect-header {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: .6rem; color: #92400e;
}
.affiliate-badge {
  margin-left: auto; font-size: .68rem; font-weight: 600;
  background: #f59e0b; color: #fff;
  padding: .15rem .5rem; border-radius: 20px;
}
.affiliate-protect-desc { font-size: .82rem; color: #64748b; margin: 0 0 1rem; }
.affiliate-cards { display: flex; flex-direction: column; gap: .6rem; }
.affiliate-card {
  display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 8px; padding: .75rem 1rem;
  text-decoration: none; color: inherit;
  transition: box-shadow .15s, border-color .15s;
}
.affiliate-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.08); border-color: #94a3b8; }
.affiliate-card-logo { font-size: 1.5rem; }
.affiliate-card-info { flex: 1; }
.affiliate-card-name { font-weight: 600; font-size: .9rem; color: var(--text); }
.affiliate-card-desc { font-size: .75rem; color: var(--text-3); margin-top: .1rem; }
.affiliate-card-cta { font-size: .8rem; font-weight: 600; color: #2563eb; white-space: nowrap; }

/* === TABLO SARICI === */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* === REKLAM ALANLARI === */
.ad-slot { min-height: 0; }
ins.adsbygoogle[data-ad-status="unfilled"] { display: none !important; }
ins.adsbygoogle:not([data-ad-status]) { display: block; min-height: 0; overflow: hidden; }
