/* ============================================================
   SIFIR6TV - Kurumsal Haber Teması
   Renkler: Siyah #000 | Cyan #00BFFF | Beyaz #FFF
   ============================================================ */

:root {
  --color-black: #000000;
  --color-dark: #1a1a2e;
  --color-dark-2: #111111;
  --color-dark-3: #1a1a1a;
  --color-dark-4: #222222;
  --color-cyan: #00BFFF;
  --color-cyan-dark: #0099cc;
  --color-cyan-light: #33ccff;
  --color-cyan-glow: rgba(0, 191, 255, 0.2);
  --color-white: #ffffff;
  --color-gray: #777777;
  --color-gray-light: #cccccc;
  --color-border: #e0e0e0;
  --color-red: #e63946;

  /* Light theme specific */
  --color-bg: #f5f5f5;
  --color-bg-card: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #666666;
  --color-border-light: #e8e8e8;

  --font-primary: 'Inter', 'Segoe UI', -apple-system, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', -apple-system, sans-serif;

  --radius: 2px;
  --radius-md: 2px;
  --transition: 0.2s ease;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

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

/* ============================================================
   ÜST BİLGİ BARI (tarih/saat/sosyal)
   ============================================================ */

.topbar {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 6px 0;
  font-size: 11px;
  color: #777;
}

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

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-date {
  color: #444;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.topbar-time {
  color: var(--color-cyan-dark);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.topbar-sep {
  color: #ccc;
  font-size: 10px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #888;
  font-size: 11px;
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
}

.topbar-yt:hover { color: #ff0000; }
.topbar-ig:hover { color: #e1306c; }
.topbar-social:hover { color: var(--color-cyan); }

/* Header slogan */
.header-center {
  flex: 1;
  text-align: center;
}

.header-slogan {
  font-size: 12px;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   SON DAKİKA BARI
   ============================================================ */

.breaking-bar {
  background: var(--color-red);
  color: var(--color-white);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}

.breaking-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.breaking-label {
  background: var(--color-white);
  color: var(--color-red);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  text-transform: uppercase;
  flex-shrink: 0;
  border-radius: 2px;
}

.breaking-text {
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   HEADER / NAVİGASYON
   ============================================================ */

.site-header {
  background: #ffffff;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.header-top {
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  background: #ffffff;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--color-cyan);
  padding-left: 12px;
}

.site-logo-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  color: #111111;
}

.site-logo-name span {
  color: var(--color-cyan);
}

.site-logo-tagline {
  font-size: 11px;
  color: #888;
  letter-spacing: 1.5px;
  text-transform: lowercase;
  line-height: 1.5;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 3px;
  transition: all var(--transition);
  border: 1px solid transparent;
  letter-spacing: 0.3px;
}

.btn-youtube {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
}

.btn-youtube:hover {
  background: #cc0000;
  color: white;
  border-color: #cc0000;
}

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.btn-instagram:hover {
  opacity: 0.85;
  color: white;
}

/* NAV BAR — cyan şeritli, beyaz arka plan */
.header-nav {
  padding: 0;
  background: #ffffff;
  border-bottom: 3px solid var(--color-cyan);
}

.header-nav .container {
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  flex: 1;
}

.nav-menu li a {
  display: block;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333333;
  transition: all var(--transition);
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-cyan);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: var(--color-cyan);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  transform: scaleX(1);
}

.nav-menu li.nav-current a {
  color: var(--color-cyan);
}

.nav-menu li.nav-current a::after {
  transform: scaleX(1);
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: all var(--transition);
}

/* ============================================================
   CONTAINER
   ============================================================ */

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

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

/* ============================================================
   ANA SAYFA - HERO 2 SÜTUN
   ============================================================ */

.hero-2col-section {
  background: #ffffff;
  margin-bottom: 0;
  border-bottom: 3px solid var(--color-cyan);
}

.hero-2col-wrap {
  display: grid;
  grid-template-columns: 3fr 1fr;
  min-height: 480px;
  max-height: 520px;
}

/* SOL: Ana büyük slide */
.hero-main-col {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  display: none;
  position: relative;
  height: 100%;
}

.hero-slide.active {
  display: block;
}

.hero-slide-link {
  display: block;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.hero-slide-link img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-slide.active .hero-slide-link img {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 28px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}

.hero-slide-tag {
  background: var(--color-cyan);
  color: var(--color-black);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 8px;
}

.hero-slide-title {
  color: white;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-slide-time {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  display: block;
}

.hero-slide-noimg {
  background: #111;
  height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 28px 24px;
}

/* SAĞ: Küçük resim navigasyon listesi */
.hero-thumb-col {
  background: #f8f8f8;
  overflow-y: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e0e0e0;
}

.hero-thumb-item {
  display: flex;
  align-items: stretch;
  background: none;
  border: none;
  border-bottom: 1px solid #e8e8e8;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  padding: 0;
  border-left: 3px solid transparent;
  flex: 1;
  min-height: 0;
}

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

.hero-thumb-item:hover {
  background: #f0f0f0;
  border-left-color: #bbb;
}

.hero-thumb-item.active {
  background: rgba(0, 191, 255, 0.08);
  border-left-color: var(--color-cyan);
}

.hero-thumb-item img {
  width: 80px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  height: 100%;
}

.hero-thumb-title {
  font-size: 11.5px;
  color: #555;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding: 8px 10px;
  flex: 1;
  align-self: center;
}

.hero-thumb-item.active .hero-thumb-title {
  color: #111;
  font-weight: 600;
}

/* Eski hero-grid - geriye dönük uyumluluk */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 12px;
}

.hero-main {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--color-dark-2);
}

.hero-main .card-image {
  aspect-ratio: 16/9;
  width: 100%;
}

.hero-main .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.95));
  padding: 30px 20px 18px;
}

.hero-main .card-tag {
  margin-bottom: 8px;
}

.hero-main .card-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-main .card-excerpt {
  font-size: 14px;
  color: var(--color-gray-light);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   KART YAPISI - KOMPAKT HABER SİTESİ STİLİ
   ============================================================ */

.card {
  background: var(--color-bg-card);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--color-cyan);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* Kompakt kart */
.card-compact {
  background: var(--color-bg-card);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.card-compact:hover {
  border-color: var(--color-cyan);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.card-compact:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-horizontal {
  display: flex;
  flex-direction: row;
}

.card-horizontal .card-image {
  width: 110px;
  flex-shrink: 0;
}

.card-horizontal .card-image img {
  width: 110px;
  height: 100%;
  object-fit: cover;
}

.card-horizontal .card-content {
  flex: 1;
  padding: 10px;
}

.card-horizontal .card-title {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-image {
  overflow: hidden;
  position: relative;
}

.card-image img {
  transition: transform 0.4s ease;
  width: 100%;
}

.card:hover .card-image img {
  transform: scale(1.03);
}

.card-content {
  padding: 10px 12px;
}

.card-tag {
  display: inline-block;
  background: var(--color-cyan);
  color: var(--color-black);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 1px;
  margin-bottom: 6px;
}

.card-tag:hover {
  background: var(--color-cyan-dark);
  color: var(--color-black);
}

/* Küçük tag varyantı */
.card-tag-xs {
  font-size: 8px;
  padding: 2px 5px;
  letter-spacing: 0.8px;
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title a:hover {
  color: var(--color-cyan);
}

.card-excerpt {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

/* Ortak tarih/saat stili */
.news-time {
  display: block;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.card-meta {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-gray);
}

.card-meta time {
  color: var(--color-cyan);
}

.card-meta .separator {
  color: var(--color-border);
}

/* ============================================================
   BÖLÜM BAŞLIĞI - GAZETE STİLİ
   ============================================================ */

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #d0d0d0;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-cyan);
}

.section-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  display: block;
  width: 3px;
  height: 16px;
  background: var(--color-cyan);
  border-radius: 1px;
}

/* Kırmızı çizgili bölüm başlığı (Gündem vs.) */
.section-title-red::before {
  background: var(--color-red);
}

.section-title-red + .section-header::after {
  background: var(--color-red);
}

.section-link {
  font-size: 12px;
  color: var(--color-cyan);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-link:hover {
  color: var(--color-cyan-light);
}

/* ============================================================
   HABER IZGARASI - KOMPAKT
   ============================================================ */

.news-section {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.news-section:last-child {
  border-bottom: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.news-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.news-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ============================================================
   GÜNDEM LİSTESİ - Küçük kartlar
   ============================================================ */

.gundem-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gundem-item {
  display: flex;
  gap: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-red);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color var(--transition);
}

.gundem-item:hover {
  border-left-color: var(--color-cyan);
}

.gundem-img {
  flex-shrink: 0;
  width: 100px;
  display: block;
  overflow: hidden;
}

.gundem-img img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gundem-item:hover .gundem-img img {
  transform: scale(1.05);
}

.gundem-body {
  flex: 1;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.gundem-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gundem-title a {
  color: var(--color-text);
}

.gundem-title a:hover {
  color: var(--color-cyan);
}

/* ============================================================
   HABER LİSTESİ - Gazete tarzı (resim sol, başlık sağ)
   ============================================================ */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-list-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border-light);
  align-items: flex-start;
}

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

.news-list-img {
  flex-shrink: 0;
  width: 90px;
  display: block;
  overflow: hidden;
  border-radius: 1px;
}

.news-list-img img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-img img {
  transform: scale(1.05);
}

.news-list-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news-list-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-title a {
  color: var(--color-text);
}

.news-list-title a:hover {
  color: var(--color-cyan);
}

/* ============================================================
   SİDEBAR HABER LİSTESİ
   ============================================================ */

.sidebar-news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-news-item {
  display: flex;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid var(--color-border-light);
  align-items: flex-start;
  transition: background var(--transition);
}

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

.sidebar-news-item:hover {
  background: #f0f0f0;
}

.sidebar-news-img {
  flex-shrink: 0;
  width: 60px;
  display: block;
  overflow: hidden;
  border-radius: 1px;
}

.sidebar-news-img img {
  width: 60px;
  height: 44px;
  object-fit: cover;
  display: block;
}

.sidebar-news-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sidebar-news-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.sidebar-news-title:hover {
  color: var(--color-cyan);
}

/* Ana içerik + sidebar layout */
.content-sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  padding: 16px 0;
}

.main-content {
  min-width: 0;
}

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

/* ============================================================
   SIDEBAR WİDGETLAR
   ============================================================ */

.widget {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.widget-header {
  background: #f0f0f0;
  padding: 9px 14px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.widget-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-cyan);
}

.widget-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--color-text);
  padding-left: 6px;
}

.widget-body {
  padding: 12px;
}

/* YouTube widget */
.yt-widget .widget-body {
  padding: 0;
}

.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.yt-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.yt-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #ff0000;
  color: white;
  font-weight: 700;
  font-size: 13px;
  justify-content: center;
  transition: background var(--transition);
}

.yt-link:hover {
  background: #cc0000;
  color: white;
}

/* Popular posts widget */
.popular-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
}

.popular-item {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}

.popular-item:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.popular-num {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-cyan);
  line-height: 1.2;
  min-width: 22px;
  opacity: 0.35;
  flex-shrink: 0;
}

.popular-item:hover .popular-num {
  opacity: 1;
}

.popular-title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-gray-light);
  transition: color var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-title:hover {
  color: var(--color-cyan);
}

/* Tags widget */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-pill {
  display: inline-block;
  padding: 4px 10px;
  background: #f0f0f0;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-size: 11px;
  font-weight: 600;
  border-radius: 2px;
  transition: all var(--transition);
}

.tag-pill small {
  opacity: 0.5;
  font-size: 10px;
}

.tag-pill:hover {
  background: var(--color-cyan);
  color: var(--color-black);
  border-color: var(--color-cyan);
}

/* ============================================================
   MAKALE SAYFASI
   ============================================================ */

.article-header {
  padding: 40px 0 30px;
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border-light);
}

.article-tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.article-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.article-excerpt {
  font-size: 18px;
  color: var(--color-gray-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--color-gray);
  flex-wrap: wrap;
}

.article-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-cyan);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--color-cyan);
}

.article-date {
  color: var(--color-gray);
}

.article-hero {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 30px 0;
}

/* İçerik */
.article-content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-text);
}

.article-content h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--color-text);
  padding-left: 16px;
  border-left: 4px solid var(--color-cyan);
}

.article-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--color-text);
}

.article-content p {
  margin-bottom: 20px;
}

.article-content a {
  color: var(--color-cyan);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.article-content a:hover {
  border-color: var(--color-cyan);
}

.article-content blockquote {
  margin: 30px 0;
  padding: 20px 24px;
  background: #f0f8ff;
  border-left: 4px solid var(--color-cyan);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 18px;
  font-style: italic;
  color: #444444;
}

.article-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.article-content ul,
.article-content ol {
  margin: 0 0 20px 24px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content pre {
  background: var(--color-dark-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
}

.article-content code {
  background: var(--color-dark-4);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  color: var(--color-cyan);
}

.article-content figure {
  margin: 24px 0;
}

.article-content figcaption {
  font-size: 13px;
  color: var(--color-gray);
  text-align: center;
  margin-top: 8px;
}

/* Video embed */
.kg-embed-card {
  margin: 24px 0;
}

.kg-embed-card iframe {
  width: 100%;
  border-radius: var(--radius-md);
}

/* Paylaşım butonu */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  padding: 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

.share-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition);
  cursor: pointer;
}

.share-twitter {
  background: #1da1f2;
  color: white;
}

.share-twitter:hover {
  background: #0d8ed9;
  color: white;
}

.share-whatsapp {
  background: #25d366;
  color: white;
}

.share-whatsapp:hover {
  background: #1aab55;
  color: white;
}

.share-copy {
  background: #f0f0f0;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.share-copy:hover {
  background: var(--color-cyan);
  color: var(--color-black);
  border-color: var(--color-cyan);
}

/* İlgili haberler */
.related-posts {
  margin: 40px 0;
}

/* ============================================================
   SAYFALAMA
   ============================================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.pagination a,
.pagination .page-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.pagination a:hover {
  background: var(--color-cyan);
  color: var(--color-black);
  border-color: var(--color-cyan);
}

.pagination .page-number.active,
.pagination .current {
  background: var(--color-cyan);
  color: var(--color-black);
  border-color: var(--color-cyan);
  cursor: default;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: #f5f5f5;
  border-top: 3px solid var(--color-cyan);
  margin-top: 40px;
}

.footer-main {
  padding: 36px 0 24px;
  border-bottom: 1px solid #e0e0e0;
}

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

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
}

.footer-logo-text span {
  color: var(--color-cyan);
}

.footer-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid #ddd;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  transition: all var(--transition);
}

.footer-social .yt-social:hover {
  background: #ff0000;
  color: white;
  border-color: #ff0000;
}

.footer-social .ig-social:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  border-color: transparent;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #222;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-cyan);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  color: #666;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a::before {
  content: '›';
  color: var(--color-cyan);
}

.footer-links li a:hover {
  color: var(--color-cyan);
}

.footer-bottom {
  padding: 16px 0;
  background: #ebebeb;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: #666;
}

.footer-copyright a {
  color: var(--color-cyan-dark);
  font-weight: 600;
}

.footer-powered {
  font-size: 12px;
  color: #999;
}

/* ============================================================
   TAG / KATEGORİ SAYFASI - KOMPAKT
   ============================================================ */

/* Yeni kompakt tag header */
.tag-header-compact {
  background: var(--color-black);
  padding: 14px 0;
  border-bottom: 2px solid var(--color-border);
}

.tag-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tag-header-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag-accent-dot {
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--color-cyan);
  border-radius: 1px;
}

.tag-name-compact {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag-count-badge {
  background: var(--color-dark-3);
  border: 1px solid var(--color-border);
  color: var(--color-gray);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
}

.tag-desc-compact {
  font-size: 13px;
  color: var(--color-gray);
  margin-left: 14px;
}

/* Eski tag header stilleri - geriye dönük uyumluluk */
.tag-header {
  background: var(--color-black);
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tag-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
}

.tag-name {
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.tag-count {
  font-size: 13px;
  color: var(--color-cyan);
  font-weight: 600;
}

.tag-description {
  font-size: 14px;
  color: var(--color-gray);
  margin-top: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   ARAMA
   ============================================================ */

.search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.search-input {
  background: #f5f5f5;
  border: 1px solid #ddd;
  color: #333;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  width: 200px;
  transition: all var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 2px var(--color-cyan-glow);
  width: 260px;
}

.search-input::placeholder {
  color: var(--color-gray);
}

.search-btn {
  background: var(--color-cyan);
  border: none;
  color: var(--color-black);
  padding: 8px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  transition: background var(--transition);
}

.search-btn:hover {
  background: var(--color-cyan-dark);
}

/* ============================================================
   404 SAYFASI
   ============================================================ */

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: var(--color-cyan);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
}

.error-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.error-desc {
  font-size: 16px;
  color: var(--color-gray);
  margin-bottom: 30px;
}

.btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-cyan);
  color: var(--color-black);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.btn-home:hover {
  background: var(--color-cyan-dark);
  color: var(--color-black);
}

/* ============================================================
   LOADING OVERLAY
   ============================================================ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo-img {
  height: 64px;
  width: auto;
  animation: pulse 1s ease-in-out infinite;
}

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

/* Ticker animation */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap {
  overflow: hidden;
  flex: 1;
}

.ticker-content {
  display: inline-flex;
  gap: 40px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-content:hover {
  animation-play-state: paused;
}

/* ============================================================
   UTILITY
   ============================================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

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

.mt-auto { margin-top: auto; }
.w-full { width: 100%; }

.no-image .card-image { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .content-sidebar-layout { grid-template-columns: 1fr 260px; }
}

@media (max-width: 900px) {
  .content-sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-2col-wrap { grid-template-columns: 1fr; max-height: none; }
  .hero-thumb-col { flex-direction: row; flex-wrap: wrap; max-height: 120px; border-left: none; border-top: 2px solid #222; }
  .hero-thumb-item { width: calc(100% / 4); border-left: none; border-bottom: none; border-right: 1px solid #1a1a1a; }
  .hero-thumb-item img { width: 100%; height: 60px; }
  .hero-thumb-title { display: none; }
  .hero-slide-link img { height: 300px; }
  .hero-slide-noimg { height: 300px; }
  .hero-slide-title { font-size: 20px; }
}

@media (max-width: 768px) {
  .header-center { display: none; }
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .news-grid-3col { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { display: none; }
  .header-social { display: none; }
  .hamburger { display: flex; }
  .header-nav .container { flex-wrap: wrap; }
  .nav-menu { display: none; flex-direction: column; width: 100%; background: #f8f8f8; border-top: 1px solid #eee; flex: none; }
  .nav-menu.open { display: flex; }
  .search-bar { margin-left: auto; }
  .nav-menu li a { padding: 12px 20px; border-bottom: 1px solid #e8e8e8; color: #333; }
  .article-title { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .sidebar { display: flex; flex-direction: column; }
  .search-input { width: 130px; }
  .search-input:focus { width: 170px; }
  .tag-header-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero-slide-link img { height: 240px; }
  .hero-slide-noimg { height: 240px; }
  .hero-slide-title { font-size: 17px; }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-grid-3col { grid-template-columns: 1fr; }
  .news-grid-2col { grid-template-columns: 1fr; }
  .article-title { font-size: 20px; }
  .article-excerpt { font-size: 15px; }
  .container { padding: 0 12px; }
  .gundem-list { gap: 6px; }
  .hero-slide-link img { height: 200px; }
  .hero-slide-noimg { height: 200px; }
  .hero-slide-title { font-size: 15px; }
  .hero-slide-overlay { padding: 40px 16px 14px; }
  .hero-thumb-item { width: calc(100% / 4); }
}

/* ============================================================
   DARK MODE OVERRIDES - Ghost Admin Bar
   ============================================================ */

.gh-head-menu .nav li a {
  color: var(--color-gray-light) !important;
}

/* ============================================================
   KOENIG CARD WIDTH CLASSES (Ghost zorunlu)
   ============================================================ */
.kg-width-wide {
  width: 85vw;
  max-width: 1200px;
  margin-left: calc(50% - 42.5vw);
}
.kg-width-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .kg-width-wide,
  .kg-width-full {
    width: 100%;
    margin-left: 0;
  }
}

/* ============================================================
   REKLAM BANNER ALANLARI
   ============================================================ */
.s6tv-ad-slot {
  text-align: center;
  overflow: hidden;
}
.s6tv-ad-slot:empty {
  display: none;
}

/* Hero üstü banner - tam genişlik */
.s6tv-ad-slot[data-position="hero-top"] {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 20px;
}
.s6tv-ad-slot[data-position="hero-top"] .s6tv-ad-media {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
}

/* Sidebar orta banner */
.s6tv-ad-slot[data-position="sidebar-mid"] {
  background: var(--color-bg-card, #fff);
  border: 1px solid var(--color-border, #e0e0e0);
  border-radius: 2px;
  overflow: hidden;
}
.s6tv-ad-slot[data-position="sidebar-mid"] .s6tv-ad-media {
  width: 100%;
  height: auto;
  display: block;
  max-height: 250px;
  object-fit: contain;
}

.s6tv-ad-link {
  display: block;
  text-decoration: none;
  line-height: 0;
}
.s6tv-ad-link:hover {
  opacity: 0.92;
}

@media (max-width: 900px) {
  .s6tv-ad-slot[data-position="hero-top"] {
    padding: 6px 10px;
  }
  .s6tv-ad-slot[data-position="sidebar-mid"] .s6tv-ad-media {
    max-height: 200px;
  }
}
