/* ============================================
   MEGA HABER - ANA STİL DOSYASI
   ============================================ */

:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --primary-light: #ef5350;
  --secondary: #212121;
  --text: #333;
  --text-light: #666;
  --text-muted: #999;
  --bg: #f5f5f5;
  --white: #fff;
  --border: #e0e0e0;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --radius: 4px;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.col { padding: 0 10px; }

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--secondary);
  color: #ccc;
  font-size: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #333;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--primary); }
.top-bar-left { display: flex; gap: 15px; align-items: center; }
.top-bar-right { display: flex; gap: 15px; align-items: center; }
.top-bar-right a { display: flex; align-items: center; gap: 4px; }

/* ---- HEADER ---- */
header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  padding: 15px 0;
}
header .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.site-logo img { height: 60px; }
.header-right { display: flex; align-items: center; gap: 15px; }
.search-form { display: flex; border: 2px solid var(--border); border-radius: 25px; overflow: hidden; }
.search-form input { border: none; outline: none; padding: 8px 15px; font-size: 13px; width: 250px; }
.search-form button { background: var(--primary); color: #fff; border: none; padding: 8px 15px; cursor: pointer; }
.weather-widget { font-size: 13px; display: flex; align-items: center; gap: 5px; }
.weather-widget img { width: 24px; }
.date-widget { font-size: 12px; color: var(--text-light); }

/* ---- BREAKING NEWS ---- */
.breaking-news {
  background: var(--primary);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
}
.breaking-news .container { display: flex; align-items: center; gap: 15px; }
.breaking-label {
  background: var(--secondary);
  padding: 4px 12px;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 2px;
}
.ticker-wrap { flex: 1; overflow: hidden; }
.ticker {
  display: flex;
  animation: ticker-anim 60s linear infinite;
  white-space: nowrap;
}
.ticker:hover { animation-play-state: paused; }
.ticker a { color: #fff; margin-right: 40px; font-size: 13px; }
.ticker a:before { content: "•"; margin-right: 10px; }
@keyframes ticker-anim {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ---- MAIN NAV ---- */
.main-nav {
  background: var(--secondary);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.main-nav ul { display: flex; flex-wrap: wrap; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  padding: 12px 14px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li.active > a { background: var(--primary); color: #fff; }
.main-nav .dropdown { display: none; position: absolute; top: 100%; left: 0; background: var(--secondary); min-width: 200px; z-index: 999; }
.main-nav li:hover .dropdown { display: block; }
.main-nav .dropdown a { font-size: 12px; border-top: 1px solid #333; }
.hamburger { display: none; }

/* ---- TICKER SIDE BARS ---- */
.sidebar-ad { text-align: center; }
.sticky-ad { position: sticky; top: 60px; }

/* ---- LAYOUT ---- */
.main-content { padding: 20px 0; }
.content-area { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }

/* ---- SECTION TITLES ---- */
.section-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 8px;
}
.section-title h2, .section-title h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-title .cat-badge {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
}
.section-title .more-link {
  margin-left: auto;
  font-size: 12px;
  color: var(--primary);
}

/* ---- NEWS CARDS ---- */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 15px;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.news-card-img { position: relative; overflow: hidden; }
.news-card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-cat {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  padding: 2px 8px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; border-radius: 2px;
}
.news-card-body { padding: 12px; }
.news-card-title { font-size: 14px; font-weight: 700; line-height: 1.4; margin-bottom: 6px; }
.news-card-title a:hover { color: var(--primary); }
.news-card-meta { font-size: 11px; color: var(--text-muted); display: flex; gap: 10px; }
.news-card-summary { font-size: 12px; color: var(--text-light); margin-top: 5px; line-height: 1.5; }

/* ---- FEATURED NEWS (Ana sayfa büyük haber) ---- */
.featured-news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 15px; margin-bottom: 20px; }
.featured-news-big { position: relative; border-radius: var(--radius); overflow: hidden; }
.featured-news-big img { width: 100%; height: 380px; object-fit: cover; }
.featured-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 30px 20px 20px;
  color: #fff;
}
.featured-overlay .cat { background: var(--primary); padding: 2px 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.featured-overlay h2 { font-size: 20px; margin-top: 8px; line-height: 1.3; }
.featured-overlay .meta { font-size: 11px; opacity: 0.7; margin-top: 5px; }
.featured-news-list { display: flex; flex-direction: column; gap: 10px; }
.featured-news-small { position: relative; border-radius: var(--radius); overflow: hidden; }
.featured-news-small img { width: 100%; height: 118px; object-fit: cover; }
.featured-news-small .featured-overlay h2 { font-size: 13px; }

/* ---- GRID NEWS ---- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.news-grid-2 { grid-template-columns: repeat(2, 1fr); }
.news-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- LIST NEWS ---- */
.news-list-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.news-list-item:last-child { border-bottom: none; }
.news-list-img { width: 100px; height: 70px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.news-list-img img { width: 100%; height: 100%; object-fit: cover; }
.news-list-body { flex: 1; min-width: 0; }
.news-list-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--primary); }
.news-list-title { font-size: 13px; font-weight: 600; line-height: 1.3; margin: 3px 0; }
.news-list-title a:hover { color: var(--primary); }
.news-list-date { font-size: 11px; color: var(--text-muted); }

/* ---- TICKER NEWS ---- */
.news-ticker-section { background: #fff; margin-bottom: 20px; }
.news-ticker-inner { display: flex; flex-direction: column; gap: 0; }
.ticker-news-item { display: flex; align-items: flex-start; gap: 10px; padding: 8px 12px; border-bottom: 1px solid var(--border); }
.ticker-news-time { font-size: 11px; font-weight: 700; color: var(--primary); white-space: nowrap; padding-top: 2px; }
.ticker-news-title { font-size: 13px; }
.ticker-news-title a:hover { color: var(--primary); }

/* ---- SIDEBAR WIDGETS ---- */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.widget-title {
  background: var(--secondary);
  color: #fff;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 6px;
}
.widget-body { padding: 10px 15px; }
.widget-news-item { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.widget-news-item:last-child { border-bottom: none; }
.widget-news-img { width: 75px; height: 55px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }
.widget-news-img img { width: 100%; height: 100%; object-fit: cover; }
.widget-news-title { font-size: 12px; font-weight: 600; line-height: 1.3; }
.widget-news-date { font-size: 10px; color: var(--text-muted); margin-top: 3px; }

/* ---- MARKET TICKER ---- */
.market-bar {
  background: #1a1a1a;
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
}
.market-ticker { display: flex; gap: 30px; animation: market-scroll 30s linear infinite; white-space: nowrap; }
.market-ticker:hover { animation-play-state: paused; }
.market-item { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.market-name { font-weight: 600; }
.market-value { }
.market-change.up { color: #4caf50; }
.market-change.down { color: #f44336; }
@keyframes market-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- SLIDER ---- */
.news-slider { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 20px; }
.slider-container { display: flex; transition: transform 0.5s ease; }
.slide { min-width: 100%; position: relative; }
.slide img { width: 100%; height: 400px; object-fit: cover; }
.slide-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 40px 25px 25px;
  color: #fff;
}
.slide-overlay .cat { background: var(--primary); padding: 2px 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; display: inline-block; }
.slide-overlay h2 { font-size: 22px; line-height: 1.3; }
.slide-overlay .meta { font-size: 12px; opacity: 0.7; margin-top: 5px; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); color: #fff; border: none; width: 40px; height: 40px; cursor: pointer; font-size: 18px; z-index: 10; border-radius: 50%; }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-dots { position: absolute; bottom: 15px; right: 15px; display: flex; gap: 6px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; }
.slider-dot.active { background: var(--primary); }

/* ---- HABER DETAY ---- */
.news-detail { background: var(--white); border-radius: var(--radius); padding: 25px; box-shadow: var(--shadow); }
.news-detail-cat { display: inline-block; background: var(--primary); color: #fff; padding: 3px 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; border-radius: 2px; margin-bottom: 12px; }
.news-detail-title { font-size: 26px; font-weight: 800; line-height: 1.3; margin-bottom: 12px; color: var(--secondary); }
.news-detail-meta { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.news-detail-meta span { display: flex; align-items: center; gap: 4px; }
.news-detail-summary { font-size: 16px; font-weight: 600; color: var(--text); line-height: 1.6; margin-bottom: 15px; padding: 15px; background: #f9f9f9; border-left: 4px solid var(--primary); }
.news-detail-img { margin-bottom: 20px; border-radius: var(--radius); overflow: hidden; }
.news-detail-img img { width: 100%; max-height: 500px; object-fit: cover; }
.news-detail-img figcaption { font-size: 11px; color: var(--text-muted); padding: 6px 0; }
.news-detail-content { font-size: 15px; line-height: 1.8; color: var(--text); }
.news-detail-content p { margin-bottom: 15px; }
.news-detail-content h2 { font-size: 20px; margin: 20px 0 10px; color: var(--secondary); }
.news-detail-content h3 { font-size: 17px; margin: 15px 0 8px; }
.news-detail-content blockquote { border-left: 4px solid var(--primary); padding: 10px 20px; margin: 15px 0; background: #f9f9f9; font-style: italic; }
.news-detail-content img { border-radius: var(--radius); margin: 10px 0; }
.news-detail-tags { margin-top: 20px; padding-top: 15px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.tag-item { background: #f0f0f0; padding: 4px 10px; border-radius: 3px; font-size: 12px; color: var(--text-light); }
.tag-item:hover { background: var(--primary); color: #fff; }
.share-buttons { display: flex; gap: 8px; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--border); }
.share-btn { padding: 8px 15px; border-radius: 3px; color: #fff; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-link { background: #666; }

/* ---- GALERİ ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.3s; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 20px 10px 10px;
  color: #fff;
}
.gallery-card-cat { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--primary-light); }
.gallery-card-title { font-size: 12px; font-weight: 600; line-height: 1.3; }
.gallery-count { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.7); color: #fff; padding: 2px 6px; font-size: 11px; border-radius: 3px; }

/* ---- VİDEO GALERİ ---- */
.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.video-card { border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.video-thumb { position: relative; }
.video-thumb img { width: 100%; height: 160px; object-fit: cover; }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; background: rgba(255,0,0,0.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px;
}
.video-cat-badge { position: absolute; top: 8px; left: 8px; background: var(--primary); color: #fff; padding: 2px 8px; font-size: 10px; font-weight: 700; }
.video-info { padding: 10px; }
.video-title { font-size: 13px; font-weight: 600; line-height: 1.3; }

/* ---- YAZARLAR ---- */
.authors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.author-card { text-align: center; background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); transition: transform 0.2s; }
.author-card:hover { transform: translateY(-3px); }
.author-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 10px; border: 3px solid var(--primary); display: block; }
.author-name { font-size: 14px; font-weight: 700; }
.author-bio { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.author-socials { margin-top: 8px; display: flex; justify-content: center; gap: 8px; }

/* ---- KÖŞE YAZISI KARTLARI ---- */
.column-card { background: var(--white); border-radius: var(--radius); padding: 15px; box-shadow: var(--shadow); display: flex; gap: 12px; margin-bottom: 12px; }
.column-author-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.column-body { flex: 1; }
.column-author-name { font-size: 12px; font-weight: 700; color: var(--primary); }
.column-title { font-size: 14px; font-weight: 600; line-height: 1.3; margin-top: 4px; }
.column-date { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ---- QUICK LINKS ---- */
.quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
.quick-link-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  height: 100px; display: flex; align-items: center; justify-content: center;
}
.quick-link-item img { position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.quick-link-item span { position: relative; color: #fff; font-weight: 700; font-size: 13px; text-align: center; }

/* ---- BURÇLAR ---- */
.horoscope-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.horoscope-item { text-align: center; padding: 10px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transition: background 0.2s; }
.horoscope-item:hover { background: var(--primary); color: #fff; }
.horoscope-item img { width: 45px; height: 45px; margin-bottom: 5px; }
.horoscope-item span { font-size: 12px; font-weight: 600; display: block; }

/* ---- FORM ELEMENTS ---- */
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.form-control {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 14px; font-family: var(--font);
  outline: none; transition: border-color 0.2s;
}
.form-control:focus { border-color: var(--primary); }
textarea.form-control { resize: vertical; min-height: 100px; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border: none; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { background: var(--secondary); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }

/* ---- YORUMLAR ---- */
.comment { display: flex; gap: 12px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.comment-avatar { width: 45px; height: 45px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.comment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.comment-name { font-size: 13px; font-weight: 700; }
.comment-date { font-size: 11px; color: var(--text-muted); }
.comment-text { font-size: 13px; line-height: 1.5; }

/* ---- PUAN DURUMU / BORSA / VB ---- */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--secondary); color: #fff; padding: 8px 10px; font-size: 12px; text-align: left; }
.data-table td { padding: 8px 10px; font-size: 13px; border-bottom: 1px solid var(--border); }
.data-table tr:hover td { background: #f9f9f9; }
.up { color: #4caf50; font-weight: 600; }
.down { color: #f44336; font-weight: 600; }

/* ---- PAGINATION ---- */
.pagination-nav { display: flex; justify-content: center; margin: 20px 0; }
.pagination { display: flex; gap: 5px; }
.pagination li { }
.pagination li a, .pagination li.active a {
  display: block; padding: 7px 13px; border-radius: 3px;
  background: var(--white); border: 1px solid var(--border);
  font-size: 13px; color: var(--text);
}
.pagination li:hover a, .pagination li.active a { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; gap: 5px; align-items: center; font-size: 12px; color: var(--text-muted); margin-bottom: 15px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ---- FOOTER ---- */
footer {
  background: var(--secondary);
  color: #aaa;
  padding: 40px 0 20px;
  margin-top: 30px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-logo { height: 45px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 13px; line-height: 1.6; color: #888; }
.footer-socials { display: flex; gap: 10px; margin-top: 12px; }
.footer-social-btn { width: 34px; height: 34px; background: #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 14px; }
.footer-social-btn:hover { background: var(--primary); color: #fff; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; text-transform: uppercase; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { color: #888; font-size: 13px; display: flex; align-items: center; gap: 5px; }
.footer-col ul li a:before { content: "›"; color: var(--primary); }
.footer-col ul li a:hover { color: var(--white); }
.footer-links { display: flex; flex-wrap: wrap; gap: 5px; }
.footer-links a { color: #777; font-size: 12px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
}
.footer-bottom a { color: #888; }

/* ---- MOBILE BOTTOM NAV ---- */
.mobile-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--secondary); z-index: 999;
  border-top: 2px solid var(--primary);
}
.mobile-nav ul { display: flex; }
.mobile-nav ul li { flex: 1; }
.mobile-nav ul li a { display: flex; flex-direction: column; align-items: center; padding: 8px 5px; color: #aaa; font-size: 10px; gap: 3px; }
.mobile-nav ul li a span { font-size: 20px; }
.mobile-nav ul li a:hover, .mobile-nav ul li.active a { color: var(--primary); }

/* ---- ALERTS ---- */
.alert { padding: 12px 15px; border-radius: var(--radius); margin-bottom: 15px; font-size: 13px; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #90caf9; }

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.bg-white { background: var(--white); }
.mt-10 { margin-top: 10px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */
@media (max-width: 1024px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .horoscope-grid { grid-template-columns: repeat(4, 1fr); }
  .authors-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: block; background: none; border: none; cursor: pointer; padding: 10px; }
  .hamburger span { display: block; width: 25px; height: 2px; background: #fff; margin: 5px 0; }
  .main-nav .nav-list { display: none; flex-direction: column; }
  .main-nav .nav-list.open { display: flex; }
  .main-nav ul li a { padding: 10px 15px; border-top: 1px solid #333; }
  .featured-news-grid { grid-template-columns: 1fr; }
  .featured-news-big img { height: 260px; }
  .sidebar { display: none; }
  .content-area { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .horoscope-grid { grid-template-columns: repeat(3, 1fr); }
  .authors-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .search-form input { width: 150px; }
  .footer-top { grid-template-columns: 1fr; }
  .mobile-nav { display: block; }
  body { padding-bottom: 60px; }
  .top-bar { display: none; }
  .news-detail-title { font-size: 20px; }
  .slide img { height: 220px; }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .horoscope-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .header-right .search-form, .header-right .date-widget { display: none; }
}
