/* ============================================
   main.css — FinansPortal Public Site
   Mobile-first | Dark/Light Mode
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:        #f0f2f7;
  --bg2:       #ffffff;
  --bg3:       #e8eaf2;
  --text:      #0f1724;
  --text2:     #4a5568;
  --text3:     #8a96a8;
  --border:    #e2e6ef;
  --accent:    #1a56db;
  --accent2:   #1340b0;
  --green:     #0d9e5c;
  --green-bg:  #e6f9f0;
  --red:       #e0302a;
  --red-bg:    #fdecea;
  --gold:      #d4a017;
  --shadow:    0 2px 12px rgba(0,0,0,.07);
  --shadow2:   0 4px 24px rgba(0,0,0,.10);
  --radius:    14px;
  --radius-sm: 8px;
  --ticker-bg: #0f1724;
  --ticker-fg: #ffffff;
  --sb-w:      300px;
}
[data-tema="dark"] {
  --bg:        #0a0e1a;
  --bg2:       #131929;
  --bg3:       #1a2035;
  --text:      #e8edf5;
  --text2:     #9aa5bb;
  --text3:     #5a6478;
  --border:    #1e2a40;
  --accent:    #3b82f6;
  --accent2:   #2563eb;
  --green:     #10b981;
  --green-bg:  #052e1c;
  --red:       #f87171;
  --red-bg:    #2d1515;
  --gold:      #f5c842;
  --shadow:    0 2px 12px rgba(0,0,0,.3);
  --shadow2:   0 4px 24px rgba(0,0,0,.4);
  --ticker-bg: #060912;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  transition: background .3s, color .3s;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--ticker-bg);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 110;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ticker-track {
  display: flex;
  animation: ticker 60s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  font-size: 12px;
  color: var(--ticker-fg);
  border-right: 1px solid rgba(255,255,255,.07);
  cursor: default;
}
.t-flag  { font-size: 14px; }
.t-isim  { opacity: .6; font-size: 11px; }
.t-fiyat { font-family: 'JetBrains Mono', monospace; font-weight: 500; }
.t-degisim { font-size: 11px; font-family: 'JetBrains Mono', monospace; }
.t-degisim.up   { color: #34d399; }
.t-degisim.down { color: #f87171; }

/* ── HEADER ── */
header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 38px;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; color: #fff;
}
.logo-text { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: -.3px; }
nav#mainNav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  font-size: 17px;
  font-weight: 700;
  color: var(--text2);
  transition: all .18s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.aktif {
  background: var(--bg3);
  color: var(--accent);
}
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-tema {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.btn-tema:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.mobile-menu-btn {
  display: none;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  align-items: center; justify-content: center;
}

/* Mobil nav açık hali */
nav#mainNav.acik {
  position: absolute;
  top: 96px;
  left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 12px 12px;
  gap: 2px;
  z-index: 99;
  box-shadow: var(--shadow2);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0f1724 0%, #1a2a5e 60%, #0d1b3e 100%);
  padding: 48px 16px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(59,130,246,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero-badge::before { content: '●'; font-size: 8px; color: #34d399; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.hero h1 {
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
  position: relative;
}
.hero h1 span { color: #f5c842; }
.hero p {
  color: rgba(255,255,255,.6);
  font-size: clamp(13px, 2vw, 16px);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
  position: relative;
}
.hero-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── BUTONLAR ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  font-family: 'Sora', sans-serif;
}
.btn-primary  { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(59,130,246,.4); }
.btn-outline  { background: rgba(255,255,255,.09); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-outline:hover { background: rgba(255,255,255,.16); }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ── POPÜLER KARTLAR ── */
.populer-section {
  max-width: 1200px;
  margin: -28px auto 0;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}
.populer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 12px;
}
.populer-kart {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow2);
  cursor: pointer;
  transition: all .22s;
  display: block;
}
.populer-kart:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,0,0,.12); border-color: var(--accent); }
.pk-top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pk-flag { font-size: 22px; }
.pk-kod  {font-size: 13px;font-weight: 700;color: #4ea910;}
.pk-isim { font-size: 11px; color: var(--text3); font-weight: 500; }
.pk-fiyat {font-size: 14px;font-weight: 600;font-family: 'JetBrains Mono', monospace;color: #494a4b;margin-bottom: 4px;}
.pk-degisim { font-size: 12px; font-weight: 600; font-family: 'JetBrains Mono', monospace; }
.pk-degisim.up   { color: var(--green); }
.pk-degisim.down { color: var(--red); }

/* ── ANA LAYOUT ── */
.main-content {
  max-width: 1200px;
  margin: 28px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr var(--sb-w);
  gap: 22px;
}
.main-left { min-width: 0; }

/* ── TABS ── */
.tabs-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.tabs-header {
  display: flex;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs-header::-webkit-scrollbar { display: none; }
.tab-btn {
  flex-shrink: 0;
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all .18s;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
}
.tab-btn:hover   { color: var(--text); background: var(--bg3); }
.tab-btn.aktif   { color: var(--accent); border-bottom-color: var(--accent); }
.tab-count {
  background: var(--bg3);
  font-size: 10px; padding: 2px 7px;
  border-radius: 10px;
  color: var(--text3);
}
.tab-btn.aktif .tab-count { background: rgba(59,130,246,.12); color: var(--accent); }
.tab-content { display: none; }
.tab-content.aktif { display: block; }

/* ── ARAMA ── */
.arama-wrap {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.arama-wrap-ic { position: relative; }
.arama-input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 13px;
  font-family: 'Sora', sans-serif;
  outline: none;
  transition: border-color .2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%238a96a8' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.242 1.656a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 11px center;
}
.arama-input:focus { border-color: var(--accent); }

/* ── KUR TABLOSU ── */
.kur-table-wrap { overflow-x: auto; }
.kur-table { width: 100%; border-collapse: collapse; }
.kur-table th {
  padding: 9px 14px;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text3);
  background: var(--bg3);
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.kur-table td {
  padding: 12px 14px;
  font-size: 13px;
  border-top: 1px solid var(--border);
  vertical-align: middle;
}
.kur-table tr:hover td { background: var(--bg3); }
.kur-row-isim { display: flex; align-items: center; gap: 10px; }
.kur-flag { font-size: 20px; flex-shrink: 0; }
.kur-isim-text .isim { font-weight: 600; font-size: 13px; }
.kur-isim-text .kod  { font-size: 11px; color: var(--text3); }
.kur-fiyat { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 13px; white-space: nowrap; }
.kur-degisim {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}
.kur-degisim.up   { background: var(--green-bg); color: var(--green); }
.kur-degisim.down { background: var(--red-bg);   color: var(--red); }
.kur-degisim.flat { background: var(--bg3);       color: var(--text3); }

/* Flaş animasyonlar */
.flash-green { animation: fGreen .6s ease; }
.flash-red   { animation: fRed   .6s ease; }
@keyframes fGreen { 0%,100%{background:transparent} 40%{background:rgba(16,185,129,.18)} }
@keyframes fRed   { 0%,100%{background:transparent} 40%{background:rgba(239,68,68,.18)} }

/* ── GÜNCELLEME BAR ── */
.guncelleme-bar {
  padding: 8px 14px;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text3);
}
.canli { color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.canli::before { content: '●'; font-size: 8px; animation: blink 1.5s infinite; }

/* ── SIDEBAR ── */
.sidebar-right { display: flex; flex-direction: column; gap: 18px; }

/* ── CARD (sidebar) ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-header-s {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
}
.card-title-s { font-size: 13px; font-weight: 700; color: var(--text); }
.card-body-s  { padding: 4px 0; }

/* ── KUR ÇEVİRİCİ ── */
.cevirici { padding: 14px 16px; }
.cevirici-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--text3); margin-bottom: 5px; }
.cevirici-row { display: flex; gap: 8px; margin-bottom: 10px; }
.cevirici-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 15px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  outline: none;
  transition: border-color .2s;
  min-width: 0;
}
.cevirici-input:focus { border-color: var(--accent); }
.cevirici-select {
  padding: 10px 8px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  min-width: 80px;
  font-family: 'Sora', sans-serif;
}
.cevirici-swap {
  width: 100%;
  padding: 9px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--text2);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
}
.cevirici-swap:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.cevirici-sonuc {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border-radius: 9px;
  padding: 13px 14px;
  text-align: center;
}
.sonuc-rakam { font-size: 22px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.sonuc-birim { font-size: 11px; opacity: .8; margin-top: 3px; }

/* ── MİNİ KUR (sidebar) ── */
.mini-kur {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  transition: background .18s;
  cursor: pointer;
}
.mini-kur:hover { background: var(--bg3); }
.mini-kur-sol { display: flex; align-items: center; gap: 9px; }
.mini-flag { font-size: 18px; }
.mini-isim { font-size: 13px; font-weight: 600; }
.mini-kod  { font-size: 11px; color: var(--text3); }
.mini-sag  { text-align: right; }
.mini-fiyat   { font-size: 13px; font-weight: 700; font-family: 'JetBrains Mono', monospace; }
.mini-degisim { font-size: 11px; font-family: 'JetBrains Mono', monospace; font-weight: 600; }
.mini-degisim.up   { color: var(--green); }
.mini-degisim.down { color: var(--red); }

/* ── BLOG KARTLARI ── */
.blog-kart {
  display: block;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: all .2s;
  box-shadow: var(--shadow);
}
.blog-kart:hover { transform: translateY(-2px); box-shadow: var(--shadow2); border-color: var(--accent); }
.blog-kategori { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); margin-bottom: 6px; }
.blog-baslik   { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.blog-ozet     { font-size: 13px; color: var(--text2); line-height: 1.6; margin-bottom: 8px; }
.blog-tarih    { font-size: 11px; color: var(--text3); }

/* ── İÇ SAYFA HERO ── */
.ic-hero {
  background: linear-gradient(135deg, #0f1724, #1a2a5e);
  padding: 32px 16px;
}
.ic-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ic-hero h1 { font-size: clamp(20px, 4vw, 32px); color: #fff; font-weight: 700; margin-bottom: 8px; }
.ic-hero p  { font-size: 14px; color: rgba(255,255,255,.6); }

/* ── İÇ SAYFA İÇERİK ── */
.ic-content {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 16px;
}
.card-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.card-wrap-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.card-wrap-title { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.kur-sayisi {
  background: var(--bg3);
  font-size: 12px; padding: 2px 9px;
  border-radius: 10px;
  color: var(--text3);
  font-weight: 600;
}

/* ── REKLAM ── */
.reklam { text-align: center; margin: 14px 0; }
.reklam img { max-width: 100%; border-radius: var(--radius-sm); }

/* ── FOOTER ── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 36px 16px 20px;
  margin-top: 48px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 24px;
}
.footer-brand-text { font-size: 18px; font-weight: 700; display: block; margin-bottom: 10px; }
.footer-desc { font-size: 13px; color: var(--text2); line-height: 1.7; }
.footer-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--text3); margin-bottom: 12px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-links a { font-size: 13px; color: var(--text2); transition: color .18s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text3);
}

/* ── MOBİL MEDIA QUERIES ── */
@media (max-width: 960px) {
  .main-content   { grid-template-columns: 1fr; }
  .sidebar-right  { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  :root { --sb-w: 100%; }
}
@media (max-width: 768px) {
  nav#mainNav:not(.acik) { display: none; }
  .mobile-menu-btn { display: flex; }
  .populer-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .sidebar-right  { grid-template-columns: 1fr; }
  .kur-table .hide-mobile { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .ic-hero        { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .hero           { padding: 28px 16px 52px; }
  .populer-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; }
  .hero-buttons   { flex-direction: column; align-items: center; }
  .card-wrap-header { flex-direction: column; align-items: flex-start; }
}
.canli-dot { color: var(--green); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }

/* ── DROPDOWN MENÜ ── */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow2);
  min-width: 180px;
  z-index: 200;
  padding: 4px;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  border-radius: 6px;
  transition: all .15s;
}
.dropdown-item:hover { background: var(--bg3); color: var(--accent); }
.dropdown-arrow { font-size: 10px; opacity: .6; }
.has-dropdown { display: flex; align-items: center; gap: 4px; }

/* ── SLIDER ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  background: #0f1724;
  max-height: 500px;
}
.slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.slider-slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  min-height: 280px;
  max-height: 500px;
}
.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 500px;
}
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
}
.slider-content {
  padding: 32px 48px;
  max-width: 600px;
}
.slider-content h2 {
  font-size: clamp(20px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.slider-content p {
  font-size: clamp(13px, 2vw, 16px);
  color: rgba(255,255,255,.8);
  margin-bottom: 20px;
  line-height: 1.6;
}
.slider-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}
.slider-btn:hover { background: var(--accent2); transform: translateY(-1px); }

.slider-nav {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.slider-dot.aktif { background: #fff; width: 24px; border-radius: 4px; }
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  z-index: 10;
}
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,.3); }

/* ── BÜLTEN BÖLÜMÜ ── */
.bulten-section {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  padding: 36px 16px;
  margin-top: 32px;
}
.bulten-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bulten-ikon { font-size: 36px; flex-shrink: 0; }
.bulten-metin { flex: 1; min-width: 200px; }
.bulten-metin h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.bulten-metin p  { font-size: 13px; color: rgba(255,255,255,.8); }
.bulten-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.bulten-input {
  padding: 10px 14px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 13px;
  font-family: 'Sora', sans-serif;
  outline: none;
  width: 180px;
  transition: border-color .2s;
}
.bulten-input::placeholder { color: rgba(255,255,255,.6); }
.bulten-input:focus { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.2); }
.bulten-btn {
  padding: 10px 20px;
  border-radius: 9px;
  background: #fff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.bulten-btn:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.bulten-btn:disabled { opacity: .7; cursor: wait; }

@media (max-width: 768px) {
  .bulten-inner { flex-direction: column; text-align: center; }
  .bulten-form  { width: 100%; justify-content: center; }
  .bulten-input { width: 100%; }
  .slider-content { padding: 20px 20px; }
  .slider-prev, .slider-next { width: 32px; height: 32px; font-size: 14px; }
}

/* ── CANLI DOT ── */
.canli-dot { color: var(--green); animation: blink 1.5s infinite; }
