@font-face {
  font-family: Mulish;
  src: url("../index/Mulish-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mulish;
  src: url("../index/Mulish-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mulish;
  src: url("../index/Mulish-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mulish;
  src: url("../index/Mulish-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mulish;
  src: url("../index/Mulish-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: #ef3737;
  --text: #111;
  --muted: #8a8a8a;
  --line: #ececec;
  --bg: #fff;
  --panel: #f4f4f4;
  --dark: #2b2b2b;
  --max: 1180px;
}

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

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: Mulish, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.wrap {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 20px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__bar {
  align-items: center;
  display: flex;
  gap: 18px;
  height: 64px;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 6px 2px;
}

.menu-btn span {
  background: #111;
  display: block;
  height: 2px;
  width: 18px;
}

.logo img {
  height: 28px;
  width: auto;
}

.nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 22px;
  min-width: 0;
}

.nav a {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
  white-space: nowrap;
}

.nav a.is-active {
  box-shadow: inset 0 -2px 0 var(--red);
}

.brands {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.brands img {
  height: 16px;
  width: auto;
}

.header-tools {
  align-items: center;
  display: flex;
  gap: 10px;
}

.search-btn,
.login-btn {
  align-items: center;
  color: #111;
  display: flex;
  height: 34px;
  justify-content: center;
}

.search-btn svg,
.login-btn svg {
  height: 18px;
  width: 18px;
}

.login-btn {
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
  padding: 0 10px;
}

.mobile-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: none;
  padding: 8px 20px 16px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  font-weight: 600;
  padding: 10px 0;
}

.hero {
  background: #ececec;
}

.hero__frame {
  margin: 0 auto;
  max-width: var(--max);
  padding: 16px 20px 0;
  position: relative;
}

.hero__slides {
  aspect-ratio: 16 / 6.2;
  background: #ececec;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.hero__slides img {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.4s ease;
  width: 100%;
}

.hero__slides img.is-active {
  opacity: 1;
  position: relative;
}

.hero__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 14px 0 6px;
}

.hero__dots button {
  background: #d4d4d4;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.hero__dots button.is-active {
  background: #9a9a9a;
}

.page {
  padding: 18px 0 48px;
}

.layout {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 320px;
}

.crumb {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 14px;
}

.crumb a:hover {
  color: var(--red);
}

.title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.meta time,
.source {
  color: var(--muted);
  font-size: 14px;
}

.share {
  display: flex;
  gap: 8px;
}

.share a {
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.share .n {
  background: #0a66c2;
  border-color: #0a66c2;
}

.share .fb {
  background: #1877f2;
  border-color: #1877f2;
}

.share .x {
  background: #111;
  border-color: #111;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 20px;
}

.tags a {
  background: #f3f3f3;
  border-radius: 8px;
  color: #555;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 12px;
}

.lead {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 20px;
}

.body p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.google-follow {
  align-items: center;
  background: #2c2c2c;
  border-radius: 16px;
  color: #fff;
  display: flex;
  gap: 12px;
  margin: 8px 0 24px;
  padding: 10px 12px;
}

.google-follow img {
  height: 42px;
  width: 42px;
}

.google-follow strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.google-follow span {
  color: #b2b2b2;
  font-size: 13px;
}

.google-follow__btn {
  align-items: center;
  background: #fff;
  border-radius: 12px;
  color: #111;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  margin-left: auto;
  max-width: 210px;
  padding: 8px 10px;
}

.google-follow__btn img {
  height: 22px;
  width: 22px;
}

.sidebar-block {
  margin-bottom: 28px;
}

.sidebar-title {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.sidebar-title::before {
  background: var(--red);
  content: "";
  display: block;
  height: 18px;
  width: 4px;
}

.sidebar-title.normal {
  text-transform: none;
}

.most-read {
  display: grid;
  gap: 12px;
}

.most-read a {
  display: grid;
  gap: 10px;
  grid-template-columns: 28px 72px 1fr;
}

.most-read strong {
  color: var(--red);
  font-size: 18px;
}

.most-read img {
  border-radius: 4px;
  height: 52px;
  object-fit: cover;
  width: 72px;
}

.most-read span {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.kesfet {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 0 1px #ececec;
  overflow: hidden;
}

.kesfet__head {
  align-items: center;
  background: #2f2f2f;
  color: #fff;
  display: flex;
  gap: 10px;
  padding: 10px 12px;
}

.kesfet__logo {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  display: flex;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.kesfet__logo img {
  height: 16px;
  width: auto;
}

.kesfet__head b {
  font-size: 18px;
  letter-spacing: 0.4px;
}

.kesfet__new {
  background: #6b6b6b;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
}

.kesfet__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 168px;
}

.kesfet__grid img {
  height: 168px;
  object-fit: cover;
  width: 100%;
}

.authors {
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 8px;
  padding: 12px;
}

.authors a {
  align-items: center;
  display: flex;
  gap: 10px;
}

.authors img {
  border-radius: 50%;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.authors b {
  display: block;
  font-size: 14px;
}

.authors span {
  color: var(--muted);
  font-size: 12px;
}

.related a {
  border-bottom: 1px solid var(--line);
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px 0;
}

.related a:last-child {
  border-bottom: 0;
}

.recs {
  border-top: 1px solid var(--line);
  padding: 36px 0 56px;
}

.recs h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.recs__grid {
  display: grid;
  gap: 22px 20px;
  grid-template-columns: repeat(3, 1fr);
}

.rec img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.rec h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  margin-top: 10px;
}

.rec small {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 6px;
}

@media (max-width: 1100px) {
  .nav,
  .brands {
    display: none;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .title {
    font-size: 28px;
  }

  .recs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__slides {
    aspect-ratio: 16 / 8;
  }
}

.search-panel {
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: none;
  padding: 12px 20px 16px;
}

.search-panel.is-open {
  display: block;
}

.search-panel input {
  border: 1px solid #ddd;
  border-radius: 8px;
  font: inherit;
  padding: 10px 12px;
  width: 100%;
}

.article-photo {
  margin: 8px 0 20px;
}

.article-photo img {
  border-radius: 4px;
  width: 100%;
}

.article-photo figcaption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.5;
}

/* ── TV / YouTube embed block ── */
.tv-embed {
  background: #0f0f0f;
  border-radius: 8px;
  margin: 20px 0 28px;
  overflow: hidden;
}

.tv-embed__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
}

.tv-embed__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tv-embed__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
}

.tv-embed__play svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.6));
}

.tv-embed__bar {
  padding: 14px 16px 16px;
  background: #1a1a1a;
}

.tv-embed__title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.tv-embed__meta {
  color: #aaa;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tv-embed__live {
  background: #ef3737;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: .5px;
}

.tv-embed__channel {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ccc;
}

.tv-embed__channel-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ef3737;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

/* ── Scene marker ── */
.scene-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 18px;
}

.scene-marker__time {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.scene-marker__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .6px;
}

.scene-marker__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ── Dialogue block ── */
.dialogue {
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dialogue-line {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.dialogue-line:first-child {
  border-top: 1px solid var(--line);
}

.dialogue-line.tension {
  background: #fff8f8;
  margin: 0 -12px;
  padding: 14px 12px;
  border-left: 3px solid var(--red);
}

.dialogue-line.breakthrough {
  background: #f5fff8;
  margin: 0 -12px;
  padding: 14px 12px;
  border-left: 3px solid #22c55e;
}

.speaker {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 2px;
}

.speaker__name {
  font-size: 13px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.speaker__role {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

.speaker--yucel .speaker__name { color: #1d4ed8; }
.speaker--erdogan .speaker__name { color: #b91c1c; }
.speaker--koc .speaker__name { color: #166534; }

.dialogue-text {
  font-size: 15.5px;
  line-height: 1.72;
  color: #222;
}

.dialogue-text em {
  font-style: normal;
}

.stage-direction {
  display: block;
  font-style: italic;
  color: var(--muted);
  font-size: 13px;
  margin-top: 5px;
}

/* ── Emotion badge ── */
.emotion {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.emotion--angry { background: #fef2f2; color: #b91c1c; }
.emotion--shocked { background: #eff6ff; color: #1d4ed8; }
.emotion--firm { background: #f0fdf4; color: #166534; }
.emotion--tense { background: #fffbeb; color: #92400e; }

/* ── Article CTA block ── */
.article-cta {
  background: linear-gradient(135deg, #0d3320 0%, #166534 100%);
  border-radius: 10px;
  color: #fff;
  margin: 32px 0 24px;
  padding: 24px 22px 20px;
}

.article-cta__inner {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.article-cta__icon {
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  height: 48px;
  line-height: 48px;
  text-align: center;
  width: 48px;
}

.article-cta__body {
  flex: 1;
}

.article-cta__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}

.article-cta__sub {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.6;
}

.article-cta__sub strong {
  color: #86efac;
}

.article-cta__list {
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85);
  display: flex;
  flex-direction: column;
  font-size: 13.5px;
  gap: 6px;
  list-style: none;
  margin-bottom: 20px;
  padding-top: 14px;
}

.article-cta__list li::before {
  color: #86efac;
  content: "✓ ";
  font-weight: 800;
}

.article-cta__cta-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-cta__btn {
  background: #fff;
  border-radius: 6px;
  color: #166534;
  display: inline-block;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 22px;
  transition: background .15s, color .15s;
}

.article-cta__btn:hover {
  background: #86efac;
  color: #0d3320;
}

.article-cta__secure {
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

@media (max-width: 640px) {
  .article-cta__inner {
    flex-direction: column;
    gap: 10px;
  }

  .article-cta__btn {
    width: 100%;
    text-align: center;
  }
}

/* ── Platform details box ── */
.platform-details {
  background: #f8faf8;
  border: 1px solid #d1e7d6;
  border-left: 4px solid #22c55e;
  border-radius: 6px;
  margin: 24px 0 28px;
  padding: 20px 22px;
}

.platform-details__head {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.platform-details__head strong {
  font-size: 15px;
  line-height: 1.4;
}

.platform-details__badge {
  background: #166534;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  padding: 4px 10px;
  text-transform: uppercase;
}

.platform-details__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.platform-details__row {
  align-items: baseline;
  border-top: 1px solid #e2ece4;
  display: grid;
  gap: 6px 16px;
  grid-template-columns: 1fr auto;
  padding: 12px 0;
}

.platform-details__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.platform-details__row--highlight {
  background: #ecfdf3;
  margin: 0 -22px;
  padding: 14px 22px;
}

.platform-details__row dt {
  color: #444;
  font-size: 14px;
  font-weight: 500;
}

.platform-details__row dd {
  font-size: 15px;
  text-align: right;
}

.platform-details__row dd strong {
  color: #166534;
  font-size: 17px;
}

.platform-details__note {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

.platform-details__footer {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .platform-details__row {
    grid-template-columns: 1fr;
  }

  .platform-details__row dd {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .dialogue-line {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .speaker {
    flex-direction: row;
    align-items: baseline;
    gap: 6px;
  }
  .speaker__role::before { content: "· "; }
}

.share svg {
  display: block;
}

@media (max-width: 640px) {
  .recs__grid {
    grid-template-columns: 1fr;
  }

  .google-follow__btn {
    display: none;
  }

  .login-btn span {
    display: none;
  }
}
