﻿/* =============================================
   Oto Tartışma  Profesyonel Tema
============================================= */
:root {
  --bg-body: #111827;
  --bg-card: #1f2937;
  --bg-card-hover: #263244;
  --bg-input: #1a2332;
  --bg-dark: #0d1117;
  --bg-navbar: rgba(17, 24, 39, 0.92);
  --border-color: #374151;
  --border-light: #4b5563;
  --text-white: #f9fafb;
  --text-light: #d1d5db;
  --text-gray: #9ca3af;
  --text-dark: #6b7280;
  --orange: #f97316;
  --orange-hover: #fb923c;
  --orange-bg: rgba(249, 115, 22, 0.1);
  --green: #10b981;
  --green-bg: rgba(16, 185, 129, 0.1);
  --red: #ef4444;
  --red-bg: rgba(239, 68, 68, 0.1);
  --blue: #3b82f6;
  --blue-bg: rgba(59, 130, 246, 0.1);
  --purple: #8b5cf6;
  --yellow: #eab308;
  --yellow-bg: rgba(234, 179, 8, 0.1);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-height: 60px;
}

/* ---- Aydınlık Tema (Opsiyonel) ---- */
body.tema-acik {
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-input: #fdfdfd;
  --bg-dark: #f1f5f9;
  --bg-navbar: rgba(255, 255, 255, 0.9);
  --border-color: #e2e8f0;
  --border-light: #cbd5e1;
  --text-white: #0f172a;
  --text-light: #334155;
  --text-gray: #64748b;
  --text-dark: #94a3b8;
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Aydınlık Mod Mobil Menü Düzenlemeleri */
body.tema-acik .mobil-menu-btn span {
  background: var(--text-white) !important;
}

@media (max-width: 768px) {
  body.tema-acik .nav-links {
    background: var(--bg-card) !important;
    border-right: 1px solid var(--border-color) !important;
  }

  body.tema-acik .nav-link {
    color: var(--text-light) !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  body.tema-acik .nav-link::before {
    border-color: var(--text-gray) !important;
  }

  body.tema-acik .nav-link:hover {
    background: var(--bg-body) !important;
  }
}

/* ---- Reset ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: var(--font);
  background-color: var(--bg-body);
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--orange-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== ÇEREZ BANNERI (Cookie Consent Banner) ========== */
.cerez-banner-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
  z-index: 999999;
  padding: 24px 0;
  display: none;
  /* JS ile açılacak */
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cerez-banner-container.aktif {
  display: block;
  transform: translateY(0);
}

.cerez-banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cerez-metin {
  flex: 1;
}

.cerez-metin h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.cerez-metin p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cerez-metin p a {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 600;
}

.cerez-butonlar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
}

.cerez-btn {
  width: 100%;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}

.btn-cerez-kabul {
  background: var(--orange);
  color: #fff;
}

.btn-cerez-kabul:hover {
  background: var(--orange-hover);
  transform: scale(1.02);
}

.btn-cerez-red {
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-light);
}

.btn-cerez-red:hover {
  background: var(--bg-dark);
  color: var(--text-white);
}

@media (max-width: 991px) {
  .cerez-banner-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cerez-butonlar {
    width: 100%;
    min-width: 0;
  }
}

/* Reklam Layout Yaps */
.sayfa-layout {
  display: flex;
  max-width: 1540px;
  margin: 0 auto;
  gap: 20px;
  padding: 0 10px;
}

.reklam-alani-sol,
.reklam-alani-sag {
  width: 160px;
  flex-shrink: 0;
  padding-top: 20px;
}

@media (max-width: 1500px) {
  .reklam-alani-sol,
  .reklam-alani-sag {
    display: none !important;
  }

  .sayfa-layout {
    flex-direction: column;
  }
}

.ana-icerik-kolon {
  flex: 1;
  min-width: 0;
}

.reklam-kutu {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  position: sticky;
  top: calc(var(--nav-height) + 20px);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 700;
}

.reklam-kutu::before {
  content: "REKLAM";
  margin-bottom: 10px;
  font-size: 0.7rem;
  letter-spacing: 2px;
}

@media (max-width: 1400px) {
  .reklam-alani-sol,
  .reklam-alani-sag {
    display: none;
  }

  .sayfa-layout {
    max-width: 1140px;
  }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--bg-navbar);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  margin-left: 25px;
  margin-right: 25px;
}

.navbar-sol {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
}

.logo:hover {
  color: var(--text-white);
}

.logo-kare {
  width: 38px;
  height: 38px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
  transition: transform 0.2s;
}

.logo:hover .logo-kare {
  transform: scale(1.05);
}

.logo-kare-lg {
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}

.logo-icon {
  font-size: 1.3rem;
}

.logo-accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: var(--text-gray);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.06);
}

/* ===== NAV ARAMA ===== */
.nav-arama {
  position: relative;
}

.nav-arama-form {
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border-radius: 50px;
  overflow: hidden;
  transition: width 0.3s ease;
  width: 38px;
  height: 38px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.nav-arama-form.acik {
  width: 260px;
  padding-left: 8px;
}

.nav-arama-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: color 0.2s;
}

.nav-arama-btn:hover {
  color: var(--orange);
}

.nav-arama-input {
  width: 0;
  opacity: 0;
  border: none;
  background: transparent;
  color: var(--text-white);
  font-family: var(--font);
  font-size: 0.85rem;
  outline: none;
  transition:
    width 0.3s,
    opacity 0.3s;
  height: 100%;
}

.nav-arama-form.acik .nav-arama-input {
  width: 100%;
  opacity: 1;
  padding-right: 12px;
}

/* ===== NAV Bildirim ===== */
.nav-bildirim-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-bildirim-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--orange);
}

.nav-bildirim-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid var(--bg-navbar);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* ===== NAV SEPARATOR ===== */
.nav-separator {
  width: 1px;
  height: 28px;
  background: var(--border-color);
  margin: 0 4px;
}

/* ===== NAV G�R�� BUTONU ===== */
.nav-giris-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

/* ===== KULLANICI B�LG� M�N� ===== */
.kullanici-info-mini {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-right: 4px;
}

.kullanici-adi-mini {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.2;
}

.kullanici-rol-mini {
  font-size: 0.68rem;
  color: var(--text-dark);
  font-weight: 500;
}

.dropdown-badge {
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 50px;
  margin-left: 4px;
}

/* ===== DROPDOWN MEN� ===== */
.nav-dropdown,
.nav-mega {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  transition: transform 0.2s;
  opacity: 0.5;
}

.nav-dropdown:hover .nav-chevron,
.nav-mega:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown Panel */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  color: var(--text-gray);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background: rgba(249, 115, 22, 0.08);
  color: var(--orange);
}

/* ===== MEGA MEN� ===== */
.nav-mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 400px;
  max-width: 700px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1000;
}

.nav-mega:hover .nav-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-mega-grid {
  display: grid;
  gap: 8px;
}

.nav-mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  color: var(--text-gray);
}

.nav-mega-item:hover {
  background: rgba(249, 115, 22, 0.08);
  color: var(--text-white);
}

.nav-mega-ikon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.nav-mega-baslik {
  font-weight: 600;
  font-size: 0.9rem;
}

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

/* Kullan�c� Men�s� */
.kullanici-menu {
  position: relative;
}

.kullanici-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-white);
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.kullanici-btn:hover {
  border-color: var(--border-light);
}

.kullanici-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
}

.kullanici-adi {
  font-weight: 600;
}

.chevron {
  opacity: 0.5;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  overflow: hidden;
  z-index: 200;
}

.dropdown-menu.aktif {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-puan {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.85rem;
}

.dropdown-seviye {
  font-size: 0.78rem;
  font-weight: 600;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  color: var(--text-gray);
  font-size: 0.85rem;
  transition: all 0.15s;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

.dropdown-divider {
  border: none;
  border-top: 1px solid var(--border-color);
}

.dropdown-cikis:hover {
  background: var(--red-bg);
  color: var(--red);
}

/* Mobil Men� */
.mobil-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobil-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text-gray);
  border-radius: 2px;
  transition: all 0.2s;
}

.mobil-menu-btn.aktif span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobil-menu-btn.aktif span:nth-child(2) {
  opacity: 0;
}

.mobil-menu-btn.aktif span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-gray);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  border-color: var(--border-light);
  color: var(--text-white);
}

.btn-success {
  background: var(--green);
  color: #fff;
}

.btn-success:hover {
  filter: brightness(1.1);
  color: #fff;
}

.btn-danger {
  background: var(--red);
  color: #fff;
}

.btn-danger:hover {
  filter: brightness(1.1);
  color: #fff;
}

.btn-sm {
  padding: 5px 12px;
  font-size: 0.78rem;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 0.92rem;
}

.btn-block {
  width: 100%;
}

/* ========== ANA ��ER�K ========== */
.ana-icerik {
  margin-top: var(--nav-height);
  flex: 1;
  padding: 24px 0 40px;
}

/* ========== HERO ========== */
.hero {
  text-align: center;
  padding: 48px 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(249, 115, 22, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-white);
  line-height: 1.25;
}

.hero p {
  font-size: 1rem;
  color: var(--text-gray);
  max-width: 500px;
  margin: 0 auto 20px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ========== B�L�M BA�LIKLARI ========== */
.bolum-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.bolum-baslik h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== KARTLAR ========== */
.kart-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}

.kart {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.kart:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.kart-gorsel {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--bg-dark);
}

.kart-icerik {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kart-kategori {
  display: inline-block;
  padding: 2px 10px;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 8px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.kart-baslik {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
  line-height: 1.4;
}

.kart-baslik a {
  color: inherit;
}

.kart-baslik a:hover {
  color: var(--orange);
}

.kart-ozet {
  color: var(--text-gray);
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
}

.kart-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 0.78rem;
  color: var(--text-dark);
}

.kart-yazar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* ========== FORUM L�STES� ========== */
.forum-liste {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 36px;
}

.forum-header {
  display: grid;
  grid-template-columns: 44px 1fr 100px 100px 180px;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.forum-item {
  display: grid;
  grid-template-columns: 44px 1fr 100px 100px 180px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}

.forum-item:last-child {
  border-bottom: none;
}

.forum-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.forum-ikon {
  font-size: 1.4rem;
  text-align: center;
}

.forum-bilgi h3 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.forum-bilgi h3 a {
  color: var(--text-white);
}

.forum-bilgi h3 a:hover {
  color: var(--orange);
}

.forum-bilgi p {
  font-size: 0.8rem;
  color: var(--text-dark);
}

.forum-istatistik {
  text-align: center;
}

.forum-istatistik .sayi {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.forum-istatistik .etiket {
  font-size: 0.68rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.forum-son-mesaj {
  font-size: 0.82rem;
}

.forum-son-mesaj a {
  color: var(--text-white);
  font-weight: 500;
}

.forum-son-mesaj .tarih {
  color: var(--text-dark);
  font-size: 0.78rem;
}

/* ========== KONU L�STES� ========== */
.konu-liste {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.konu-header-row {
  display: grid;
  grid-template-columns: 1fr 72px 72px 130px;
  gap: 12px;
  padding: 10px 16px;
  background: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.konu-item {
  display: grid;
  grid-template-columns: 1fr 72px 72px 130px;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s;
}

.konu-item:last-child {
  border-bottom: none;
}

.konu-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.konu-baslik-col h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.konu-baslik-col h3 a {
  color: var(--text-white);
}

.konu-baslik-col h3 a:hover {
  color: var(--orange);
}

.konu-etiketler {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.etiket {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 600;
}

.etiket-cozuldu {
  background: var(--green-bg);
  color: var(--green);
}

.etiket-sabit {
  background: var(--blue-bg);
  color: var(--blue);
}

.etiket-kilitli {
  background: var(--red-bg);
  color: var(--red);
}

.konu-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-dark);
  margin-top: 4px;
}

.konu-sayi {
  text-align: center;
}

.konu-sayi .sayi {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.konu-sayi .etiket {
  font-size: 0.66rem;
  color: var(--text-dark);
  background: none;
  padding: 0;
}

/* ========== KONU DETAY ========== */
.konu-detay-baslik {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.konu-detay-baslik h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.konu-detay-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-dark);
  flex-wrap: wrap;
}

.konu-detay-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ========== YANITLAR ========== */
.yanit-listesi {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.yanit {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  display: flex;
  overflow: hidden;
}

.yanit.yanit-op {
  border-left: 3px solid var(--orange);
}

.yanit.yanit-cozum {
  border-left: 3px solid var(--green);
}

.yanit-sol {
  width: 170px;
  padding: 16px;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  border-right: 1px solid var(--border-color);
  flex-shrink: 0;
}

.yanit-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.yanit-kullanici-adi {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-white);
}

.yanit-seviye {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 600;
}

.yanit-puan {
  font-size: 0.76rem;
  color: var(--text-dark);
}

.yanit-sag {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yanit-ust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.78rem;
  color: var(--text-dark);
}

.yanit-icerik {
  padding: 16px;
  line-height: 1.7;
  flex: 1;
  font-size: 0.92rem;
  color: var(--text-light);
}

.yanit-icerik p {
  margin-bottom: 10px;
}

.yanit-icerik p:last-child {
  margin-bottom: 0;
}

.cozum-rozet {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.yanit-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
}

.yanit-form h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--text-white);
}

/* ========== FORMLAR ========== */
.form-grubu {
  margin-bottom: 16px;
}

.form-grubu label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.85rem;
  color: var(--text-white);
}

.form-grubu input,
.form-grubu textarea,
.form-grubu select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.form-grubu input:focus,
.form-grubu textarea:focus,
.form-grubu select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-bg);
}

.form-grubu input::placeholder,
.form-grubu textarea::placeholder {
  color: var(--text-dark);
}

.form-grubu textarea {
  min-height: 110px;
  resize: vertical;
}

.form-grubu select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-hata {
  color: var(--red);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* ========== AUTH SAYFALARI ========== */
.auth-sayfa {
  max-width: 420px;
  margin: 36px auto;
}

.auth-kart {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.auth-kart h1 {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
  color: var(--text-white);
}

.auth-kart .alt-baslik {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.auth-link {
  text-align: center;
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-dark);
}

/* ========== B�LD�R�MLER ========== */
.bildirim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 600;
  animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 25px;
  z-index: 10;
  width: 100%;
  border: 1px solid transparent;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bildirim-basari {
  background: var(--green-bg);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
}

.bildirim-hata {
  background: var(--red-bg);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--red);
}

.bildirim-uyari {
  background: var(--yellow-bg);
  border: 1px solid rgba(234, 179, 8, 0.2);
  color: var(--yellow);
}

.bildirim-bilgi {
  background: var(--blue-bg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue);
}

.bildirim-kapat {
  background: none;
  border: none;
  color: inherit;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 2px;
  opacity: 0.6;
}

.bildirim-kapat:hover {
  opacity: 1;
}

/* ========== PROF�L ========== */
.profil-header {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 24px;
}

.profil-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.profil-bilgi h1 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-white);
}

.profil-seviye {
  display: inline-flex;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.profil-istatistikler {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}

.profil-istatistikler .stat {
  text-align: center;
}

.profil-istatistikler .stat-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
}

.profil-istatistikler .stat-label {
  font-size: 0.7rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========== SAYFALAMA ========== */
.sayfalama {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 24px 0;
}

.sayfa-btn {
  padding: 7px 13px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-gray);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.15s;
}

.sayfa-btn:hover {
  border-color: var(--border-light);
  color: var(--text-white);
}

.sayfa-btn.aktif {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.sayfa-dots {
  padding: 7px 3px;
  color: var(--text-dark);
}

/* ========== ��ER�K D�ZEN� + YAN PANEL ========== */
.icerik-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
}

/* .yan-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
} */

.yan-kart {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.yan-kart-baslik {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.yan-kart-icerik {
  padding: 8px;
}

.lider-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.lider-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.lider-sira {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
}

.lider-sira.altin {
  background: rgba(234, 179, 8, 0.12);
  color: var(--yellow);
}

.lider-sira.gumus {
  background: rgba(156, 163, 175, 0.12);
  color: var(--text-gray);
}

.lider-sira.bronz {
  background: rgba(180, 83, 9, 0.12);
  color: #d97706;
}

.lider-bilgi {
  flex: 1;
  min-width: 0;
}

.lider-bilgi a {
  font-weight: 600;
  color: var(--text-white);
  font-size: 0.85rem;
}

.lider-bilgi a:hover {
  color: var(--orange);
}

.lider-puan {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  flex-shrink: 0;
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: var(--text-dark);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-gray);
}

.breadcrumb a:hover {
  color: var(--orange);
}

/* ========== BO� DURUM ========== */
.bos-durum {
  text-align: center;
  padding: 48px 20px;
}

.bos-durum .ikon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  opacity: 0.5;
}

.bos-durum h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--text-gray);
}

.bos-durum p {
  color: var(--text-dark);
  font-size: 0.88rem;
}

/* ========== TABLAR ========== */
.tab-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 3px;
  width: fit-content;
}

@media (max-width: 768px) {
  .tab-group {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px;
    padding: 6px;
    box-sizing: border-box;
  }

  .tab-btn {
    padding: 8px 4px;
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
}

.tab-btn {
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}

.tab-btn:hover {
  color: var(--text-white);
}

.tab-btn.aktif {
  background: var(--orange);
  color: #fff;
}

/* ========== ADMIN PANELI (YENİ SİDEBAR) ========== */
.admin-layout .sayfa-layout,
.admin-layout .ana-icerik {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.admin-layout .container-fluid {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
.admin-layout {
  margin-left: 260px;
  padding: 24px;
  min-height: 100vh;
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-sidebar {
  /* Temel stiller sidebar.php içinde tanımlı */
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 1000;
}

.admin-sidebar-baslik {
  padding: 0 16px 12px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-white);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 6px;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.15s;
}

.admin-nav-link:hover,
.admin-nav-link.aktif {
  background: var(--orange-bg);
  color: var(--orange);
}

.admin-icerik {
  flex: 1;
  min-width: 0;
}

.admin-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.admin-baslik h1 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

.istatistik-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.istatistik-kart {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s;
}

.istatistik-kart:hover {
  border-color: var(--border-light);
}

.istatistik-kart .ikon {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.istatistik-kart .sayi {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text-white);
}

.istatistik-kart .etiket {
  font-size: 0.8rem;
  color: var(--text-dark);
  margin-top: 2px;
}

.admin-tablo {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-tablo th {
  padding: 12px 14px;
  background: var(--bg-dark);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.admin-tablo td {
  padding: 12px 14px;
  border-top: 1px solid var(--border-color);
  font-size: 0.87rem;
}

.admin-tablo tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

.admin-tablo .aksiyonlar {
  display: flex;
  gap: 6px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 40px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.footer-logo:hover {
  color: var(--text-white);
}

.footer-desc {
  color: var(--text-dark);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-white);
}

.footer-col a {
  display: block;
  color: var(--text-dark);
  font-size: 0.85rem;
  padding: 3px 0;
  transition: color 0.15s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-alt {
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* ========== HABER DETAY ========== */
.haber-detay {
  max-width: 760px;
}

.haber-detay-gorsel {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
  background: var(--bg-dark);
}

.haber-detay h1 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--text-white);
}

.haber-detay-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-dark);
  flex-wrap: wrap;
}

.haber-detay-icerik {
  line-height: 1.8;
  font-size: 1rem;
  color: var(--text-light);
}

.haber-detay-icerik p {
  margin-bottom: 14px;
}

/* ========== Y�KLEME ========== */
.yukle-animasyon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.5s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.karakter-sayac {
  display: block;
  text-align: right;
  font-size: 0.72rem;
  color: var(--text-dark);
  margin-top: 4px;
}

/* ========== YARDIMCI SINIFLAR ========== */
.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-dark);
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-10 {
  gap: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .icerik-layout {
    grid-template-columns: 1fr;
  }

  .forum-item {
    grid-template-columns: 40px 1fr;
  }

  .forum-header {
    display: none;
  }

  .forum-istatistik,
  .forum-son-mesaj {
    display: none;
  }

  .konu-item {
    grid-template-columns: 1fr;
  }

  .konu-header-row {
    display: none;
  }

  .konu-sayi {
    display: none;
  }

  .admin-layout {
    margin-left: 0;
    padding-top: 68px;
  }

  .istatistik-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    z-index: 50000 !important;
  }

  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #0d1117 !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    padding: 80px 0 40px !important;
    gap: 0 !important;
    display: none !important;
    z-index: 40000 !important;
    overflow-y: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(-20px) !important;
    transition: all 0.3s ease !important;
  }

  .nav-links.aktif {
    display: flex !important;
    transform: translateY(0) !important;
  }

  .nav-link {
    padding: 16px 24px !important;
    width: 100% !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 0 !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: var(--text-white) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  .nav-link::before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-gray);
    border-bottom: 2px solid var(--text-gray);
    transform: rotate(-45deg);
    flex-shrink: 0;
    transition: transform 0.2s;
  }

  .nav-link:hover,
  .nav-link:active {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--orange) !important;
  }

  .nav-link:hover::before {
    border-color: var(--orange);
  }

  /* Dropdown/Mega �zel Durum */
  .nav-dropdown-toggle::after {
    display: none !important;
    /* Mevcut chevronu gizle, ::before kullan�yoruz */
  }

  .nav-dropdown,
  .nav-mega {
    width: 100%;
  }

  .nav-dropdown-menu,
  .nav-mega-menu {
    position: static !important;
    display: none !important;
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  /* Mobil Accordion A��k Hali */
  .nav-dropdown.acik > .nav-dropdown-menu,
  .nav-mega.acik > .nav-mega-menu {
    display: block !important;
  }

  .nav-dropdown.acik > .nav-link::before,
  .nav-mega.acik > .nav-link::before {
    transform: rotate(45deg);
    border-color: var(--green);
    /* G�rseldeki gibi aktif b�l�m rengi */
  }

  .nav-dropdown.acik > .nav-link {
    color: var(--green) !important;
  }

  .nav-dropdown-item,
  .nav-mega-item {
    padding: 14px 24px 14px 48px !important;
    font-size: 0.88rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    color: var(--text-gray) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .nav-dropdown-item::before,
  .nav-mega-item::before {
    content: "";
    width: 6px;
    height: 6px;
    border-right: 1.5px solid var(--text-dark);
    border-bottom: 1.5px solid var(--text-dark);
    transform: rotate(-45deg);
  }

  .mobil-menu-btn {
    display: flex !important;
    z-index: 60000 !important;
    position: relative !important;
  }

  /* Kapatma butonu beyaz olsun */
  .mobil-menu-btn span {
    background: #fff !important;
  }

  .kullanici-adi {
    display: none;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat-num {
    font-size: 1.2rem;
  }

  .kart-grid {
    grid-template-columns: 1fr;
  }

  .profil-header {
    flex-direction: column;
    text-align: center;
  }

  .profil-istatistikler {
    justify-content: center;
  }

  .yanit {
    flex-direction: column;
  }

  .yanit-sol {
    width: 100%;
    flex-direction: row;
    padding: 10px 14px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    justify-content: flex-start;
    gap: 10px;
  }

  .yanit-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .auth-kart {
    padding: 24px;
  }

  .haber-detay h1 {
    font-size: 1.25rem;
  }

  .haber-detay-gorsel {
    height: 200px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .istatistik-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Mobil Dropdown & Mega Men� �yile�tirme */
  .nav-dropdown-menu,
  .nav-mega-menu {
    position: static;
    width: 100%;
    max-width: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.02);
    display: none;
    /* JS ile a��lacak veya CSS ile basitle�tirilecek */
    padding: 0 10px;
    margin-top: 5px;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-mega:hover .nav-mega-menu {
    display: block;
  }

  .nav-mega-grid {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .nav-dropdown-item,
  .nav-mega-item {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobil-menu-btn span {
    background: #fff;
    width: 24px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 12px;
  }

  .hero {
    padding: 32px 16px;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

  .bolum-baslik h2 {
    font-size: 1rem;
  }
}

/* ========== PROF�L AYARLARI ========== */
.ayarlar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.ayar-kart {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
}

.ayar-kart h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.ayar-genis {
  grid-column: 1 / -1;
}

.avatar-onizleme {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.avatar-buyuk {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-color);
}

.avatar-buyuk.avatar-harf {
  background: linear-gradient(135deg, var(--orange), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* ========== GARAJ ========== */
.garaj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.garaj-kart {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}

.garaj-kart:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.garaj-foto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.garaj-bilgi {
  padding: 16px;
}

.garaj-bilgi h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.garaj-yil {
  display: inline-block;
  padding: 2px 10px;
  background: var(--orange-bg);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 6px;
}

.garaj-aciklama {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.garaj-aksiyonlar {
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
  .ayarlar-grid {
    grid-template-columns: 1fr;
  }

  .garaj-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== MARKA SAYFASI ===== */
.marka-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.marka-kart {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--text-white);
}

.marka-kart:hover {
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.marka-kart-logo {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.marka-kart-bilgi {
  flex: 1;
  min-width: 0;
}

.marka-kart-bilgi h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.marka-kart-bilgi span {
  font-size: 0.78rem;
  color: var(--text-dark);
}

.marka-kart-ok {
  color: var(--text-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.marka-kart:hover .marka-kart-ok {
  color: var(--orange);
  transform: translateX(3px);
}

/* Marka Ba�l�k Alan� */
.marka-baslik-alan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.marka-baslik-sol {
  display: flex;
  align-items: center;
  gap: 16px;
}

.marka-baslik-logo {
  font-size: 2.5rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
  border-radius: var(--radius);
}

.marka-baslik-alan h1 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 2px;
}

@media (max-width: 768px) {
  .marka-grid {
    grid-template-columns: 1fr;
  }

  .marka-baslik-alan {
    flex-direction: column;
    text-align: center;
  }

  .marka-baslik-sol {
    flex-direction: column;
  }
}

/* ===== ARAMA SAYFASI ===== */
.arama-sonuclar {
  display: grid;
  gap: 12px;
}

.arama-sonuc-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.arama-sonuc-item:hover {
  border-color: var(--orange);
}

.arama-sonuc-tip {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.arama-sonuc-icerik {
  flex: 1;
  min-width: 0;
}

.arama-sonuc-icerik h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.arama-sonuc-icerik h3 a {
  color: var(--text-white);
}

.arama-sonuc-icerik h3 a:hover {
  color: var(--orange);
}

.arama-sonuc-icerik p {
  color: var(--text-dark);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.arama-sonuc-meta {
  display: flex;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-dark);
}

/* ===== SSS ===== */
.sss-liste {
  display: grid;
  gap: 10px;
}

.sss-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
}

.sss-soru {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-white);
  list-style: none;
}

.sss-soru::-webkit-details-marker {
  display: none;
}

.sss-soru:hover {
  color: var(--orange);
}

.sss-ok {
  transition: transform 0.2s;
  color: var(--text-dark);
  flex-shrink: 0;
}

.sss-item[open] .sss-ok {
  transform: rotate(180deg);
  color: var(--orange);
}

.sss-cevap {
  padding: 0 20px 16px;
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

/* ===== AKT�V�TE ===== */
.aktivite-liste {
  display: grid;
  gap: 8px;
}

.aktivite-item {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.aktivite-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-bg);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.aktivite-icerik {
  flex: 1;
}

.aktivite-icerik p {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

/* ===== YORUM AKI�I ===== */
.yorum-akis-liste {
  display: grid;
  gap: 12px;
}

.yorum-akis-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.yorum-akis-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-dark);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.yorum-akis-icerik {
  flex: 1;
}

.yorum-akis-baslik {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.yorum-akis-kullanici {
  font-weight: 700;
  color: var(--text-white);
}

/* ===== B�LD�R�MLER ===== */
.bildirim-liste {
  display: grid;
  gap: 6px;
}

.bildirim-item {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-white);
  transition: all 0.2s;
}

.bildirim-item:hover {
  border-color: var(--orange);
}

.bildirim-yeni {
  background: rgba(249, 115, 22, 0.04);
  border-color: var(--orange);
}

.bildirim-ikon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.bildirim-icerik {
  flex: 1;
  font-size: 0.9rem;
}

.bildirim-nokta {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ===== BA�ARIMLAR ===== */
.basarim-kart {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.basarim-kart.basarim-kazanildi {
  background: rgba(249, 115, 22, 0.03);
}

.basarim-ikon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ===== �STAT�ST�K KART ===== */
.istat-kart {
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  text-align: center;
}

.istat-deger {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

.istat-etiket {
  font-size: 0.78rem;
  color: var(--text-dark);
  margin-top: 4px;
}

/* ===== POP�LER MARKA ===== */
.populer-marka-kart {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--text-white);
}

.populer-marka-kart:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.populer-marka-sira {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  width: 30px;
}

/* ===== YARDIM KART ===== */
.yardim-kart {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
  display: block;
  color: var(--text-white);
  text-align: center;
}

.yardim-kart:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.mb-30 {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .istat-kart {
    padding: 12px;
  }

  .istat-deger {
    font-size: 1.1rem;
  }
}

/* ========== GARAJ ========== */
.garaj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.garaj-kart {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}

.garaj-kart:hover {
  border-color: var(--border-light);
}

.garaj-foto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.garaj-bilgi {
  padding: 16px;
}

.garaj-bilgi h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.garaj-yil {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  background: rgba(249, 115, 22, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}

.garaj-aciklama {
  font-size: 0.82rem;
  color: var(--text-gray);
  margin: 6px 0;
}

.garaj-aksiyonlar {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

/* Garaj Toggle */
.garaj-toggle-baslik {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 4px 0;
  user-select: none;
}

.garaj-toggle-baslik:hover h3 {
  color: var(--orange);
}

.garaj-toggle-ikon {
  font-size: 0.8rem;
  color: var(--text-dark);
  transition: transform 0.3s ease;
  display: inline-block;
}

.garaj-toggle-ikon.acik {
  transform: rotate(180deg);
}

.garaj-toggle-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.garaj-toggle-btn:hover {
  background: var(--orange-hover);
  transform: scale(1.1);
}

.garaj-toggle-btn.acik {
  transform: rotate(45deg);
  background: var(--red);
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.garaj-toggle-icerik {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.garaj-toggle-icerik.acik {
  max-height: 600px;
  opacity: 1;
}

/* Garaj D�zenleme Modu */
.garaj-duzenle .form-grubu {
  margin-bottom: 10px;
}

.garaj-duzenle .form-grubu label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
  display: block;
}

.garaj-duzenle .form-grubu input {
  font-size: 0.82rem;
  padding: 7px 10px;
}

@media (max-width: 768px) {
  .garaj-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  color: var(--text-dark);
  padding: 64px 0 36px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-marka {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 340px;
}

.footer-sosyal {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.sosyal-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: all 0.2s;
}

.sosyal-link:hover {
  color: var(--text-white);
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-ozel-link {
  color: var(--green) !important;
  font-weight: 700 !important;
}

.footer-ozel-link:hover {
  color: var(--orange) !important;
}

.footer-alt {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-alt-linkler {
  display: flex;
  gap: 24px;
}

.footer-alt-linkler a {
  color: var(--text-dark);
  transition: color 0.2s;
}

.footer-alt-linkler a:hover {
  color: var(--text-gray);
}

/* ========== RESPONSIVE - HEADER & FOOTER ========== */
@media (max-width: 1024px) {
  .navbar-sol {
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-arama {
    display: none;
  }

  .kullanici-info-mini {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-alt {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-alt-linkler {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-separator {
    display: none;
  }
}

/* Son Dakika Etiketi */
.etiket-son-dakika {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #f97316;
  /* Orange */
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.6rem;
  z-index: 5;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
  text-transform: uppercase;
}

.kart {
  position: relative;
}

/* ===============================
   �LET���M SAYFASI
================================ */
/* Ana Grid */
.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}

/* Tablet ve �zeri */
@media (min-width: 768px) {
  .iletisim-grid {
    grid-template-columns: 1fr 1.6fr;
    /* Sol bilgi dar, sa� form geni� */
    align-items: start;
  }
}

/* B�y�k Ekran */
@media (min-width: 1200px) {
  .iletisim-grid {
    grid-template-columns: 1fr 2fr;
  }
}

/* ===============================
   FORM RESPONSIVE
================================ */
.iletisim-grid form > div:first-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Ad + Email yan yana */
@media (min-width: 576px) {
  .iletisim-grid form > div:first-child {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobilde input padding ayar� */
@media (max-width: 480px) {
  .auth-kart {
    padding: 18px;
  }

  .iletisim-grid input,
  .iletisim-grid textarea {
    font-size: 0.9rem;
  }
}

/* ===============================
   HABERLER SAYFASI - F�LTRELEME
================================ */
.tab-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 30px;
  width: 100%;
  padding: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 6px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-gray);
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab-btn:hover,
.tab-btn.aktif {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* B�y�k ekranlarda (Desktop) daha geni� layout'a ge� */
@media (min-width: 661px) {
  .tab-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    width: auto;
  }
}

@media (max-width: 480px) {
  .tab-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .tab-btn {
    padding: 8px 4px;
    font-size: 0.72rem;
  }
}

/* Custom Image Styling */
.yanit-resim img {
  width: 25% !important;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* About Us Grid Styling */
.hakkimizda-istat-grid,
.hakkimizda-misyon-grid,
.ozellikler-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.hakkimizda-istat-grid {
  grid-template-columns: repeat(3, 1fr);
}

.hakkimizda-misyon-grid {
  grid-template-columns: 1fr 1fr;
}

.ozellikler-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .yanit-resim img {
    width: 100% !important;
  }

  .hakkimizda-istat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hakkimizda-misyon-grid {
    grid-template-columns: 1fr;
  }

  .ozellikler-grid {
    grid-template-columns: repeat(2, 1fr);
    /* User explicitly asked for 2 per row */
  }
}

@media (max-width: 480px) {
  .hakkimizda-istat-grid {
    grid-template-columns: 1fr;
  }
}

/* Password Toggle Styling */
.form-grubu {
  position: relative;
  display: flex;
  flex-direction: column;
}

.sifre-toggle {
  position: absolute;
  right: 5px;
  bottom: 0px;
  height: 40px;
  /* Aligns with input height ~38-40px */
  background: none;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.2s;
  border-radius: var(--radius-sm);
}

.sifre-toggle:hover {
  color: var(--orange);
  background: rgba(249, 115, 22, 0.05);
}

.sifre-toggle svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

@media (max-width: 768px) {
  .sifre-toggle {
    height: 38px;
    right: 4px;
  }
}

/* Google Login Styles */
.auth-ayirici {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: var(--text-dark);
}

.auth-ayirici::before,
.auth-ayirici::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid var(--border-color);
}

.auth-ayirici span {
  padding: 0 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-google {
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
  background: #f8f8f8;
  color: #222;
  border-color: #ccc;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.btn-google svg {
  width: 18px;
  height: 18px;
}

.btn-apple {
  background: #000;
  color: #fff;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-apple:hover {
  background: #222;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.btn-apple svg {
  width: 18px;
  height: 18px;
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
  border: none;
  box-shadow: 0 2px 4px rgba(24, 119, 242, 0.2);
}

.btn-facebook:hover {
  background: #166fe5;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(24, 119, 242, 0.25);
}

.btn-facebook svg {
  width: 18px;
  height: 18px;
}

/* REKLAM YERLESIMLERI (KESIN) */
.ozel-reklam-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.reklam-etiket {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: #fff;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
  white-space: nowrap;
}

.sabit-reklam {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 600px;
  z-index: 100;
  display: none;
}

.reklam-sol {
  left: 10px;
}

.reklam-sag {
  right: 10px;
}

.sabit-reklam img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Reklam (Görseldeki 1. Kutu) - Yatay 600x160 */
.hero-reklam {
  max-width: 600px;
  margin: 0 auto 20px;
  display: block;
}

.hero-reklam img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Haber Akışı Altı Reklam (Görseldeki 4. Kutu) - Yatay 600x160 */
.akis-alti-reklam {
  margin: 30px auto 50px;
  text-align: center;
  max-width: 600px;
  display: block;
}

.akis-alti-reklam img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1550px) {
  .sabit-reklam {
    display: block;
  }
}

/* CKEditor Tables - Enhanced Visibility */
.haber-detay-icerik table,
.yanit-icerik table,
.admin-icerik table,
.editor-content table,
.sayfa-icerik table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin: 20px 0 !important;
  background: var(--bg-card);
  border: 1px solid var(--border-light) !important;
  overflow: hidden;
}

.haber-detay-icerik table td,
.haber-detay-icerik table th,
.yanit-icerik table td,
.yanit-icerik table th,
.admin-icerik table td,
.admin-icerik table th,
.editor-content table td,
.editor-content table th,
.sayfa-icerik table td,
.sayfa-icerik table th {
  padding: 12px !important;
  border: 1px solid var(--border-light) !important;
  text-align: left;
  min-width: 50px;
}

.haber-detay-icerik table th,
.yanit-icerik table th,
.admin-icerik table th,
.editor-content table th,
.sayfa-icerik table th {
  background: rgba(255, 255, 255, 0.1) !important;
  font-weight: 700;
}

/* Light Theme Overrides (More prominent borders) */
.tema-acik .haber-detay-icerik table,
.tema-acik .yanit-icerik table,
.tema-acik .admin-icerik table,
.tema-acik .editor-content table,
.tema-acik .sayfa-icerik table {
  background: #fff;
  border-color: #abb3bf !important; /* Darker than before */
}

.tema-acik .haber-detay-icerik table td,
.tema-acik .haber-detay-icerik table th,
.tema-acik .yanit-icerik table td,
.tema-acik .yanit-icerik table th,
.tema-acik .admin-icerik table td,
.tema-acik .admin-icerik table th,
.tema-acik .editor-content table td,
.tema-acik .editor-content table th,
.tema-acik .sayfa-icerik table td,
.tema-acik .sayfa-icerik table th {
  border-color: #abb3bf !important; /* Darker gray for better visibility */
}

.tema-acik .haber-detay-icerik table th,
.tema-acik .yanit-icerik table th,
.tema-acik .admin-icerik table th,
.tema-acik .editor-content table th,
.tema-acik .sayfa-icerik table th {
  background: rgba(0, 0, 0, 0.05) !important;
}

/* Base table support if no class is present or for other areas */
.haber-detay-icerik table[border="1"],
.haber-detay-icerik table.table-bordered,
table[border="1"],
table.table-bordered {
  border-collapse: collapse !important;
  width: 100% !important;
  border: 1px solid var(--border-light) !important;
}
.haber-detay-icerik table[border="1"] td,
.haber-detay-icerik table[border="1"] th,
table[border="1"] td,
table[border="1"] th {
  border: 1px solid var(--border-light) !important;
  padding: 8px !important;
}
