/* ============================================
   HABER SİTESİ - ANA STİL DOSYASI
   Modern Dark Theme News Portal
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* --- CSS Değişkenleri --- */
:root {
  /* Renkler */
  --bg-primary: #0f0f14;
  --bg-secondary: #16161d;
  --bg-card: #1c1c26;
  --bg-card-hover: #22222e;
  --bg-accent: #1e1e2a;
  --text-primary: #e8e8ed;
  --text-secondary: #9d9daa;
  --text-muted: #6e6e7a;
  --accent: #e63946;
  --accent-hover: #ff4757;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --blue: #4361ee;
  --blue-hover: #5a78f0;
  --green: #2ec4b6;
  --gold: #f4a261;
  --purple: #7b2cbf;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --glass: rgba(255, 255, 255, 0.03);

  /* Tipografi */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --gap: 1.25rem;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;

  /* Header yüksekliği */
  --header-height: 64px;
  --nav-height: 48px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* --- Genel Konteyner --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  white-space: nowrap;
  cursor: pointer;
}

.logo .accent {
  color: var(--accent);
}

.header-date {
  color: var(--text-muted);
  font-size: 0.8rem;
  display: none;
  cursor: default;
}

@media (min-width: 768px) {
  .header-date {
    display: block;
  }
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  gap: 0.5rem;
  max-width: 320px;
  flex: 1;
  transition: border-color 0.2s;
}

.header-search:focus-within {
  border-color: var(--accent);
}

.header-search input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.875rem;
  width: 100%;
  outline: none;
  cursor: text;
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  padding: 0.25rem;
  cursor: pointer;
}

/* Hamburger Menü (Mobil) */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  padding: 0.25rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .header-search {
    display: none;
  }
}

/* ============================================
   NAVİGASYON
   ============================================ */
.main-nav {
  background: var(--bg-accent);
  border-bottom: 1px solid var(--border);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  height: var(--nav-height);
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
  display: none;
}

.nav-list a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}

.nav-list a.nav-accent {
  color: var(--accent);
  font-weight: 600;
}

/* Mobil Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-secondary);
  z-index: 999;
  padding: 1rem;
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s;
}

.mobile-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
  border-radius: var(--radius-sm);
}

.mobile-search {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mobile-search input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  width: 100%;
  outline: none;
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* ============================================
   HERO / MANŞET
   ============================================ */
.hero-section {
  padding: 1.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  min-height: 420px;
}

.hero-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.3s;
}

.hero-main:hover {
  transform: scale(1.01);
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.hero-main .category-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.hero-main .overlay h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.hero-main .overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

.hero-side {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: var(--gap);
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.3s;
}

.hero-card:hover {
  transform: scale(1.02);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.hero-card .category-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-card .overlay h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-main {
    min-height: 280px;
  }

  .hero-card {
    min-height: 180px;
  }

  .hero-main .overlay h2 {
    font-size: 1.35rem;
  }
}

/* ============================================
   HABER KARTLARI & GRİD
   ============================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
}

.section-header a {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  cursor: pointer;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  padding: 1rem 0 3rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}

.news-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--border-light);
}

.news-card .card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.news-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.news-card:hover .card-image img {
  transform: scale(1.05);
}

.news-card .card-body {
  padding: 1rem 1.15rem;
}

.news-card .card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.news-card .card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .card-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.news-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.news-card .card-meta .source {
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.sidebar-widget .widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.popular-list {
  counter-reset: popular;
}

.popular-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  counter-increment: popular;
  cursor: pointer;
  transition: background 0.2s;
}

.popular-list li:last-child {
  border-bottom: none;
}

.popular-list li:hover {
  background: var(--bg-card-hover);
}

.popular-list li::before {
  content: counter(popular);
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.popular-list li .popular-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.popular-list li .popular-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Bülten Widget */
.newsletter-widget {
  background: linear-gradient(135deg, var(--accent) 0%, #c62b38 100%);
  border: none;
}

.newsletter-widget .widget-title {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.newsletter-widget p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.newsletter-widget input {
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  outline: none;
}

.newsletter-widget button {
  width: 100%;
  padding: 0.7rem;
  background: var(--bg-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}

.newsletter-widget button:hover {
  background: var(--bg-secondary);
}

@media (max-width: 1024px) {
  .content-wrapper {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ============================================
   TICKER (Son Dakika)
   ============================================ */
.ticker-bar {
  background: var(--accent);
  color: #fff;
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 0.8rem;
  cursor: default;
  user-select: none;
}

.ticker-label {
  background: rgba(0, 0, 0, 0.3);
  padding: 0 1rem;
  font-weight: 700;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  animation: tickerPulse 2s ease-in-out infinite;
}

@keyframes tickerPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.ticker-scroll {
  display: flex;
  gap: 4rem;
  animation: tickerMove 30s linear infinite;
  white-space: nowrap;
  padding-left: 100%;
  cursor: default;
}

.ticker-scroll span {
  flex-shrink: 0;
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand .logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.footer-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all 0.2s;
  cursor: pointer;
}

.footer-section ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.footer-contact li .icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SAYFA İÇERİK (pages)
   ============================================ */
.page-content {
  padding: 2rem 0 3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  color: var(--text-muted);
}

.page-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

/* Detay Sayfası */
.article-header {
  margin-bottom: 2rem;
}

.article-header .category-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-meta .dot {
  color: var(--border-light);
}

.article-image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  max-height: 500px;
  object-fit: cover;
}

.article-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-body p {
  margin-bottom: 1.25rem;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}

.share-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* İlgili Haberler */
.related-news {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* İletişim Formu */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.875rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input,
.form-group textarea {
  cursor: text;
}

.form-group select {
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.contact-info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border-radius: var(--radius-sm);
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-info-item p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   SAYFA İÇİ TEXT (Gizlilik, Şartlar vb.)
   ============================================ */
.text-content {
  max-width: 800px;
}

.text-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}

.text-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text-primary);
}

.text-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.text-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.text-content ul li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

/* ============================================
   LOADING & ANİMASYON
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.fade-in {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card-hover);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ============================================
   TOAST / BİLDİRİM
   ============================================ */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 0.875rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.85rem;
  z-index: 10000;
  animation: slideInRight 0.3s ease;
  box-shadow: var(--shadow);
}

.toast.error {
  border-left-color: var(--accent);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ============================================
   KATEGORİ SAYFA GRİDİ
   ============================================ */
.category-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}

/* Haber Yok Mesajı */
.no-news {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
}

.no-news .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.no-news h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.no-news p {
  font-size: 0.9rem;
}

/* ============================================
   1. LIGHT THEME
   ============================================ */
[data-theme="light"] {
  --bg-primary: #f5f5f8;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f5;
  --bg-accent: #f8f8fb;
  --text-primary: #1a1a2e;
  --text-secondary: #555568;
  --text-muted: #8e8ea0;
  --border: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.12);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --glass: rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .ticker-bar {
  background: var(--accent);
}

[data-theme="light"] .site-header {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .news-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Theme Toggle */
.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--accent);
  transform: scale(1.1);
}

/* ============================================
   2. CANLI ARAMA
   ============================================ */
.search-container {
  position: relative;
}

.search-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-height: 360px;
  overflow-y: auto;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  display: none;
}

.search-results.active {
  display: block;
}

.search-results .search-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}

.search-results .search-item:hover {
  background: var(--bg-card-hover);
}

.search-results .search-item img {
  width: 60px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.search-results .search-item .search-text h4 {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.search-results .search-item .search-text span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.search-results .search-empty {
  padding: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

mark {
  background: rgba(230, 57, 70, 0.25);
  color: inherit;
  border-radius: 2px;
  padding: 0 2px;
}

/* ============================================
   3. SONSUZ SCROLL
   ============================================ */
.scroll-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  grid-column: 1 / -1;
}

.scroll-loader .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   4. YER İMİ / KAYDET
   ============================================ */
.bookmark-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.bookmark-btn:hover,
.bookmark-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(244, 162, 97, 0.1);
}

.bookmark-count {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-secondary);
}

.bookmark-count:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================
   5. OKUMA MODU
   ============================================ */
.reading-mode-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.reading-mode-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

body.reading-mode .site-header,
body.reading-mode .main-nav,
body.reading-mode .ticker-bar,
body.reading-mode .sidebar,
body.reading-mode .site-footer,
body.reading-mode .share-buttons,
body.reading-mode .related-section {
  display: none !important;
}

body.reading-mode .content-wrapper {
  grid-template-columns: 1fr !important;
  max-width: 720px;
  margin: 0 auto;
}

body.reading-mode .article-body {
  font-size: 1.1rem;
  line-height: 1.9;
}

/* ============================================
   6. BİLDİRİM PANELİ
   ============================================ */
.notif-container {
  position: relative;
}

.notif-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.notif-btn:hover {
  border-color: var(--accent);
}

.notif-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.notif-dropdown.active {
  display: block;
}

.notif-dropdown .notif-header {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.notif-dropdown .notif-item {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
  font-size: 0.82rem;
}

.notif-dropdown .notif-item:hover {
  background: var(--bg-card-hover);
}

.notif-dropdown .notif-item .notif-time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ============================================
   7. FİNANS WİDGET
   ============================================ */
.finance-widget .finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.finance-item {
  background: var(--bg-accent);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.75rem;
  text-align: center;
}

.finance-item .label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.finance-item .value {
  font-size: 0.9rem;
  font-weight: 700;
}

.finance-item .change {
  font-size: 0.7rem;
  font-weight: 600;
}

.finance-item .change.up {
  color: #2ec4b6;
}

.finance-item .change.down {
  color: #e63946;
}

/* ============================================
   8. HAVA DURUMU WİDGET
   ============================================ */
.weather-widget .weather-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.weather-icon {
  font-size: 2.5rem;
}

.weather-temp {
  font-size: 2rem;
  font-weight: 800;
}

.weather-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.weather-details {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   9. ANKET
   ============================================ */
.poll-widget .poll-question {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.poll-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.poll-option:hover {
  border-color: var(--accent);
}

.poll-option .poll-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: rgba(230, 57, 70, 0.1);
  transition: width 0.4s;
}

.poll-option .poll-text {
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  flex: 1;
}

.poll-option .poll-pct {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.poll-total {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
  margin-top: 0.5rem;
}

/* ============================================
   10. TREND HABERLER
   ============================================ */
.trend-list .trend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.trend-list .trend-item:last-child {
  border-bottom: none;
}

.trend-list .trend-item:hover {
  background: var(--bg-card-hover);
  margin: 0 -0.5rem;
  padding: 0.65rem 0.5rem;
  border-radius: 6px;
}

.trend-rank {
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 4px;
  flex-shrink: 0;
}

.trend-rank.hot {
  background: rgba(230, 57, 70, 0.15);
  color: var(--accent);
}

.trend-rank.warm {
  background: rgba(244, 162, 97, 0.15);
  color: var(--gold);
}

.trend-rank.normal {
  background: rgba(67, 97, 238, 0.15);
  color: var(--blue);
}

.trend-info h4 {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.trend-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ============================================
   11. KÖŞE YAZARLARI
   ============================================ */
.columnist-section {
  padding: 2rem 0;
}

.columnist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}

.columnist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.columnist-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.columnist-avatar {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.columnist-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.columnist-card .columnist-title {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.columnist-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   12. ARŞİV
   ============================================ */
.archive-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 1rem;
}

.archive-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}

.archive-day:hover {
  border-color: var(--accent);
}

.archive-day.has-news {
  background: rgba(230, 57, 70, 0.12);
  color: var(--accent);
  font-weight: 700;
}

.archive-day.today {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

/* ============================================
   13. CAROUSEL / SLIDER
   ============================================ */
.carousel-section {
  padding: 1.5rem 0;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--gap);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel-slide {
  min-width: 100%;
  scroll-snap-align: start;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  cursor: pointer;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide .carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.carousel-slide .carousel-overlay h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.carousel-slide .carousel-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.carousel-nav:hover {
  background: var(--accent);
}

.carousel-nav.prev {
  left: 1rem;
}

.carousel-nav.next {
  right: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .carousel-slide {
    height: 260px;
  }

  .carousel-slide .carousel-overlay h2 {
    font-size: 1.2rem;
  }
}

/* ============================================
   15. VİDEO HABER
   ============================================ */
.video-section {
  padding: 2rem 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-card:hover {
  transform: translateY(-3px);
}

.video-thumb {
  position: relative;
  height: 180px;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 57, 70, 0.9);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card .card-body {
  padding: 1rem;
}

.video-card .card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

/* ============================================
   16. LİGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
}

/* ============================================
   18. COOKIE CONSENT
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

.cookie-banner p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  flex: 1;
}

.cookie-banner .cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-banner .cookie-btns button {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cookie-banner .btn-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-banner .btn-reject {
  background: var(--bg-accent);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ============================================
   19. YORUM SİSTEMİ
   ============================================ */
.comments-section {
  margin-top: 2rem;
}

.comment-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.comment-form h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  margin-bottom: 0.75rem;
  outline: none;
  cursor: text;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--accent);
}

.comment-form textarea {
  min-height: 80px;
  resize: vertical;
}

.comment-form button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

.comment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.comment-item .comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.comment-item .comment-author {
  font-weight: 700;
  font-size: 0.85rem;
}

.comment-item .comment-date {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.comment-item .comment-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   20. ETİKET (TAG) SİSTEMİ
   ============================================ */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.tag-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* ============================================
   TOAST (Site)
   ============================================ */
.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 0.8rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  animation: slideInRight 0.3s ease;
}

.toast.error {
  border-left-color: var(--accent);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}