/* === STYLE.CSS SÜRÜM: 2026-08-19-v2 === (bu satır sadece doğrulama içindir) */

/* [hidden] özelliği her zaman kazanmalı — banner'ların gizlenmemesi hatasını önler */
[hidden] { display: none !important; }

:root {
  --pink: #ff6f91;
  --pink-light: #ffe3ec;
  --coral: #ff9a76;
  --cream: #fff8f3;
  --gold: #d4a94b;
  --ink: #3a2c31;
  --ink-soft: #7a6a70;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 8px 24px rgba(255, 111, 145, 0.12);
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 760px; }

a { color: inherit; text-decoration: none; }

/* ---------- HEADER ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, black calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(90deg, black calc(100% - 24px), transparent);
}
.main-nav::-webkit-scrollbar { display: none; }
.main-nav > a, .nav-dropdown-trigger {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 6px 8px;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.main-nav > a:hover, .nav-dropdown-trigger:hover { color: var(--pink); border-color: var(--pink); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  padding: 8px 0;
  z-index: 9000;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--ink);
  border-bottom: none !important;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--pink-light); color: var(--pink); }

.search-form {
  display: flex;
  align-items: center;
  background: var(--pink-light);
  border-radius: 999px;
  padding: 4px 6px 4px 16px;
}
.search-form input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  width: 130px;
}
.search-form button {
  border: none;
  background: var(--pink);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---------- NEWS TICKER (kayan gündem şeridi) ---------- */
.news-ticker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 8px 10px 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pink);
  background: var(--pink-light);
  padding: 6px 14px;
  border-radius: 999px;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulseDot 1.6s infinite;
}
.ticker-viewport {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 24px, black calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 24px, black calc(100% - 24px), transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 38s linear infinite;
}
.news-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.ticker-track a:hover { color: var(--pink); }
.ticker-sep { color: var(--coral); font-size: 0.55rem; opacity: 0.6; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(255,111,145,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255,111,145,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,111,145,0); }
}

/* ---------- MASTHEAD (manşet: ana haber + gündem listesi) ---------- */
.masthead {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 22px;
  margin: 22px 0 32px;
  align-items: stretch;
}
.masthead-main {
  position: relative;
  display: block;
  min-height: 460px;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
}
.masthead-main::before {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 28px;
  background: conic-gradient(from 0deg, var(--pink), var(--gold), var(--coral), var(--pink));
  opacity: 0.55;
  filter: blur(14px);
  animation: rotateGlow 9s linear infinite;
}
.masthead-main-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 0.35s ease-out;
  will-change: transform;
}
.masthead-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,10,15,0.82) 0%, rgba(20,10,15,0.35) 55%, rgba(20,10,15,0.05) 80%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
}
.masthead-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.95);
}
.live-badge .pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulseDot 1.6s infinite;
}
.masthead-main-overlay h1 {
  font-family: var(--font-head);
  font-size: 2.3rem;
  line-height: 1.15;
  margin: 0 0 12px;
}
.masthead-main-overlay p {
  max-width: 600px;
  opacity: 0.92;
  font-size: 0.98rem;
  margin: 0 0 14px;
}
.masthead-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  opacity: 0.85;
}
.meta-dot { opacity: 0.6; }

.masthead-side {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  gap: 4px;
}
.masthead-side-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin: 2px 0 10px;
  color: var(--ink);
}
.side-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 8px;
  border-radius: 14px;
  transition: background 0.2s;
}
.side-item:hover { background: var(--pink-light); }
.side-item + .side-item { border-top: 1px solid #f2e9ec; }
.side-thumb {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-light), #ffd6e0);
  background-size: cover;
  background-position: center;
}
.side-text { min-width: 0; }
.side-cat {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.side-text h3 {
  font-size: 0.87rem;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
  margin: 3px 0 4px;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-time { font-size: 0.72rem; color: var(--ink-soft); }

@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge {
  display: inline-block;
  background: var(--white);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
  letter-spacing: 0.02em;
}

/* ---------- SECTION TITLES ---------- */
.section-title, .page-heading {
  font-family: var(--font-head);
  font-size: 1.7rem;
  margin: 36px 0 20px;
  color: var(--ink);
}
.page-heading { font-size: 2rem; }

/* ---------- POST GRID ---------- */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.post-card:hover { transform: translateY(-4px); }
.post-card-image {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  height: 160px;
  background: linear-gradient(135deg, var(--pink-light), #ffd6e0);
  background-size: cover;
  background-position: center;
}
.post-card-body { padding: 16px 18px 20px; }
.post-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin: 0 0 8px;
  line-height: 1.35;
}
.post-card-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.read-more {
  color: var(--pink);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- ADSENSE REKLAM ALANLARI ---------- */
.ad-container {
  margin: 28px 0;
  text-align: center;
  overflow: hidden;
  min-height: 90px;
}
.ad-container-grid {
  grid-column: 1 / -1;
  margin: 8px 0;
}
.post-grid-full { grid-column: 1 / -1; }
.ad-container ins.adsbygoogle {
  margin: 0 auto;
}

/* ---------- SINGLE POST ---------- */
.single-post h1 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  margin: 12px 0 6px;
}
.post-meta { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 20px; }
.post-cover {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 20px;
  max-height: 420px;
  object-fit: cover;
}
.post-content { font-size: 1.02rem; }
.post-content p { margin: 0 0 18px; }
.post-content img { max-width: 100%; border-radius: 12px; margin: 12px 0; }
.post-content h2, .post-content h3 { font-family: var(--font-head); margin-top: 28px; }
.post-content blockquote {
  border-left: 4px solid var(--pink);
  padding-left: 16px;
  color: var(--ink-soft);
  font-style: italic;
}

/* ---------- PAGINATION / EMPTY ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  font-size: 0.9rem;
}
.pagination a { color: var(--pink); font-weight: 600; }

/* ---------- INFINITE SCROLL ---------- */
.infinite-status {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  margin: 30px 0 10px;
}
.infinite-spinner {
  display: flex;
  gap: 8px;
}
.infinite-spinner span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--pink);
  animation: bounceDot 1.1s infinite ease-in-out both;
}
.infinite-spinner span:nth-child(1) { animation-delay: -0.24s; background: var(--pink); }
.infinite-spinner span:nth-child(2) { animation-delay: -0.12s; background: var(--coral); }
.infinite-spinner span:nth-child(3) { animation-delay: 0s; background: var(--gold); }
@keyframes bounceDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}
.infinite-end {
  color: var(--ink-soft);
  font-size: 0.9rem;
  text-align: center;
}
.load-more-btn {
  background: white;
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.load-more-btn:hover { background: var(--pink); color: white; }
.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 8px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8d5db, transparent);
}
.empty-state, .not-found {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}
.not-found h1 { font-family: var(--font-head); font-size: 3rem; color: var(--pink); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--white);
  margin-top: 60px;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #f0e3dc;
}
.footer-logo-img {
  height: 34px;
  width: auto;
  margin: 0 auto;
  opacity: 0.9;
}
.footer-columns {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0 8px;
}
.footer-col { min-width: 130px; }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin: 0 0 10px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 6px; }
.footer-col-links a {
  font-size: 0.83rem;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-col-links a:hover { color: var(--pink); }
.footer-cats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.copyright { font-size: 0.78rem; color: #b3a29a; }

/* ================================================== */
/* ADMIN PANEL                                          */
/* ================================================== */
.admin-body {
  background: #f6f3f8;
  font-family: var(--font-body);
  margin: 0;
}
.login-box {
  max-width: 380px;
  margin: 10vh auto;
  background: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}
.login-logo {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--pink);
}
.login-logo span { color: var(--coral); }
.login-sub { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.9rem; }
.login-error {
  background: #ffe3e3;
  color: #c0392b;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.login-box form { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.login-box label { font-size: 0.8rem; color: var(--ink-soft); margin-top: 8px; }
.login-box input, .admin-main input, .admin-main select, .admin-main textarea {
  padding: 10px 12px;
  border: 1px solid #e5dbe0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  width: 100%;
}
.login-box button {
  margin-top: 18px;
  background: var(--pink);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 230px;
  background: white;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 12px rgba(0,0,0,0.03);
}
.admin-sidebar nav { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; flex: 1; }
.admin-sidebar nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
  background: var(--pink-light);
  color: var(--pink);
}
.logout-form { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid #eee; padding-top: 16px; }
.admin-user { font-size: 0.82rem; color: var(--ink-soft); }
.logout-form button {
  background: #f3e9e4;
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
}

.admin-main { flex: 1; padding: 36px 40px; }
.admin-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-header-row h1 { font-family: var(--font-head); margin: 0; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 30px; }
.stat-card {
  background: white;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--pink); font-family: var(--font-head); }
.stat-label { font-size: 0.78rem; color: var(--ink-soft); }

.btn-primary {
  background: var(--pink);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-secondary {
  background: #eee;
  color: var(--ink-soft);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.admin-table th, .admin-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid #f2ecee;
}
.admin-table th { color: var(--ink-soft); font-weight: 600; background: #fbf7f9; }
.status-pill { padding: 3px 10px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.status-live { background: #dcf6e6; color: #1f9d55; }
.status-draft { background: #fdf0d5; color: #b8860b; }
.table-actions { display: flex; gap: 10px; align-items: center; }
.table-actions form { display: inline; }
.table-actions a, .table-actions button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.empty-row { text-align: center; color: var(--ink-soft); padding: 30px; }

.post-form { display: flex; flex-direction: column; gap: 6px; max-width: 760px; }
.post-form label { font-size: 0.85rem; font-weight: 600; margin-top: 14px; color: var(--ink); }
.post-form .hint { font-weight: 400; color: var(--ink-soft); font-size: 0.78rem; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-weight: 500 !important; }
.checkbox-label input { width: auto; }
.current-cover { max-width: 220px; border-radius: 10px; margin-top: 8px; }
#editor { background: white; min-height: 280px; border-radius: 0 0 10px 10px; }
.ql-toolbar { border-radius: 10px 10px 0 0; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { position: fixed; left: -260px; height: 100%; z-index: 50; transition: 0.2s; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .masthead { grid-template-columns: 1fr; }
  .masthead-main { min-height: 380px; }
  .masthead-side { flex-direction: row; overflow-x: auto; gap: 12px; }
  .masthead-side-title { display: none; }
  .side-item { flex-direction: column; min-width: 140px; border-top: none !important; }
  .side-thumb { width: 100%; height: 90px; }
}
@media (max-width: 640px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: white;
    flex-direction: column;
    padding: 12px 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    z-index: 200;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav > a { padding: 12px 24px; border-bottom: none; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-trigger { display: block; padding: 12px 24px; }
  .nav-dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: var(--pink-light);
    padding: 4px 0;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 9px 36px; }
  .nav-toggle { display: block; }
  .search-form { display: none; }
  .logo-img { height: 34px; }
  .post-grid { grid-template-columns: 1fr; }
  .masthead-main-overlay h1 { font-size: 1.5rem; }
  .masthead-main { min-height: 320px; }
  .news-ticker { padding: 8px 6px 8px 12px; gap: 10px; }
  .ticker-label { font-size: 0.62rem; padding: 5px 10px; }
  .admin-main { padding: 24px 18px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- SPLASH SCREEN (açılış animasyonu) ---------- */
#splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, var(--cream), #ffe9e0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s;
}
#splash-screen.splash-hide { opacity: 0; visibility: hidden; }
.splash-logo {
  width: 180px;
  height: auto;
  animation: splashPulse 1.4s ease-in-out infinite;
}
@keyframes splashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.splash-spinner { display: flex; gap: 10px; }
.splash-spinner span {
  width: 12px; height: 12px;
  border-radius: 50%;
  animation: bounceDot 1.1s infinite ease-in-out both;
}
.splash-spinner span:nth-child(1) { background: var(--pink); animation-delay: -0.24s; }
.splash-spinner span:nth-child(2) { background: var(--coral); animation-delay: -0.12s; }
.splash-spinner span:nth-child(3) { background: var(--gold); animation-delay: 0s; }

/* ---------- TOP BAR (tarih/saat, kur, hava, sosyal) ---------- */
.site-topbar {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 24px;
  overflow: hidden;
}
.topbar-datetime {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  flex-shrink: 0;
  white-space: nowrap;
}
.topbar-widgets {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.topbar-ticker-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, black 12px, black calc(100% - 12px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12px, black calc(100% - 12px), transparent);
}
.topbar-ticker-track {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 22s linear infinite;
}
.site-topbar:hover .topbar-ticker-track { animation-play-state: paused; }
.topbar-weather-widget { flex-shrink: 0; white-space: nowrap; }
.topbar-widget span { color: #fff; font-weight: 600; }
.topbar-social {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.topbar-social a {
  color: rgba(255,255,255,0.85);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.topbar-social a:hover { background: var(--pink); color: white; }

/* Mobil: topbar sadece saat + sosyal, kur/hava gizle */
@media (max-width: 768px) {
  .topbar-inner { padding: 6px 16px; gap: 10px; }
  .topbar-widgets { display: none; }
  .topbar-datetime { font-size: 0.72rem; }
}
/* Çok küçük ekran: saati de gizle, sadece sosyal medya */
@media (max-width: 380px) {
  .topbar-datetime { display: none; }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  z-index: 500;
}
.cookie-banner p { margin: 0; font-size: 0.85rem; color: var(--ink); flex: 1; min-width: 200px; }
.cookie-banner .btn-primary { white-space: nowrap; }
.cookie-reopen {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 500;
}

/* ---------- QUICK CATEGORIES (ikonlu kategori şeridi) ---------- */
.quick-cats {
  display: flex;
  gap: 14px;
  margin: 28px 0;
  overflow-x: auto;
  padding-bottom: 4px;
}
.quick-cat {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 22px 14px;
  border-radius: 18px;
  color: white;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.quick-cat:hover { transform: translateY(-4px); }
.quick-cat-icon { font-size: 1.8rem; }
.quick-cat-label { font-weight: 700; font-size: 0.85rem; }

/* ---------- HOROSCOPE (burç yorumları) ---------- */
.horoscope-section { margin: 40px 0; }
.horoscope-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.zodiac-card {
  background: #2b2440;
  border: none;
  border-radius: 14px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: white;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}
.zodiac-card:hover { transform: translateY(-3px); }
.zodiac-card.active { background: var(--pink); }
.zodiac-icon { font-size: 1.5rem; }
.zodiac-name { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; }
.horoscope-text {
  margin-top: 18px;
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 0.95rem;
  min-height: 24px;
}

/* ---------- DISCOVER (Daha Fazla Keşfet) ---------- */
.discover-section { margin: 40px 0; }
.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.discover-card {
  min-height: 160px;
  border-radius: 18px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.discover-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.35), transparent 60%);
}
.discover-card span {
  position: relative;
  z-index: 1;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .horoscope-grid { grid-template-columns: repeat(4, 1fr); }
  .discover-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .quick-cat { min-width: 100px; padding: 16px 10px; }
  .horoscope-grid { grid-template-columns: repeat(3, 1fr); }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; }
}

/* ---------- BİLDİRİM İZNİ BANNER ---------- */
.notif-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  padding: 18px 20px;
  z-index: 490;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: notifSlideIn 0.4s ease;
}
@keyframes notifSlideIn {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.notif-icon { font-size: 1.6rem; }
.notif-banner p { margin: 0; font-size: 0.85rem; color: var(--ink); }
.notif-buttons { display: flex; gap: 10px; justify-content: flex-end; }
.notif-buttons button { font-size: 0.82rem; padding: 8px 16px; }
@media (max-width: 640px) {
  .notif-banner { left: 12px; right: 12px; max-width: none; bottom: 90px; }
}

/* ---------- İLETİŞİM FORMU ---------- */
.contact-form { display: flex; flex-direction: column; gap: 6px; max-width: 500px; }
.contact-form label { font-size: 0.85rem; font-weight: 600; margin-top: 10px; color: var(--ink); }
.contact-form input[type=text], .contact-form input[type=email], .contact-form textarea {
  padding: 10px 12px; border: 1px solid #e5dbe0; border-radius: 10px; font-family: var(--font-body); font-size: 0.92rem;
}
.contact-form button { margin-top: 18px; align-self: flex-start; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.footer-cats + .copyright, .copyright { font-size: 0.78rem; color: #b3a29a; }
.copyright a { color: #b3a29a; text-decoration: underline; }
.copyright a:hover { color: var(--pink); }

/* ---------- İÇ BAĞLANTI VE OKUMA ÖNERİSİ KUTUSU ---------- */
.auto-internal-link { color: var(--pink); font-weight: 600; text-decoration: underline; text-decoration-style: dotted; }
.reading-suggestion-box {
  background: var(--pink-light);
  border-left: 4px solid var(--pink);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0;
}
.reading-suggestion-box p { margin: 0 0 8px; font-size: 0.8rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 0.03em; }
.reading-suggestion-box a { font-weight: 600; color: var(--ink); display: block; margin-bottom: 4px; }
.reading-suggestion-box a:hover { color: var(--pink); }

/* ---------- OKUMA İLERLEME ÇUBUĞU (NYT/Medium tarzı) ---------- */
.reading-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  z-index: 600;
  transition: width 0.1s ease-out;
}

/* ---------- EDİTÖR İMZASI (E-A-T sinyali) ---------- */
.editor-byline {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 14px 0 18px;
}
.editor-avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.editor-byline-text { font-size: 0.85rem; color: var(--ink); flex: 1; min-width: 0; }
.editor-byline-text .post-meta { margin: 2px 0 0; font-size: 0.78rem; color: var(--ink-soft); }
.save-btn {
  background: var(--pink-light);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.save-btn:hover { transform: scale(1.1); }
.save-btn.saved { background: #dcf6e6; }
.saved-link {
  font-size: 1.2rem;
  margin-left: 4px;
  text-decoration: none;
}

/* ---------- PAYLAŞIM BUTONLARI ---------- */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f2ecee;
}
.share-label { font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); }
.share-btn {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: white;
  text-decoration: none;
}
.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-x { background: #000; }
.share-pin { background: #e60023; }
.share-copy { background: #eee; color: var(--ink); }

/* ---------- EDİTÖR BİO KUTUSU (yazı sonunda) ---------- */
.editor-bio-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--pink-light);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 24px 0;
}
.editor-bio-box p { margin: 4px 0 0; font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- EN ÇOK OKUNANLAR (BBC tarzı) ---------- */
.most-read-box { margin: 30px 0; }
.most-read-list { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.most-read-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f2ecee;
}
.most-read-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-light);
  -webkit-text-stroke: 1.5px var(--pink);
  width: 30px;
  flex-shrink: 0;
  text-align: center;
}
.most-read-list a { flex: 1; font-weight: 700; color: #1a1116; font-size: 0.95rem; }
.most-read-list a:hover { color: var(--pink); }
.most-read-views { font-size: 0.75rem; color: var(--ink-soft); flex-shrink: 0; white-space: nowrap; }

@media (max-width: 640px) {
  .editor-byline { flex-wrap: wrap; }
  .share-bar { gap: 6px; }
  .share-btn { font-size: 0.72rem; padding: 5px 10px; }
  .most-read-views { display: none; }
}

/* ---------- YORUMLAR ---------- */
.comments-section { margin: 30px 0; }
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.comment-form input[type=text], .comment-form textarea {
  padding: 10px 12px;
  border: 1px solid #e5dbe0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  resize: vertical;
}
.comment-form button { align-self: flex-start; }
.comments-empty { color: var(--ink-soft); font-size: 0.9rem; text-align: center; padding: 16px; }
.comments-list { display: flex; flex-direction: column; gap: 16px; }
.comment-item { display: flex; gap: 12px; }
.comment-avatar {
  width: 36px; height: 36px; min-width: 36px;
  border-radius: 50%;
  color: white;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.comment-body { flex: 1; min-width: 0; }
.comment-body strong { font-size: 0.88rem; color: var(--ink); }
.comment-time { font-size: 0.72rem; color: var(--ink-soft); margin-left: 8px; }
.comment-body p { margin: 4px 0 0; font-size: 0.88rem; color: var(--ink); line-height: 1.5; }
