/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #0e0e0e;
  --bg2:     #161616;
  --bg3:     #1e1e1e;
  --text:    #f0ece3;
  --muted:   #888888;
  --accent:  #e83a2f;
  --accent2: #f5a623;
  --green:   #4caf7d;
  --border:  rgba(240,236,227,0.1);
  --font:    'Sen', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =====================
   NAV
   ===================== */
.sitenav {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  gap: 12px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); background: var(--bg3); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 18px;
  padding: 4px 10px;
  cursor: pointer;
  font-family: var(--font);
}

/* =====================
   HERO
   ===================== */
.hero {
  padding: 3.5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 8px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  margin-top: 1.25rem;
  font-size: 15px;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-visual {
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: opacity .15s;
}
.btn-primary:hover { opacity: .85; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--muted); }

/* =====================
   SECTION LABEL
   ===================== */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.5rem 0 1.25rem;
}

/* =====================
   KATEGORİLER
   ===================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.cat-card {
  background: var(--bg2);
  padding: 1.25rem;
  transition: background .15s;
  display: block;
}
.cat-card:hover { background: var(--bg3); }

.cat-icon { font-size: 20px; margin-bottom: .6rem; display: block; }
.cat-title { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.cat-desc  { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cat-count { font-size: 11px; font-weight: 700; color: var(--accent); margin-top: .75rem; letter-spacing: .05em; }

/* =====================
   SPONSOR BANDI
   ===================== */
.sponsor-band {
  border: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}

.sponsor-header {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sponsor-header-label { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.sponsor-header-note  { font-size: 11px; color: rgba(136,136,136,.5); }

.sponsor-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
}

.sponsor-item {
  background: var(--bg2);
  padding: 1rem .75rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background .15s;
}
.sponsor-item:hover { background: var(--bg3); }

.sponsor-img {
  width: 100%;
  height: 44px;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 3px;
}
.sponsor-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.sponsor-name  { font-size: 12px; font-weight: 800; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sponsor-desc  { font-size: 10px; color: var(--muted); line-height: 1.4; flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sponsor-meta  { display: flex; justify-content: space-between; align-items: center; }
.sponsor-stars { font-size: 11px; color: var(--accent2); }
.sponsor-tag {
    font-size: 8px;
    font-weight: 100;
    letter-spacing: .06em;
    color: #bdbdbd;
}
.sponsor-empty { padding: 1.5rem; font-size: 13px; color: var(--muted); }

@media (max-width: 1000px) { .sponsor-list { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 680px)  { .sponsor-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px)  { .sponsor-list { grid-template-columns: repeat(2, 1fr); } }

/* =====================
   CONTENT GRID
   ===================== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}
.content-grid > * { min-width: 0; }

/* =====================
   ÖNE ÇIKAN
   ===================== */
.featured-card {
  border: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: auto;
  background: var(--bg3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-img img { width: 100%; height: 100%; object-fit: cover; }

.featured-body { padding: 1.5rem; }

.featured-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
  display: block;
}

.featured-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: .6rem;
}

.featured-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.score-row { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.score-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.score-val   { font-size: 20px; font-weight: 800; }
.score-bad   { color: var(--accent); }
.score-ok    { color: var(--accent2); }
.score-good  { color: var(--green); }

/* =====================
   YAZI LİSTESİ
   ===================== */
.post-list { display: flex; flex-direction: column; }

.post-item {
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transition: padding-left .15s;
}
.post-item:hover { padding-left: 5px; }
.post-item:last-child { border-bottom: none; }

.post-thumb {
  flex: 0 0 60px;
  height: 48px;
  background: var(--bg3);
  overflow: hidden;
  border: 1px solid var(--border);
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-info   { flex: 1; min-width: 0; }
.post-cat    { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 3px; }
.post-title  { font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 3px; }
.post-meta   { font-size: 11px; color: var(--muted); }

/* =====================
   SİDEBAR
   ===================== */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.widget { border: 1px solid var(--border); background: var(--bg2); }
.widget-header {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.widget-body { padding: 1rem; }

.kurek-site    { font-size: 17px; font-weight: 800; color: var(--accent); margin-bottom: 6px; }
.kurek-claim   { font-size: 12px; color: var(--muted); line-height: 1.5; margin-bottom: 1rem; }
.kurek-verdict { font-size: 12px; font-weight: 500; background: var(--bg3); padding: 8px 10px; border-left: 3px solid var(--accent); }

.site-skor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.site-skor-row:last-child { border-bottom: none; }
.site-skor-val { font-weight: 800; }

/* Banner placeholder */
.ad-block {
  background: var(--bg3);
  border: 1px dashed rgba(240,236,227,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 250px;
  padding: 1rem;
  text-align: center;
}
.ad-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.ad-ph    { font-size: 12px; color: rgba(136,136,136,.3); }
.ad-block img { max-width: 100%; }

/* =====================
   KATEGORİ YAZI KARTI (yatay)
   ===================== */
.yazi-kart {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
  transition: padding-left .15s;
}
.yazi-kart:hover { padding-left: 5px; }
.yazi-kart:last-of-type { border-bottom: none; }

.yazi-kart-thumb {
  flex: 0 0 120px;
  height: 80px;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
}
.yazi-kart-thumb img { width: 100%; height: 100%; object-fit: cover; }

.yazi-kart-body   { flex: 1; min-width: 0; }
.yazi-kart-baslik { font-size: 16px; font-weight: 800; line-height: 1.3; margin-bottom: 5px; color: var(--text); }
.yazi-kart-ozet   { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 6px; }
.yazi-kart-meta   { font-size: 11px; color: var(--muted); }

@media (max-width: 480px) {
  .yazi-kart-thumb { flex: 0 0 80px; height: 60px; }
  .yazi-kart-baslik { font-size: 14px; }
}

/* =====================
   YAZI İÇERİK STİLLERİ
   ===================== */
.yazi-icerik { font-size: 16px; line-height: 1.8; color: var(--text); word-break: break-word; overflow-wrap: break-word; min-width: 0; }
.yazi-icerik h1 { font-size: 22px; font-weight: 800; letter-spacing: -.3px; margin: 2rem 0 .75rem; color: var(--text); }
.yazi-icerik h2 { font-size: 20px; font-weight: 800; letter-spacing: -.3px; margin: 2rem 0 .75rem; color: var(--text); }
.yazi-icerik h3 { font-size: 17px; font-weight: 800; margin: 1.5rem 0 .5rem; color: var(--text); }
.yazi-icerik h4, .yazi-icerik h5, .yazi-icerik h6 { font-size: 15px; font-weight: 800; margin: 1.25rem 0 .5rem; color: var(--text); }
.yazi-icerik p  { margin-bottom: 1rem; }
.yazi-icerik strong { font-weight: 800; color: var(--text); }
.yazi-icerik em { font-style: italic; color: var(--muted); }
.yazi-icerik a  { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.yazi-icerik blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  background: rgba(232,58,47,.06);
  margin: 1.5rem 0;
  font-size: 15px;
  color: var(--text);
}
.yazi-icerik ul, .yazi-icerik ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.yazi-icerik li { margin-bottom: .4rem; }
.yazi-icerik ul li::marker { color: var(--accent); }
.yazi-icerik ol li::marker { color: var(--accent); font-weight: 800; }
.yazi-icerik hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.yazi-icerik img { max-width: 100%; height: auto; margin: 1rem 0; }

/* =====================
   RASTGELE BUTON
   ===================== */
.random-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  padding: 14px;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  margin: 2.5rem 0;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.random-btn:hover { color: var(--text); border-color: var(--muted); background: var(--bg2); }

/* =====================
   FOOTER
   ===================== */
.sitefooter {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo      { font-size: 15px; font-weight: 800; color: var(--muted); }
.footer-logo span { color: var(--accent); }

.footer-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-nav a { font-size: 12px; color: var(--muted); padding: 4px 8px; transition: color .15s; }
.footer-nav a:hover { color: var(--text); }

.footer-note { font-size: 11px; color: rgba(136,136,136,.4); }

/* =====================
   MOBİL
   ===================== */
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 2rem 0;
    gap: 1.5rem;
  }
  .hero-visual {
    display: flex;
    height: auto;
    order: -1;
    border: none;
    background: transparent;
  }
  .hero-visual img { object-fit: contain; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: .75rem 1.5rem 1rem;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .sidebar { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* =====================
   PLACEHOLDER METİN
   ===================== */
.ph-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); opacity: .5; }
.ph-size  { font-size: 11px; color: var(--muted); opacity: .35; }