:root {
  --bg: #f9f7f5;
  --card: #ffffff;
  --text: #2c3e50;
  --text-light: #6b7a8f;
  --border: #f0e9e2;
  --primary: #ffb347;
  --primary-dark: #f39c12;
  --primary-light: #ffe5c4;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.05);
  --shadow-lg: 0 16px 32px rgba(0,0,0,0.08);
  --radius: 28px;
  --radius-sm: 16px;
  --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  --mbnav-h: 70px;
}

[data-theme="dark"] {
  --bg: #1a1e2b;
  --card: #252b3a;
  --text: #f0f4fa;
  --text-light: #b0b8c5;
  --border: #3a4050;
  --primary: #ffb347;
  --primary-dark: #f39c12;
  --primary-light: #4a3f2c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: var(--transition);
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  body {
    font-size: 0.8rem;
    padding-bottom: calc(var(--mbnav-h) + env(safe-area-inset-bottom) + 20px);
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

@media (max-width: 767px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.2rem; }
}

main {
  animation: fadeIn 0.6s ease-out;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  padding: 1.2rem 0 2rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

/* ======================
   COOKIE ONAY BANNER
   ====================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  padding: 0.7rem 1rem;
  z-index: 1000;
  display: none;
  animation: slideUpFade 0.5s ease;
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cookie-text p {
  font-size: 0.8rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-actions {
  flex-shrink: 0;
}

.btn-cookie {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(255,180,70,0.3);
}

.btn-cookie:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255,180,70,0.4);
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    border-radius: 30px;
    padding: 1rem;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions { width: 100%; }
  .btn-cookie { width: 100%; }
}

/* ======================
   DÖVİZ BAR
   ====================== */
.currency-bar {
  background: var(--primary-dark);
  color: white;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 150;
}

.currency-wrapper {
  display: flex;
  width: fit-content;
  animation: scrollCurrency 32s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.currency-items {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
  flex-shrink: 0;
}

.currency-item {
  white-space: nowrap;
  font-size: 0.75rem;
}

.currency-item strong {
  font-weight: 600;
  margin-right: 0.2rem;
}

@keyframes scrollCurrency {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================
   HEADER (NORMAL AKIŞ - STICKY YOK)
   ====================== */
.site-header {
  position: relative;
  z-index: 200;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  width: 100%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

[data-theme="dark"] .site-header {
  background: rgba(30,41,59,0.9);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1rem;
  min-height: 75px;
}

.nav-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Masaüstü tema butonu - sol altta sabit, arkaplanı temaya göre değişir */
.theme-btn-desktop {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: var(--transition);
}

.theme-btn-desktop:hover {
  transform: scale(1.1) rotate(15deg);
  background: var(--primary-dark);
}

[data-theme="dark"] .theme-btn-desktop {
  background: var(--primary-dark);
}

[data-theme="dark"] .theme-btn-desktop:hover {
  background: var(--primary);
}

/* Mobil tema butonu (sadece mobilde görünür, masaüstünde gizli) */
.mobile-theme-btn {
  display: none; /* varsayılan gizli */
}

@media (max-width: 767px) {
  .mobile-theme-btn {
    display: inline-flex;
  }
}

.credits-dropdown {
  position: relative;
  display: inline-block;
}

.credits-btn {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(255,180,70,0.2);
}

.credits-btn i {
  font-size: 0.95rem;
}

.credits-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,180,70,0.3);
}

.credits-btn::after {
  content: '▼';
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s;
  margin-left: 0.2rem;
}

.credits-dropdown:hover .credits-btn::after {
  transform: rotate(180deg);
}

.credits-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: none;
  z-index: 300;
  flex-direction: column;
  gap: 0.25rem;
}

.credits-dropdown:hover .credits-menu {
  display: flex;
}

.credits-menu a {
  padding: 0.6rem 1rem;
  border-radius: 30px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.credits-menu a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.haberler-link {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.haberler-link i {
  font-size: 1rem;
  color: var(--primary-dark);
}

.haberler-link:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.kredi-ai-link {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kredi-ai-link i {
  font-size: 1rem;
  color: var(--primary-dark);
}

.kredi-ai-link:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  margin: 0 1rem;
}

.brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
  display: block;
  transition: var(--transition);
}

.brand:hover img {
  transform: scale(1.05);
}

.tools-dropdown {
  position: relative;
  display: inline-block;
}

.tools-btn {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(255,180,70,0.2);
}

.tools-btn i {
  font-size: 0.95rem;
}

.tools-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,180,70,0.3);
}

.tools-btn::after {
  content: '▼';
  font-size: 0.7rem;
  opacity: 0.7;
  transition: transform 0.2s;
  margin-left: 0.2rem;
}

.tools-dropdown:hover .tools-btn::after {
  transform: rotate(180deg);
}

.tools-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: none;
  z-index: 300;
  flex-direction: column;
  gap: 0.25rem;
}

.tools-dropdown:hover .tools-menu {
  display: flex;
}

.tools-menu a {
  padding: 0.6rem 1rem;
  border-radius: 30px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.tools-menu a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.icon-btn {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.icon-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hamburger {
  display: flex;
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
}

.hamburger:hover {
  background: var(--primary);
  color: white;
}

@media (min-width: 992px) {
  .hamburger { display: none; }
}

@media (max-width: 767px) {
  .nav-left .haberler-link,
  .nav-left .kredi-ai-link,
  .nav-right .credits-btn,
  .nav-right .tools-btn,
  .nav-right .icon-btn:not(.mobile-theme-btn):not(.hamburger) {
    display: none;
  }
  .brand img {
    height: 42px;
  }
  .nav-row {
    min-height: 60px;
    padding: 0.3rem 0;
    gap: 0.5rem;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .mobile-theme-btn {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    background: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid var(--primary);
  }
  .mobile-theme-btn:hover {
    background: var(--primary);
    color: white;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 250;
}

.menu-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 360px);
  background: var(--card);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), opacity 0.3s ease;
  opacity: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.mobile-drawer.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.drawer-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-dark);
}

.drawer-body {
  padding: 1.2rem;
  overflow-y: auto;
  flex: 1;
  max-height: calc(100vh - 80px);
}

.drawer-body a {
  display: block;
  padding: 0.7rem 1rem;
  margin: 0.2rem 0;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: var(--transition);
}

.drawer-body a i {
  margin-right: 0.5rem;
  width: 1.2rem;
  text-align: center;
  color: var(--primary-dark);
  transition: transform 0.2s;
}

.drawer-body a:hover i {
  transform: scale(1.1);
}

.drawer-body a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.drawer-sep {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

.drawer-dd-toggle {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-dd-toggle .chev {
  font-size: 0.8rem;
  opacity: 0.75;
  transition: transform 0.2s;
}

.drawer-dd-toggle.open .chev {
  transform: rotate(180deg);
}

.drawer-dd {
  display: none;
  margin-top: 0.5rem;
}

.drawer-dd.show {
  display: block;
}

.drawer-dd a {
  font-weight: 600;
  padding-left: 1.5rem;
}

.drawer-social a {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
}

.drawer-social a:hover {
  color: var(--primary);
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100% !important;
  touch-action: none !important;
}

/* ======================
   HERO - Dark modda başlıklar beyaz
   ====================== */
.hero h1,
.hero h2,
.hero h3 {
  color: var(--primary-dark);
}

[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero h2,
[data-theme="dark"] .hero h3 {
  color: #ffffff;
}

.hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  word-break: break-word;
}

.hero p {
  color: var(--text-light);
  font-size: 1rem;
}

@media (max-width: 767px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 0.9rem; }
}

/* ======================
   CARD
   ====================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ======================
   DASHBOARD
   ====================== */
.dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
  }
}

.filters-panel {
  align-self: start;
}

@media (min-width: 768px) {
  .filters-panel {
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 10;
  }
}

/* ======================
   GRID-2
   ====================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.input,
select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 40px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* ======================
   BUTTONS
   ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 40px;
  font-weight: 700;
  border: none;
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
  min-height: 44px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(255,180,70,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 8px 25px rgba(255,180,70,0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.btn-small {
  padding: 0.4rem 0.8rem;
  font-size: 0.7rem;
  min-height: 36px;
}

/* ======================
   SAĞ ALT SABİT BUTON
   ====================== */
.kredi-teklif-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  gap: 0.5rem;
}

.kredi-teklif-float i {
  font-size: 1rem;
}

.kredi-teklif-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255,180,70,0.6);
}

@media (max-width: 767px) {
  .kredi-teklif-float {
    bottom: calc(var(--mbnav-h) + 20px);
    right: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

/* ======================
   TYPE GRID
   ====================== */
.type-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.8rem 0;
}

@media (max-width: 767px) {
  .type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.type-card {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: 40px;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.type-card:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.type-card.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 2px var(--primary);
}

.type-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.type-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.type-desc {
  font-size: 0.65rem;
  color: var(--text-light);
}

.type-radio {
  display: none;
}

/* ======================
   OFFER CARDS
   ====================== */
.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

@media (min-width: 640px) {
  .offer-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.offer-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-big {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  object-fit: contain;
  background: white;
  padding: 6px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
  transition: var(--transition);
}

.offer-card:hover .logo-big {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.offer-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  display: inline-flex;
  align-items: center;
}

.offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.2rem;
}

.pill {
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
}

.pill b {
  color: var(--text);
  font-weight: 800;
}

.offer-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sponsor-badge {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  font-size: 0.55rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  text-transform: lowercase;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* ======================
   EMPTY STATE
   ====================== */
.empty-state {
  background: var(--card);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* ======================
   LOADING OVERLAY
   ====================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.loading-overlay.show {
  display: flex;
}

.loading-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  width: 80%;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--primary-light);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ======================
   BLOG
   ====================== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image {
  transform: scale(1.02);
}

.blog-content {
  padding: 1.2rem;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
  overflow-wrap: anywhere;
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-light);
  font-size: 0.7rem;
}

/* ======================
   PAGINATION
   ====================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 40px;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
}

.pagination a:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.pagination .active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ======================
   BLOG DETAIL (LİSTE DÜZELTİLDİ)
   ====================== */
.blog-detail {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.blog-detail h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.blog-detail .blog-meta {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.blog-detail .blog-image-wrapper {
  margin: 0 0 1.5rem 0;
  max-width: 100%;
}

.blog-detail .blog-detail-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.blog-text-wrapper {
  line-height: 1.8;
  font-size: 0.95rem;
  color: var(--text);
}

.blog-text-wrapper p {
  margin-bottom: 1.2rem;
}

.blog-text-wrapper h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.blog-text-wrapper h3 {
  font-size: 1.3rem;
  margin: 1.2rem 0 0.8rem;
}

/* Liste düzeltmeleri - daha az sol boşluk */
.blog-text-wrapper ul,
.blog-text-wrapper ol {
  margin: 0.8rem 0 1.2rem 1.2rem !important;
  padding-left: 0.3rem !important;
}

.blog-text-wrapper li {
  margin-bottom: 0.6rem;
  list-style-position: outside;
}

.blog-text-wrapper blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-light);
  background: var(--bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.blog-text-wrapper pre {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  overflow-x: auto;
}

.blog-text-wrapper code {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
}

.blog-text-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.blog-text-wrapper th,
.blog-text-wrapper td {
  border: 1px solid var(--border);
  padding: 0.6rem;
}

.blog-text-wrapper a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.blog-text-wrapper a[target="_blank"]::after {
  content: " 🔗";
  font-size: 0.8em;
  opacity: 0.7;
}

.blog-keywords {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keyword-tag {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--primary-light);
  transition: var(--transition);
}

.keyword-tag:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.blog-share {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: var(--transition);
}

.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

@media (max-width: 600px) {
  .share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .share-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ======================
   BLOG SIDEBAR
   ====================== */
.blog-detail-wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.blog-main {
  flex: 1;
  min-width: 0;
}

.blog-sidebar {
  flex: 0 0 280px;
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.sidebar-posts-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-post-card {
  display: flex;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.8rem;
  align-items: flex-start;
}

.sidebar-post-card:last-child {
  border-bottom: none;
}

.sidebar-post-image-wrapper {
  flex: 0 0 70px;
  height: 70px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.sidebar-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--primary-light);
}

.sidebar-post-content {
  flex: 1;
  min-width: 0;
}

.sidebar-post-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
  line-height: 1.3;
}

.sidebar-post-date {
  font-size: 0.65rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.sidebar-post-excerpt {
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-detail-wrapper {
    flex-direction: column;
  }
  .blog-sidebar {
    flex: 0 0 auto;
  }
}

/* ======================
   BANNER
   ====================== */
.header-banner,
.footer-banner,
.bank-top-banner {
  padding: 1rem 0;
  margin: 1rem 0;
  text-align: center;
}

.header-banner img,
.footer-banner img,
.bank-top-banner img,
.header-banner iframe,
.footer-banner iframe,
.bank-top-banner iframe {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border-radius: var(--radius-sm);
}

.responsive-banner {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.banner-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.banner-row:last-child {
  margin-bottom: 0;
}

.banner-item {
  flex: 0 1 auto;
  max-width: 100%;
}

/* ======================
   SEO CONTENT
   ====================== */
.seo-content {
  margin-top: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.seo-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.seo-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ======================
   GÜVENLE KREDİ ÇEK - BANKA LOGOLARI
   ====================== */
.bank-logos-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  margin: 2rem 0;
}

.bank-logos-title {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.bank-logos-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.bank-logo-item {
  flex: 0 0 auto;
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
  padding: 0.5rem;
  border: 1px solid var(--border);
}

.bank-logo-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.bank-logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .bank-logos-wrapper {
    gap: 0.8rem;
  }
  .bank-logo-item {
    width: 90px;
    height: 45px;
  }
}

/* ======================
   TEKLİF FORMU
   ====================== */
.offer-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.offer-form-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
  text-align: center;
}

.offer-form-subtitle {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modern-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.modern-input,
.modern-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.modern-input:focus,
.modern-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.input-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.step-badge {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.alert {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
  font-weight: 600;
  text-align: center;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.checkbox-group input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
}

.info-hover {
  position: relative;
  cursor: help;
  margin-right: 0.3rem;
}

.info-hover:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem;
  font-size: 0.75rem;
  width: 240px;
  box-shadow: var(--shadow-md);
  z-index: 100;
  white-space: normal;
  color: var(--text);
}

.info-hover i {
  color: var(--primary);
  font-size: 0.85rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .offer-form-card {
    padding: 1.2rem;
  }
  .offer-form-title {
    font-size: 1.2rem;
  }
  .modern-form .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .btn {
    width: 100%;
  }
}

/* ======================
   ADMIN PANELİ
   ====================== */
.admin-header {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  margin-bottom: 1rem;
}

.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
}

.admin-nav a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.admin-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.admin-table th,
.admin-table td {
  padding: 0.5rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  background: var(--bg);
  font-weight: 700;
  white-space: nowrap;
}

.admin-table td {
  word-break: break-word;
}

.admin-table .actions {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .admin-table {
    font-size: 0.7rem;
  }
  .admin-table th,
  .admin-table td {
    padding: 0.3rem;
  }
}

.flash {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 600;
}

.flash-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.flash-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.flash-warning {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  font-size: 0.85rem;
}

.form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.85rem;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-light);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox input[type="checkbox"] {
  width: auto;
}

/* ======================
   FOOTER
   ====================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
  background: var(--card);
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.footer-col a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.3rem 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-disclaimer {
  flex: 2 1 400px;
  min-width: 250px;
  margin: 0;
  text-align: left;
  order: 1;
  font-size: 0.75rem;
}

.footer-logos {
  flex: 0 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  order: 2;
  margin-left: auto;
}

.footer-logos .footer-logo {
  background: white;
  padding: 4px 8px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  height: auto;
  width: auto;
  max-height: 35px;
  object-fit: contain;
}

.footer-apps {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
  order: 0;
  margin-bottom: 0.5rem;
}

.footer-apps .app-badge {
  display: inline-block;
  max-width: 100px;
  transition: var(--transition);
}

.footer-apps .app-badge img {
  width: 100%;
  height: auto;
}

.footer-apps .app-badge:hover {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .footer-disclaimer {
    flex: 1 1 60%;
    font-size: 0.65rem;
    line-height: 1.4;
    order: 1;
  }
  .footer-logos {
    flex: 0 0 auto;
    order: 2;
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
  .footer-apps {
    flex: 1 1 100%;
    order: 0;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
  }
}

/* Footer Son Yazılar - Kredi Haberleri */
.footer-latest-posts {
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-latest-posts h3 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  text-align: center;
  color: var(--primary-dark);
}

.footer-latest-posts h3 a {
  color: var(--primary-dark);
  text-decoration: none;
}

.footer-latest-posts h3 a:hover {
  text-decoration: underline;
}

.latest-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .latest-posts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .latest-posts-grid { grid-template-columns: repeat(5, 1fr); }
}

.latest-post-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
  display: block;
}

.latest-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.latest-post-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: var(--transition);
  aspect-ratio: 16/9;
}

.latest-post-card:hover .latest-post-image {
  transform: scale(1.05);
}

.latest-post-content {
  padding: 0.8rem;
}

.latest-post-title {
  font-weight: 800;
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-post-date {
  font-size: 0.65rem;
  color: var(--text-light);
}

/* ======================
   MOBİL NAVIGASYON (Aşağıda sabit) - TÜM CİHAZLAR İÇİN İYİLEŞTİRİLMİŞ
   ====================== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--card);
  border-top: 2px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding-bottom: env(safe-area-inset-bottom);
  height: calc(var(--mbnav-h) + env(safe-area-inset-bottom));
  z-index: 999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
  .mobile-bottom-nav { display: block; }
}

.mobile-bottom-nav .container {
  height: var(--mbnav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.2rem;
  padding: 0 0.2rem;
  max-width: 100%;
}

.mobile-bottom-nav .nav-left,
.mobile-bottom-nav .nav-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.1rem;
  min-width: 0;
}

.mobile-bottom-nav .nav-center {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.1rem;
}

.mobile-bottom-nav .nav-item {
  flex: 1;
  min-width: 0;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 32px;
  transition: all 0.2s ease;
  padding: 0.2rem 0.1rem;
  background: transparent;
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.3rem;
  margin-bottom: 2px;
  transition: transform 0.2s;
}

.mobile-bottom-nav .nav-item span {
  font-size: 0.55rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
  color: var(--primary-dark);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item:hover i,
.mobile-bottom-nav .nav-item.active i {
  transform: scale(1.1);
}

.mobile-bottom-nav .ai-icon {
  width: 64px;
  height: 64px;
  margin-top: -10px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-weight: 800;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 0 8px 20px rgba(255,180,70,0.5);
  transition: all 0.3s cubic-bezier(0.2,0.8,0.2,1);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.mobile-bottom-nav .ai-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-bottom-nav .ai-icon:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 28px rgba(255,180,70,0.7);
}

.mobile-bottom-nav .ai-icon:hover::before {
  opacity: 1;
}

.mobile-bottom-nav .ai-icon svg {
  width: 38px;
  height: 38px;
  display: block;
  margin-bottom: 2px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.mobile-bottom-nav .ai-icon span {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* AI robot göz animasyonu */
.eye {
  transform-origin: center;
  animation: blink 4.2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

.eye.eye2 {
  animation-delay: 0.18s;
}

@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  94% { transform: scaleY(0.1); }
  96% { transform: scaleY(1); }
}

/* ======================
   UTILITY
   ====================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}