/* ============================================
   CASIBOM BLOG — Dark Luxury Editorial Theme
   ============================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-dark: #9a7a2e;
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #18181d;
  --bg-card: #141417;
  --border: rgba(201,168,76,0.15);
  --border-2: rgba(255,255,255,0.07);
  --text: #e8e8e8;
  --text-muted: #888;
  --text-dim: #555;
  --red: #e74c3c;
  --green: #2ecc71;
  --purple: #9b59b6;
  --blue: #3498db;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --container: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── UTILITIES ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }

.gold { color: var(--gold); }
.badge {
  display: inline-block; padding: 3px 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; border-radius: 2px;
  background: rgba(201,168,76,0.12); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 36px;
}
.topbar-links a {
  margin-left: 20px; color: var(--text-muted);
  font-size: 11px; letter-spacing: .05em; text-transform: uppercase;
}
.topbar-links a:hover { color: var(--gold); }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,11,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 32px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 22px; color: var(--gold);
  animation: spin 20s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.logo-text {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; letter-spacing: .05em;
  color: #fff;
}
.logo-sub {
  font-family: var(--font-body); font-weight: 300;
  font-size: 10px; letter-spacing: .3em;
  color: var(--gold); display: block;
  margin-top: -4px; text-transform: uppercase;
}

.main-nav {
  display: flex; align-items: center; gap: 4px;
  flex: 1; overflow-x: auto;
}
.main-nav::-webkit-scrollbar { display: none; }

.nav-cat {
  white-space: nowrap; padding: 6px 14px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); border-radius: 2px;
  border: 1px solid transparent;
  transition: all .2s;
}
.nav-cat:hover {
  color: var(--cat-color, var(--gold));
  border-color: var(--cat-color, var(--gold));
  background: rgba(255,255,255,0.04);
}

.mobile-menu-btn {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--bg-2); border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-nav a {
  padding: 12px 0; border-bottom: 1px solid var(--border-2);
  color: var(--text-muted); font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase;
}
.mobile-nav.open { display: flex; }

/* ── HERO / FEATURED ── */
.hero-section { padding: 64px 0 48px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-main {
  grid-row: 1 / 3;
  position: relative; overflow: hidden;
  min-height: 480px;
  background: var(--bg-3);
}
.hero-main .post-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.5;
  transition: transform .6s ease, opacity .4s;
}
.hero-main:hover .post-thumb { transform: scale(1.03); opacity: 0.6; }
.hero-main .post-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.97) 0%, rgba(10,10,11,0.3) 60%, transparent 100%);
}
.hero-main .post-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px;
}
.hero-main .post-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700; line-height: 1.25;
  color: #fff; margin: 12px 0 16px;
}
.hero-main .post-title:hover { color: var(--gold); }
.hero-meta { display: flex; align-items: center; gap: 12px; }
.post-date { font-size: 12px; color: var(--text-dim); }
.post-views { font-size: 12px; color: var(--text-dim); }
.post-views::before { content: '👁 '; }

.hero-side-post {
  background: var(--bg-card); padding: 24px;
  border-left: 1px solid var(--border-2);
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer; transition: background .2s;
  position: relative; overflow: hidden;
}
.hero-side-post:hover { background: var(--bg-3); }
.hero-side-post .thumb-sm {
  width: 100%; height: 140px; object-fit: cover;
  border-radius: var(--radius); opacity: 0.7;
  transition: opacity .3s;
}
.hero-side-post:hover .thumb-sm { opacity: 1; }
.side-post-title {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  line-height: 1.35; color: var(--text);
  transition: color .2s;
}
.hero-side-post:hover .side-post-title { color: var(--gold); }

/* ── SECTION LABELS ── */
.section-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  display: flex; align-items: center; gap: 14px;
}
.section-title::before {
  content: ''; display: block;
  width: 4px; height: 32px;
  background: var(--gold);
  border-radius: 2px;
}
.section-more {
  font-size: 12px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.section-more:hover { border-color: var(--gold); }

/* ── POST CARDS ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.posts-grid-4 { grid-template-columns: repeat(4, 1fr); }

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: var(--shadow-gold);
}

.card-thumb-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-3);
}
.card-thumb {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.75;
  transition: transform .4s, opacity .3s;
}
.post-card:hover .card-thumb { transform: scale(1.05); opacity: 0.9; }
.card-category {
  position: absolute; top: 12px; left: 12px;
}

.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.card-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  line-height: 1.35; color: var(--text);
  transition: color .2s;
}
.post-card:hover .card-title { color: var(--gold); }
.card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-2);
  margin-top: auto;
}
.card-footer .post-date { font-size: 12px; color: var(--text-dim); }
.read-more {
  font-size: 12px; color: var(--gold);
  letter-spacing: .08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.post-card:hover .read-more { gap: 10px; }

/* ── FEATURED BAND ── */
.featured-band {
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(201,168,76,0.08) 50%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  margin: 48px 0;
}

/* ── LIST POSTS (sidebar layout) ── */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 48px 0;
}

.post-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-2);
  transition: opacity .2s;
}
.post-list-item:hover { opacity: 0.85; }
.post-list-item:last-child { border-bottom: none; }
.list-thumb {
  aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius);
  opacity: 0.75; transition: opacity .3s;
}
.post-list-item:hover .list-thumb { opacity: 1; }
.list-body { display: flex; flex-direction: column; gap: 8px; }
.list-title {
  font-family: var(--font-display); font-size: 20px;
  font-weight: 700; line-height: 1.3;
  transition: color .2s;
}
.post-list-item:hover .list-title { color: var(--gold); }
.list-excerpt { font-size: 14px; color: var(--text-muted); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.widget-header {
  background: var(--bg-3); padding: 14px 20px;
  font-family: var(--font-display); font-size: 15px;
  font-weight: 700; letter-spacing: .04em;
  border-bottom: 1px solid var(--border-2);
  color: var(--gold);
}
.widget-body { padding: 16px 20px; }

.popular-post {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid var(--border-2);
  align-items: flex-start;
}
.popular-post:last-child { border-bottom: none; }
.popular-num {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 900; color: var(--border);
  line-height: 1; flex-shrink: 0; width: 30px;
}
.popular-title {
  font-size: 13px; line-height: 1.5;
  transition: color .2s;
}
.popular-post:hover .popular-title { color: var(--gold); }

.cat-list { display: flex; flex-direction: column; gap: 4px; }
.cat-item {
  display: flex; justify-content: space-between;
  align-items: center; padding: 10px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 13px; color: var(--text-muted);
  transition: color .2s;
}
.cat-item:hover { color: var(--text); }
.cat-item:last-child { border-bottom: none; }
.cat-count {
  background: var(--bg-3); padding: 2px 8px;
  border-radius: 10px; font-size: 11px;
  color: var(--text-dim);
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  padding: 5px 12px; font-size: 12px;
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 20px; color: var(--text-muted);
  transition: all .2s; cursor: pointer;
}
.tag-pill:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold); color: var(--gold);
}

/* ── SINGLE POST ── */
.post-hero {
  position: relative; height: 480px; overflow: hidden;
  background: var(--bg-3);
}
.post-hero img {
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.4;
}
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,11,0.2) 0%, rgba(10,10,11,0.9) 70%, var(--bg) 100%);
}
.post-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px;
}
.post-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; line-height: 1.2;
  color: #fff; margin: 16px 0 20px;
  max-width: 800px;
}

.post-content-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 48px 0;
}

.post-body {
  font-size: 17px; line-height: 1.85;
  color: #d4d4d4;
}
.post-body h2 {
  font-family: var(--font-display); font-size: 28px;
  font-weight: 700; color: var(--text);
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.post-body h3 {
  font-family: var(--font-display); font-size: 22px;
  font-weight: 700; color: var(--text);
  margin: 32px 0 16px;
}
.post-body p { margin-bottom: 24px; }
.post-body ul, .post-body ol {
  padding-left: 24px; margin-bottom: 24px;
}
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px; margin: 32px 0;
  background: var(--bg-2);
  font-style: italic; color: var(--text-muted);
  font-family: var(--font-display); font-size: 19px;
}
.post-body strong { color: var(--text); }
.post-body a { color: var(--gold); }
.post-body a:hover { text-decoration: underline; }
.post-body img {
  border-radius: var(--radius); margin: 24px 0;
  border: 1px solid var(--border-2);
}

.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; }

/* ── PAGINATION ── */
.pagination {
  display: flex; justify-content: center;
  gap: 8px; padding: 48px 0;
}
.page-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border-2);
  background: var(--bg-card); border-radius: var(--radius);
  color: var(--text-muted); font-size: 14px;
  cursor: pointer; transition: all .2s;
}
.page-btn:hover, .page-btn.active {
  background: var(--gold); color: var(--bg);
  border-color: var(--gold); font-weight: 700;
}

/* ── PLACEHOLDER THUMB ── */
.thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  font-size: 40px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer-brand .footer-desc {
  font-size: 14px; color: var(--text-dim);
  margin-top: 16px; line-height: 1.7;
  max-width: 280px;
}
.footer-links h4 {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.footer-links a {
  display: block; font-size: 13px;
  color: var(--text-dim); padding: 5px 0;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }
.footer-newsletter h4 {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.footer-newsletter p { font-size: 13px; color: var(--text-dim); margin-bottom: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; background: var(--bg-3);
  border: 1px solid var(--border-2); border-radius: var(--radius);
  padding: 10px 14px; color: var(--text); font-size: 13px;
  font-family: var(--font-body);
  transition: border-color .2s;
}
.newsletter-form input:focus {
  outline: none; border-color: var(--gold);
}
.newsletter-form button {
  background: var(--gold); color: var(--bg);
  border: none; border-radius: var(--radius);
  padding: 10px 18px; font-size: 16px;
  cursor: pointer; font-weight: 700;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding: 24px 0;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-disclaimer { max-width: 400px; text-align: right; }

/* ── SEARCH ── */
.search-bar {
  position: relative; margin-bottom: 32px;
}
.search-bar input {
  width: 100%; background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 14px 48px 14px 18px;
  color: var(--text); font-size: 15px; font-family: var(--font-body);
  transition: border-color .2s;
}
.search-bar input:focus { outline: none; border-color: var(--gold); }
.search-bar button {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--gold); cursor: pointer; font-size: 18px;
}

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: var(--gold); color: var(--bg);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 20px; font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0; transform: translateY(20px);
  transition: all .3s; z-index: 50;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); }

/* ── BREAKING TICKER ── */
.breaking-ticker {
  background: var(--gold); color: var(--bg);
  font-size: 13px; font-weight: 700;
  overflow: hidden; white-space: nowrap;
}
.ticker-inner { display: flex; }
.ticker-label {
  background: rgba(0,0,0,0.2); padding: 8px 20px;
  letter-spacing: .1em; text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-track {
  overflow: hidden; flex: 1; padding: 8px 0;
}
.ticker-items {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-items span { margin: 0 40px; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ── SECTIONS ── */
.section { padding: 48px 0; }

/* ── LOADING SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-3) 50%, var(--bg-card) 75%);
  background-size: 400% 100%;
  animation: skeleton-load 1.5s ease infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-load { 0% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-main { min-height: 360px; grid-row: 1; }
  .hero-side-post { border-left: none; border-top: 1px solid var(--border-2); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
  .post-content-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .post-list-item { grid-template-columns: 1fr; }
  .post-hero-content { padding: 24px; }
  .sidebar { display: flex; }
  .topbar { display: none; }
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb { margin-bottom: 12px; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 6px; list-style: none; padding: 0; margin: 0;
}
.breadcrumb li {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-dim);
}
.breadcrumb li:not(:last-child)::after {
  content: '/'; color: var(--text-dim); font-size: 11px;
}
.breadcrumb li a {
  color: var(--text-dim); transition: color .2s;
}
.breadcrumb li a:hover { color: var(--gold); }
.breadcrumb li[aria-current] span { color: var(--text-muted); }

/* ── SKIP LINK (erişilebilirlik) ────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--gold); color: var(--bg);
  padding: 8px 16px; border-radius: 0 0 4px 4px;
  font-weight: 700; font-size: 13px; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── SCREEN READER ONLY ─────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── POST NAV ───────────────────────────────────────────── */
.post-nav a:hover { border-color: var(--border) !important; }

/* ── GÖRSEL AĞIRLIKLI KARTLAR ─────────────────────────────── */

/* Kart boyları daha uzun, görsel alanı büyük */
.post-card .card-thumb-wrap {
  aspect-ratio: 16 / 10;
}

/* Grid 2 sütun ortada büyük kart desteği */
.posts-grid-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
}
.posts-grid-hero .post-card:first-child {
  grid-column: span 2;
}
.posts-grid-hero .post-card:first-child .card-thumb-wrap {
  aspect-ratio: 16 / 8;
}
.posts-grid-hero .post-card:first-child .card-title {
  font-size: 24px;
}

/* ── MASONRY-STYLE GÖRSEL LİSTE ───────────────────────────── */
.post-list-item .list-thumb {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  object-fit: cover;
  opacity: 0.85;
  transition: opacity .3s, transform .4s;
}
.post-list-item:hover .list-thumb {
  opacity: 1;
  transform: scale(1.02);
}

/* ── INFO BOX (bot içeriklerinde) ─────────────────────────── */
.post-body .info-box {
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.04));
  border: 1px solid rgba(201,168,76,.25);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.post-body .info-box strong,
.post-body .info-box b { color: var(--gold); }

/* ── KATEGORİYE GÖRE FALLBACK GRADYANLAR ─────────────────── */
.thumb-placeholder { display: none; } /* Artık JS gradient kullanacak */

.cat-bg-haberler       { background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); }
.cat-bg-bonus          { background: linear-gradient(135deg, #1a0533, #4a0e6e, #2d0b42); }
.cat-bg-spor           { background: linear-gradient(135deg, #0b3d0b, #1a5c1a, #0d2b0d); }
.cat-bg-casino         { background: linear-gradient(135deg, #1a0a00, #4a1800, #2d0d00); }
.cat-bg-ipuclari       { background: linear-gradient(135deg, #00102a, #002255, #001435); }
.cat-bg-default        { background: linear-gradient(135deg, #0a0a1a, #1a1a3a, #0d0d20); }

/* Görsel yoksa büyük ikon göster */
.no-thumb-wrap {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; opacity: .6;
}
.no-thumb-wrap .no-thumb-icon { font-size: 48px; }
.no-thumb-wrap .no-thumb-cat  {
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}

/* ── GÖRSEL ZOOM OVERLAY ──────────────────────────────────── */
.card-thumb-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10,10,11,.55) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.post-card:hover .card-thumb-wrap::after { opacity: 1; }

/* ── POST HERO DAHA UZUN ──────────────────────────────────── */
.post-hero { height: 520px; }

@media (max-width: 768px) {
  .post-hero              { height: 300px; }
  .posts-grid-hero        { grid-template-columns: 1fr; }
  .posts-grid-hero .post-card:first-child { grid-column: 1; }
}

/* ════════════════════════════════════════════════════════════
   STATİK SAYFALAR — Hakkımızda, İletişim, Gizlilik, Sorumlu
   ════════════════════════════════════════════════════════════ */

/* ── Sayfa Hero ─────────────────────────────────────────────── */
.page-hero {
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border-2);
  background: linear-gradient(to bottom, rgba(201,168,76,.04), transparent);
}
.page-hero--warning {
  background: linear-gradient(to bottom, rgba(231,76,60,.06), transparent);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; line-height: 1.2;
  margin: 12px 0 8px;
}
.page-hero-sub {
  font-size: 15px; color: var(--text-muted);
}

/* ── Sayfa Düzeni ───────────────────────────────────────────── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}
.page-content { min-width: 0; }

/* ── Sayfa Bölümleri ────────────────────────────────────────── */
.page-section { margin-bottom: 48px; }
.page-section h2 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700;
  margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--border-2);
  color: var(--text);
}
.page-section h3 {
  font-size: 16px; font-weight: 700;
  color: var(--text-muted); margin: 20px 0 10px;
}
.page-section p {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 16px;
}
.page-list {
  padding-left: 20px; margin: 12px 0 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.page-list li { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* ── Sidebar Sayfa Linkleri ─────────────────────────────────── */
.sidebar-page-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--border-2);
  font-size: 13px; color: var(--text-muted); transition: color .2s;
}
.sidebar-page-link::after { content: '→'; color: var(--gold); opacity: 0; transition: opacity .2s; }
.sidebar-page-link:hover  { color: var(--gold); }
.sidebar-page-link:hover::after { opacity: 1; }
.sidebar-page-link:last-child { border-bottom: none; }

.info-row {
  display: flex; justify-content: space-between;
  padding: 9px 0; border-bottom: 1px solid var(--border-2);
  font-size: 13px; color: var(--text-muted);
}
.info-row:last-child { border-bottom: none; }
.info-row strong { color: var(--text); }

/* ── Hakkımızda: Misyon Kartları ────────────────────────────── */
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 20px;
}
.mission-card {
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 24px;
  transition: border-color .2s, transform .2s;
}
.mission-card:hover { border-color: var(--border); transform: translateY(-2px); }
.mission-icon { font-size: 28px; display: block; margin-bottom: 12px; }
.mission-card h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.mission-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── İletişim Formu ─────────────────────────────────────────── */
.contact-form {
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 32px;
  margin-top: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form .form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.contact-form label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }
.req { color: var(--red); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 11px 14px;
  color: var(--text); font-size: 14px; font-family: var(--font-body);
  transition: border-color .2s; width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form select option { background: var(--bg-3); }
.contact-form textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--bg);
  border: none; border-radius: var(--radius);
  padding: 13px 32px; font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  transition: background .2s, gap .2s;
}
.submit-btn:hover { background: var(--gold-light); gap: 14px; }

.contact-info-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--border-2);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon  { font-size: 20px; flex-shrink: 0; }
.ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-dim); margin-bottom: 2px; }
.ci-val   { font-size: 13px; color: var(--text); }

/* ── Alert Box ──────────────────────────────────────────────── */
.alert-box {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; border-radius: var(--radius-lg);
  font-size: 14px; line-height: 1.6; margin-bottom: 24px;
}
.alert-success { background: rgba(39,174,96,.1);  border: 1px solid rgba(39,174,96,.25); color: #27ae60; }
.alert-error   { background: rgba(231,76,60,.1);  border: 1px solid rgba(231,76,60,.25); color: #e74c3c; }
.alert-icon    { font-size: 18px; font-weight: 900; flex-shrink: 0; }

/* ── Gizlilik: Tablo ────────────────────────────────────────── */
.table-wrap { overflow-x: auto; margin: 16px 0; }
.page-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.page-table th {
  background: var(--bg-3); padding: 10px 16px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-dim);
  border-bottom: 1px solid var(--border-2);
}
.page-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border-2);
  color: var(--text-muted); font-size: 13px;
}
.page-table tr:last-child td { border-bottom: none; }
.page-table tr:hover td { background: rgba(255,255,255,.02); }

/* ── İçindekiler ────────────────────────────────────────────── */
.toc-nav { display: flex; flex-direction: column; gap: 2px; }
.toc-link {
  display: block; padding: 8px 10px; border-radius: var(--radius);
  font-size: 13px; color: var(--text-muted); transition: all .15s;
}
.toc-link:hover { background: rgba(201,168,76,.08); color: var(--gold); padding-left: 14px; }

/* ── Sorumlu Oyun ────────────────────────────────────────────── */
.rg-alert {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(231,76,60,.08); border: 1px solid rgba(231,76,60,.25);
  border-radius: var(--radius-lg); padding: 18px 22px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 32px;
}
.rg-alert-icon { font-size: 22px; flex-shrink: 0; }
.rg-alert strong { color: #e74c3c; }

.symptom-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 20px;
}
.symptom-card {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 20px; border: 1px solid var(--border-2);
}
.symptom-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.symptom-card ul { padding-left: 16px; display: flex; flex-direction: column; gap: 6px; }
.symptom-card li { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.symptom-yellow { border-top: 3px solid #f39c12; }
.symptom-orange { border-top: 3px solid #e67e22; }
.symptom-red    { border-top: 3px solid #e74c3c; }

.quiz-list { display: flex; flex-direction: column; gap: 2px; margin: 20px 0; }
.quiz-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 12px 16px; background: var(--bg-card);
  border: 1px solid var(--border-2); border-radius: var(--radius);
  font-size: 14px; color: var(--text-muted); transition: border-color .2s;
}
.quiz-item:hover { border-color: var(--border); }
.quiz-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(201,168,76,.15); color: var(--gold);
  font-size: 12px; font-weight: 700; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.quiz-cta {
  background: rgba(231,76,60,.08); border: 1px solid rgba(231,76,60,.2);
  border-radius: var(--radius-lg); padding: 20px 24px;
  text-align: center; font-size: 14px; color: var(--text-muted);
  margin-top: 16px; line-height: 1.7;
}
.rg-phone-btn {
  display: inline-block; margin-top: 12px;
  background: #e74c3c; color: #fff;
  padding: 10px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 15px; transition: background .2s;
}
.rg-phone-btn:hover { background: #c0392b; }

.limit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 20px;
}
.limit-card {
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
  transition: border-color .2s, transform .2s;
}
.limit-card:hover { border-color: var(--border); transform: translateY(-2px); }
.limit-icon { font-size: 32px; margin-bottom: 12px; }
.limit-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.limit-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.help-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.help-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); padding: 18px 20px;
  transition: border-color .2s; color: var(--text);
}
.help-card:hover { border-color: var(--gold); }
.help-icon { font-size: 28px; flex-shrink: 0; }
.help-card strong { display: block; font-size: 14px; margin-bottom: 3px; }
.help-card span   { font-size: 12px; color: var(--text-dim); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .mission-grid  { grid-template-columns: 1fr; }
  .symptom-grid  { grid-template-columns: 1fr; }
  .limit-grid    { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 20px; }
  .page-sidebar  { grid-template-columns: 1fr; }
}
