

/* SesliSite PHP - Main Styles */
:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --accent: #8b5cf6;
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --bg-muted: #0f0f0f;
  --border: #1f2937;
  --border-light: #374151;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #22c55e;
  --radius: 0.75rem;
  --radius-sm: 0.5rem;
  --radius-lg: 1rem;
  --shadow: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.3);
  --max-w: 1280px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

/* ─── Temaya uygun scrollbar ─── */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-muted); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 6px; border: 2px solid var(--bg-muted); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }
::-webkit-scrollbar-corner { background: var(--bg-muted); }
* { scrollbar-width: thin; scrollbar-color: var(--border-light) var(--bg-muted); }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1rem; }
@media(min-width:640px) { .container { padding: 0 1.5rem; } }
@media(min-width:1024px) { .container { padding: 0 2rem; } }

/* ─── Announcement Bar ─── */
.announcement-bar {
  background: linear-gradient(90deg, #047857 0%, #059669 50%, #065f46 100%);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  height: 32px;
  line-height: 32px;
}
.announcement-bar:hover .announcement-track { animation-play-state: paused; }
.announcement-track {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 60s linear infinite;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.announcement-text { font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.02em; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  border-bottom: 1px solid rgba(16,185,129,0.2);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; color: white; }
.logo-text { font-size: 1.25rem; font-weight: 800; color: white; }
.logo-subtitle { font-size: 0.65rem; color: rgba(255,255,255,0.7); font-weight: 400; }

.nav { display: none; align-items: center; gap: 0.25rem; }
@media(min-width:768px) { .nav { display: flex; } }
.nav a {
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
}
.nav a:hover, .nav a.active { color: white; background: rgba(255,255,255,0.1); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; }
.btn-outline { background: transparent; border: 1px solid var(--border-light); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #dc2626; color: white; }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8rem; }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--radius-sm); }

/* Mobile menu - pure CSS checkbox toggle, no JS needed */
.mobile-check { position: absolute; opacity: 0; pointer-events: none; }
.mobile-overlay {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  background: rgba(0,0,0,0.5);
  cursor: pointer;
}
#mc:checked ~ .mobile-overlay { display: block; }
.mobile-toggle { display: flex; background: none; border: none; color: white; cursor: pointer; padding: 0.5rem; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
@media(min-width:768px) { .mobile-toggle { display: none; } }
.mobile-menu {
  display: none;
  background: #022c22;
  border-top: 2px solid var(--primary);
  padding: 0.75rem 1rem 1rem;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 200;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}
#mc:checked ~ .mobile-menu { display: block !important; }
.mobile-menu a { display: block; color: rgba(255,255,255,0.9); padding: 0.875rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem; font-weight: 600; border-radius: 0.375rem; }
.mobile-menu a:hover, .mobile-menu a:active { color: white; background: rgba(16,185,129,0.15); }

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1f1a 50%, #0a0a0a 100%);
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(16,185,129,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.125rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 2rem; }
.hero-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
@media(max-width:480px) {
  .hero { padding: 2.5rem 0.75rem; }
  .hero h1 { font-size: 1.75rem; }
  .hero .btn-lg { padding: 0.625rem 0.875rem; font-size: 0.85rem; }
  .hero .flex { gap: 0.5rem; }
  .domain-actions { flex-direction: column; }
  .domain-actions .btn { width: 100%; text-align: center; justify-content: center; }
}
@media(min-width:768px) { .hero h1 { font-size: 3rem; } }
@media(min-width:1024px) { .hero h1 { font-size: 3.5rem; } }

/* ─── Cards ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.card:hover { border-color: rgba(16,185,129,0.3); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.card-body { padding: 1.25rem; position: relative; }
.card-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media(min-width:640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:1280px) { .card-grid { grid-template-columns: repeat(4, 1fr); } }

/* ─── Domain Cards ─── */
.domain-name { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; }
.domain-name span { color: var(--primary); }
.domain-price { font-size: 1.5rem; font-weight: 800; }
.domain-actions { display: flex; gap: 0.5rem; margin-top: 1rem; }
.domain-actions .btn { flex: 1; }

.card-hover-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  z-index: 5;
}
.card-hover-badge.badge-popular {
  background: #f59e0b;
  color: #fff;
}
.card-hover-badge.badge-dropped {
  background: #ef4444;
  color: #fff;
  top: 36px;
}
.card-hover-badge .badge-icon { font-size: 0.7rem; }

/* ─── Badge (admin & general) ─── */
.badge {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-trending { background: rgba(249,115,22,0.15); color: #fb923c; border: 1px solid rgba(249,115,22,0.3); }
.badge-discount { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.badge-sold { background: rgba(239,68,68,0.15); color: #f87171; }
.badge-published { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.badge-draft { background: rgba(107,114,128,0.15); color: #9ca3af; }

/* ─── Section ─── */
.section { padding: 3rem 0; }
.section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.section-title h2 { font-size: 1.5rem; font-weight: 700; }
.section-title .icon-box {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16,185,129,0.1);
  color: var(--primary);
}
@media(min-width:768px) { .section-title h2 { font-size: 1.875rem; } }

/* ─── Blog Cards ─── */
.blog-card { cursor: pointer; }
.blog-card .cover {
  height: 160px;
  background: linear-gradient(135deg, var(--primary-dark), #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card .cover svg { width: 48px; height: 48px; color: rgba(255,255,255,0.3); }
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-meta { font-size: 0.75rem; color: var(--text-dim); display: flex; gap: 0.5rem; align-items: center; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 1.0625rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.5rem; }
.blog-excerpt { font-size: 0.875rem; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); }

/* ─── Blog Detail ─── */
.blog-detail { max-width: 800px; margin: 0 auto; }
.blog-detail h1 { font-size: 2rem; font-weight: 800; line-height: 1.3; margin-bottom: 1rem; }
@media(min-width:768px) { .blog-detail h1 { font-size: 2.5rem; } }
.blog-detail .content { font-size: 1.0625rem; line-height: 1.8; color: var(--text-muted); }
.blog-detail .content h1,.blog-detail .content h2,.blog-detail .content h3 { color: var(--text); margin: 2rem 0 1rem; font-weight: 700; }
.blog-detail .content h2 { font-size: 1.5rem; }
.blog-detail .content h3 { font-size: 1.25rem; }
.blog-detail .content strong { color: var(--text); }
.blog-detail .content ul { padding-left: 1.5rem; margin: 1rem 0; }
.blog-detail .content li { margin-bottom: 0.5rem; }

/* Tags */
.tag { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; background: rgba(139,92,246,0.1); color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); border-radius: 9999px; font-size: 0.75rem; font-weight: 500; }

/* ─── Tools Page ─── */
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }
.tool-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
.tool-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.tool-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1rem; }

/* ─── Footer ─── */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding: 3rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
@media(min-width:640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col p, .footer-col a { font-size: 0.875rem; color: var(--text-dim); display: block; margin-bottom: 0.375rem; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; text-align: center; font-size: 0.8rem; color: var(--text-dim); }
.footer-bottom a { color: var(--primary); }

/* Floating Action Buttons - uzmanpaneli.com style */
.fab-btn {
  position: fixed;
  bottom: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.fab-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 24px rgba(0,0,0,0.45);
  color: #fff;
  text-decoration: none;
}
.fab-btn svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.fab-label {
  display: none;
}

/* WhatsApp - sağ alt köşe */
.fab-whatsapp {
  right: 1.25rem;
  background: #25D366;
  animation: fab-pulse-green 2s infinite;
}

/* Hemen Ara - sol alt köşe */
.fab-call {
  left: 1.25rem;
  background: #3b82f6;
  animation: fab-pulse-blue 2s infinite;
}

@keyframes fab-pulse-green {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%  { box-shadow: 0 4px 16px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.08); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}
@keyframes fab-pulse-blue {
  0%   { box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
  50%  { box-shadow: 0 4px 16px rgba(59,130,246,0.55), 0 0 0 10px rgba(59,130,246,0.06); }
  100% { box-shadow: 0 4px 16px rgba(59,130,246,0.3); }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 89;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { border-color: var(--primary); color: var(--primary); }

/* ─── Form Elements ─── */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; color: var(--text); }
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.875rem;
  font-family: var(--font);
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--primary); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { cursor: pointer; }
.form-check { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); }

/* ─── Admin Layout ─── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: #080808;
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  overflow-y: auto;
  z-index: 50;
  transition: transform 0.3s;
}
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
}
.admin-sidebar a:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.admin-sidebar a.active { color: var(--primary); background: rgba(16,185,129,0.08); border-right: 2px solid var(--primary); }
.admin-sidebar a svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-sidebar .sidebar-section { padding: 0.5rem 1.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-top: 1rem; }
.admin-content { flex: 1; margin-left: 260px; padding: 1.5rem; min-height: 100vh; background: var(--bg); }
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  gap: 0.75rem;
  flex-wrap: wrap;
}
.admin-topbar h1 { font-size: 1.25rem; font-weight: 700; flex-shrink: 0; }
.admin-topbar-actions { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }

/* Admin Table */
.admin-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.admin-table th, .admin-table td { padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.875rem; white-space: nowrap; }
.admin-table td.wrap-cell { white-space: normal; min-width: 150px; max-width: 320px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 4px; max-height: 120px; overflow-y: auto; }
.tag-list .badge { white-space: nowrap; }
.admin-table th { color: var(--text-muted); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; background: var(--bg-muted); }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }
.admin-table .actions { display: flex; gap: 0.25rem; justify-content: flex-end; flex-shrink: 0; }
.admin-table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -0.5rem; padding: 0 0.5rem; }

/* Admin Cards/Stats */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; }
.stat-card .stat-value { font-size: 1.75rem; font-weight: 800; }
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
}
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-header h2 { font-size: 1.125rem; font-weight: 700; }
.modal-footer { display: flex; justify-content: flex-end; gap: 0.5rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }

/* Toast */
.toast-container { position: fixed; top: 1rem; right: 1rem; z-index: 300; display: flex; flex-direction: column; gap: 0.5rem; }
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  box-shadow: var(--shadow-lg);
  animation: slide-in 0.3s ease-out;
  min-width: 250px;
}
.toast.success { border-left: 3px solid var(--success); }
.toast.error { border-left: 3px solid var(--danger); }
@keyframes slide-in { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.25rem; margin-top: 2rem; }
.pagination a, .pagination span {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: white; border-color: var(--primary); }
.pagination .disabled { opacity: 0.5; pointer-events: none; }

/* Utility */
.flex { display: flex; } .flex-col { flex-direction: column; } .items-center { align-items: center; } .justify-between { justify-content: space-between; } .gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; } .text-xs { font-size: 0.75rem; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.mt-2 { margin-top: 0.5rem; } .mt-4 { margin-top: 1rem; } .mt-8 { margin-top: 2rem; } .mb-4 { margin-bottom: 1rem; } .mb-8 { margin-bottom: 2rem; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Responsive admin */
.admin-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.6rem;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.admin-menu-toggle svg { width: 20px; height: 20px; pointer-events: none; }
.admin-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 45;
}
.admin-sidebar-overlay.active { display: block; }
@media(max-width:1023px) {
  .admin-menu-toggle { display: flex; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-content { margin-left: 0; padding: 1rem; }
  .admin-topbar h1 { font-size: 1.1rem; }
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .modal { margin: 0.5rem; max-height: 95vh; }
}

/* Search bar */
.search-bar { position: relative; }
.search-bar input { padding-left: 2.5rem; }
.search-bar svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--text-dim); pointer-events: none; }

/* Comment form */
.comment-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 2rem; }
.comment-item { padding: 1rem 0; border-bottom: 1px solid var(--border); }
.comment-item:last-child { border-bottom: none; }
.comment-author { font-weight: 600; font-size: 0.9rem; }
.comment-date { font-size: 0.75rem; color: var(--text-dim); }
.comment-text { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.375rem; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Icerik koruma - metin secmeyi engelle (form alanlari haric) */
body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; -webkit-tap-highlight-color: transparent; }
input, textarea, select, [contenteditable="true"] { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }
img { -webkit-user-drag: none; -khtml-user-drag: none; -moz-user-drag: none; -o-user-drag: none; user-drag: none; pointer-events: auto; }

