/* SPDX-License-Identifier: GPL-3.0-or-later */

/* ============================================================
   KAPİTALİZM VE DEMOKRASİ — ÖZEL OKUMA SAYFASI
   ============================================================ */

:root {
  --paper: #e9e0cf;
  --paper-light: #f4efe6;
  --paper-dark: #d7cab4;

  --ink: #26221d;
  --ink-soft: #6f665a;

  --red: #8f1d2c;
  --red-dark: #64131d;

  --wood-light: #825a42;
  --wood: #65432f;
  --wood-dark: #302119;

  --border: rgba(57, 47, 38, 0.18);

  --shadow:
    0 24px 60px rgba(50, 33, 22, 0.16);
}

.reading-link--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}
/* ============================================================
   GENEL
   ============================================================ */

html {
  scroll-behavior: smooth;
}

body.dossier-page {
  margin: 0;

  background:
    linear-gradient(
      rgba(255, 255, 255, 0.05),
      rgba(0, 0, 0, 0.015)
    ),
    var(--paper);

  color: var(--ink);
}

.dossier-page *,
.dossier-page *::before,
.dossier-page *::after {
  box-sizing: border-box;
}

.dossier-page img,
.dossier-page video {
  max-width: 100%;
}

.dossier-page button,
.dossier-page input,
.dossier-page select {
  font: inherit;
}


/* ============================================================
   HEADER
   ============================================================ */

.dossier-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(233, 224, 207, 0.9);

  border-bottom:
    1px solid var(--border);

  backdrop-filter: blur(12px);
}

.dossier-header-inner {
  width: min(1240px, calc(100% - 56px));

  margin: 0 auto;
  padding: 17px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.dossier-brand {
  color: var(--ink);

  text-decoration: none;

  font-size: 1.05rem;
  font-weight: 800;

  letter-spacing: -0.03em;
}

.dossier-nav {
  display: flex;
  align-items: center;

  gap: 7px;
}

.dossier-nav a {
  padding: 8px 12px;

  border-radius: 999px;

  color: var(--ink-soft);

  text-decoration: none;

  font-size: 0.82rem;
  font-weight: 600;

  transition:
    background 160ms ease,
    color 160ms ease;
}

.dossier-nav a:hover {
  color: var(--red);

  background:
    rgba(143, 29, 44, 0.07);
}


/* ============================================================
   HERO
   ============================================================ */

.dossier-hero {
  position: relative;

  width: min(1240px, calc(100% - 56px));

  margin: 0 auto;

  min-height: 720px;

  padding:
    clamp(80px, 9vw, 135px)
    0
    120px;

  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(420px, 1.1fr);

  align-items: center;

  gap: clamp(60px, 7vw, 115px);
}

.dossier-hero::before {
  content: "";

  position: absolute;

  top: 50px;
  left: -310px;

  width: 510px;
  height: 510px;

  border-radius: 50%;

  border:
    1px solid
    rgba(143, 29, 44, 0.1);

  box-shadow:
    0 0 0 70px rgba(143, 29, 44, 0.025),
    0 0 0 140px rgba(143, 29, 44, 0.018);

  pointer-events: none;
}


/* ============================================================
   HERO METİN
   ============================================================ */

.dossier-copy {
  position: relative;
  z-index: 2;
}

.dossier-number {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 26px;

  color: var(--red);

  font-size: 0.7rem;
  font-weight: 800;

  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dossier-number::before {
  content: "";

  width: 38px;
  height: 2px;

  background: currentColor;
}

.dossier-copy h1 {
  margin: 0;

  max-width: 660px;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size:
    clamp(3.5rem, 6.2vw, 6.5rem);

  font-weight: 500;

  line-height: 0.9;

  letter-spacing: -0.065em;

  color: var(--ink);
}

.dossier-copy h1 span {
  display: block;

  color: var(--red);
}

.dossier-lead {
  max-width: 600px;

  margin: 34px 0 0;

  color: var(--ink-soft);

  font-size:
    clamp(1rem, 1.3vw, 1.15rem);

  line-height: 1.75;
}


/* ============================================================
   SAYILAR
   ============================================================ */

.dossier-meta {
  display: flex;
  flex-wrap: wrap;

  gap: 34px;

  margin-top: 40px;
  padding-top: 25px;

  border-top:
    1px solid var(--border);
}

.dossier-meta-item {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.dossier-meta-item strong {
  font-family:
    Georgia,
    serif;

  color: var(--ink);

  font-size: 1.3rem;
  font-weight: 500;
}

.dossier-meta-item span {
  color: var(--ink-soft);

  font-size: 0.65rem;
  font-weight: 800;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}


/* ============================================================
   TV SAHNESİ
   ============================================================ */

.tv-stage {
  position: relative;

  min-height: 530px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-stage::after {
  content: "";

  position: absolute;

  bottom: 10px;

  width: 82%;
  height: 32px;

  background:
    rgba(42, 29, 20, 0.25);

  border-radius: 50%;

  filter: blur(18px);
}


/* ============================================================
   TV KASASI
   ============================================================ */

.vintage-tv {
  position: relative;
  z-index: 2;

  width: min(100%, 620px);

  padding: 24px;

  border:
    7px solid
    var(--wood-dark);

  border-radius:
    42px
    42px
    34px
    34px;

  background:
    linear-gradient(
      125deg,
      var(--wood-light),
      var(--wood) 47%,
      #4d3124
    );

  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 -18px 28px rgba(0, 0, 0, 0.2),
    0 38px 60px rgba(50, 33, 22, 0.22);
}

.vintage-tv::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  opacity: 0.1;

  pointer-events: none;

  background:
    repeating-linear-gradient(
      7deg,
      transparent 0,
      transparent 8px,
      rgba(255, 255, 255, 0.18) 9px,
      transparent 11px
    );
}


/* ============================================================
   TV ANTENLERİ
   ============================================================ */

.tv-antennas {
  position: absolute;

  top: -92px;
  left: 50%;

  width: 170px;
  height: 100px;

  transform:
    translateX(-50%);

  pointer-events: none;
}

.antenna {
  position: absolute;

  bottom: 0;

  width: 5px;
  height: 108px;

  border-radius: 999px;

  background:
    linear-gradient(
      to right,
      #5b5751,
      #d0cbc2,
      #48443f
    );

  transform-origin:
    bottom center;
}

.antenna-left {
  left: 78px;

  transform:
    rotate(-34deg);
}

.antenna-right {
  right: 78px;

  transform:
    rotate(34deg);
}

.antenna::before {
  content: "";

  position: absolute;

  top: -4px;
  left: 50%;

  width: 11px;
  height: 11px;

  transform:
    translateX(-50%);

  border-radius: 50%;

  background: #3d3934;
}


/* ============================================================
   TV ÖN PANEL
   ============================================================ */

.tv-front {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    95px;

  gap: 20px;

  padding: 14px;

  border:
    3px solid #181714;

  border-radius: 28px;

  background: #292620;
}


/* ============================================================
   TV EKRANI
   ============================================================ */

.tv-screen-frame {
  position: relative;

  aspect-ratio: 4 / 3;

  padding: 11px;

  border-radius: 42px;

  background:
    linear-gradient(
      145deg,
      #10110f,
      #353630
    );

  box-shadow:
    inset 0 0 26px rgba(0, 0, 0, 0.85);
}

.tv-screen {
  position: relative;

  width: 100%;
  height: 100%;

  overflow: hidden;

  border-radius:
    38% 38% 35% 35% /
    19% 19% 20% 20%;

  background: #151613;

  box-shadow:
    inset 0 0 44px rgba(0, 0, 0, 0.85);
}

.tv-screen video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  opacity: 0;

  transition:
    opacity 450ms ease;
}

.vintage-tv.is-on
.tv-screen video {
  opacity: 1;
}


/* ============================================================
   TV KAPALI EKRANI
   ============================================================ */

.tv-off-screen {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 30px;

  text-align: center;

  background:
    radial-gradient(
      ellipse at center,
      #45473e 0%,
      #292a24 55%,
      #161713 100%
    );

  transition:
    opacity 400ms ease,
    visibility 400ms ease;
}

.vintage-tv.is-on
.tv-off-screen {
  opacity: 0;

  visibility: hidden;
}

.tv-off-screen span {
  color: #bdb9aa;

  font-family:
    "Courier New",
    monospace;

  font-size: 0.65rem;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.tv-off-screen strong {
  display: block;

  max-width: 300px;

  margin-top: 13px;

  color: #dfdccf;

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(1.2rem, 2vw, 1.7rem);

  font-weight: 400;

  line-height: 1.2;
}

.tv-off-screen small {
  margin-top: 18px;

  color: #929083;

  font-size: 0.68rem;
}


/* ============================================================
   CRT ÇİZGİLERİ
   ============================================================ */

.tv-screen::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 4;

  pointer-events: none;

  opacity: 0.18;

  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 3px,
      rgba(0, 0, 0, 0.45) 4px
    );
}


/* ============================================================
   TV KONTROL PANELİ
   ============================================================ */

.tv-controls {
  display: flex;
  flex-direction: column;

  align-items: center;

  padding:
    18px
    8px
    14px;
}

.tv-brand {
  margin-bottom: 22px;

  color: #b6ab97;

  font-size: 0.52rem;
  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* ============================================================
   TV DÜĞMELERİ
   ============================================================ */

.tv-knob {
  position: relative;

  width: 58px;
  height: 58px;

  border:
    5px solid
    #12110f;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 29%,
      #6b665e,
      #302e29 46%,
      #151412 78%
    );

  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.45),
    inset 0 2px 2px rgba(255, 255, 255, 0.14);
}

.tv-knob::after {
  content: "";

  position: absolute;

  top: 7px;
  left: 50%;

  width: 3px;
  height: 16px;

  transform:
    translateX(-50%);

  border-radius: 5px;

  background:
    #d1c4ad;
}

.tv-knob + .tv-knob {
  width: 44px;
  height: 44px;

  margin-top: 16px;
}


/* ============================================================
   HOPARLÖR
   ============================================================ */

.tv-speaker {
  width: 60px;

  margin-top: 28px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 6px;
}

.tv-speaker span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #11100e;

  box-shadow:
    inset 0 1px
    rgba(255, 255, 255, 0.08);
}


/* ============================================================
   POWER BUTTON
   ============================================================ */

.tv-power-area {
  position: absolute;

  right: 35px;
  bottom: -58px;

  z-index: 5;

  display: flex;
  flex-direction: column;

  align-items: center;

  gap: 9px;
}

.tv-power {
  width: 58px;
  height: 58px;

  padding: 0;

  cursor: pointer;

  border:
    5px solid #34231a;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 35% 28%,
      #b34448,
      #86232e 55%,
      #56141b
    );

  box-shadow:
    0 6px 0 #3b261c,
    0 9px 12px rgba(0, 0, 0, 0.25),
    inset 0 2px 3px rgba(255, 255, 255, 0.28);

  transition:
    transform 120ms ease,
    box-shadow 120ms ease;
}

.tv-power:hover {
  transform:
    translateY(-1px);
}

.tv-power:active {
  transform:
    translateY(5px);

  box-shadow:
    0 1px 0 #3b261c,
    0 3px 5px rgba(0, 0, 0, 0.2),
    inset 0 2px 3px rgba(255, 255, 255, 0.2);
}

.tv-power span {
  display: block;

  width: 14px;
  height: 14px;

  margin: auto;

  border:
    2px solid
    rgba(255, 255, 255, 0.72);

  border-top-color:
    transparent;

  border-radius: 50%;
}

.tv-power-label {
  color: var(--ink-soft);

  font-size: 0.59rem;
  font-weight: 800;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}


/* ============================================================
   TV ALT YAZISI
   ============================================================ */

.tv-caption {
  position: absolute;

  left: 34px;
  bottom: -92px;

  max-width: 330px;

  margin: 0;

  color: var(--ink-soft);

  font-size: 0.7rem;
  line-height: 1.5;
}

.tv-caption strong {
  color: var(--ink);
}


/* ============================================================
   OKUMA ALANI
   ============================================================ */

.reading-content-area {
  position: relative;

  padding:
    110px
    28px
    125px;

  border-top:
    1px solid
    var(--border);

  background:
    var(--paper-light);
}

.reading-content-inner {
  width: min(1040px, 100%);

  margin: 0 auto;
}


/* ============================================================
   OKUMA GİRİŞİ
   ============================================================ */

.reading-intro {
  display: grid;

  grid-template-columns:
    160px
    minmax(0, 1fr);

  gap: 45px;

  margin-bottom: 85px;
}

.reading-intro-label {
  padding-top: 9px;

  color: var(--red);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.reading-intro-text {
  max-width: 760px;

  margin: 0;

  color: var(--ink);

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(1.55rem, 2.5vw, 2.35rem);

  line-height: 1.36;

  letter-spacing: -0.025em;
}


/* ============================================================
   OKUMA BÖLÜMLERİ
   ============================================================ */

.reading-section {
  margin-top: 90px;
}

.reading-section:first-of-type {
  margin-top: 0;
}

.reading-section-header {
  margin-bottom: 24px;
  padding-bottom: 18px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;

  border-bottom:
    2px solid
    var(--ink);
}

.reading-section-heading {
  display: flex;

  align-items: baseline;

  gap: 18px;
}

.reading-section-index {
  color: var(--red);

  font-family:
    Georgia,
    serif;

  font-size: 1rem;
  font-style: italic;
}

.reading-section-header h2 {
  margin: 0;

  color: var(--ink);

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(2rem, 4vw, 3.5rem);

  font-weight: 500;

  letter-spacing: -0.045em;
}

.reading-section-header > p {
  margin: 0 0 5px;

  color: var(--ink-soft);

  font-size: 0.76rem;
}


/* ============================================================
   OKUMA LİSTESİ
   ============================================================ */

.reading-list {
  display: flex;
  flex-direction: column;
}


/* ============================================================
   TEK OKUMA SATIRI
   ============================================================ */

.reading-item {
  display: grid;

  grid-template-columns:
    55px
    minmax(0, 1fr)
    auto;

  gap: 25px;

  align-items: center;

  min-height: 112px;

  padding:
    24px
    5px;

  border-bottom:
    1px solid
    var(--border);

  transition:
    background 180ms ease,
    padding 180ms ease;
}

.reading-item:hover {
  padding-left: 15px;
  padding-right: 15px;

  background:
    rgba(143, 29, 44, 0.035);
}


/* ============================================================
   NUMARA
   ============================================================ */

.reading-number {
  color: var(--red);

  font-family:
    Georgia,
    serif;

  font-size: 0.92rem;
  font-style: italic;
}


/* ============================================================
   YAZAR / BAŞLIK / KAYNAK
   ============================================================ */

.reading-content {
  min-width: 0;
}

.reading-author {
  display: block;

  margin-bottom: 7px;

  color: var(--red);

  font-size: 0.68rem;
  font-weight: 800;

  letter-spacing: 0.085em;

  text-transform: uppercase;
}

.reading-content h3 {
  margin: 0;

  color: var(--ink);

  font-family:
    Georgia,
    serif;

  font-size:
    clamp(1.15rem, 2vw, 1.65rem);

  font-weight: 500;

  line-height: 1.25;

  letter-spacing: -0.02em;
}

.reading-source {
  margin:
    7px
    0
    0;

  color: var(--ink-soft);

  font-size: 0.82rem;

  line-height: 1.5;
}


/* ============================================================
   OKU BUTONU
   ============================================================ */

.reading-link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding:
    10px
    15px;

  border:
    1px solid
    var(--border);

  border-radius: 999px;

  color: var(--ink);

  background: transparent;

  text-decoration: none;

  font-size: 0.71rem;
  font-weight: 800;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  white-space: nowrap;

  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.reading-link::after {
  content: "→";

  font-size: 1rem;
}

.reading-link:hover {
  color: #fff;

  background: var(--red);

  border-color: var(--red);

  transform:
    translateX(2px);
}


/* ============================================================
   FOOTER
   ============================================================ */

.dossier-footer {
  padding:
    60px
    28px;

  color: #d8cdbb;

  background:
    var(--ink);
}

.dossier-footer-inner {
  width: min(1040px, 100%);

  margin: 0 auto;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  font-size: 0.74rem;
}

.dossier-footer a {
  color: #fff;

  text-decoration: none;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 960px) {
  .dossier-hero {
    grid-template-columns: 1fr;

    padding-top: 90px;

    gap: 130px;
  }

  .dossier-copy {
    max-width: 720px;
  }

  .tv-stage {
    min-height: 470px;
  }

  .vintage-tv {
    max-width: 620px;
  }

  .reading-intro {
    grid-template-columns: 1fr;

    gap: 16px;
  }
}


/* ============================================================
   MOBİL
   ============================================================ */

@media (max-width: 700px) {
  .dossier-header-inner {
    width:
      calc(100% - 36px);
  }

  .dossier-nav a {
    display: none;
  }

  .dossier-nav a:last-child {
    display: inline-flex;
  }

  .dossier-hero {
    width:
      calc(100% - 36px);

    padding:
      75px
      0
      120px;

    gap: 125px;
  }

  .dossier-copy h1 {
    font-size:
      clamp(3.5rem, 17vw, 5.2rem);
  }

  .dossier-lead {
    font-size: 0.98rem;
  }

  .dossier-meta {
    gap: 24px;
  }

  .tv-stage {
    min-height: 340px;
  }

  .vintage-tv {
    padding: 13px;

    border-width: 5px;

    border-radius: 28px;
  }

  .tv-front {
    grid-template-columns:
      minmax(0, 1fr)
      62px;

    gap: 9px;

    padding: 8px;

    border-radius: 18px;
  }

  .tv-screen-frame {
    padding: 7px;

    border-radius: 24px;
  }

  .tv-controls {
    padding-top: 12px;
  }

  .tv-brand {
    margin-bottom: 12px;

    font-size: 0.37rem;
  }

  .tv-knob {
    width: 38px;
    height: 38px;
  }

  .tv-knob + .tv-knob {
    width: 31px;
    height: 31px;

    margin-top: 10px;
  }

  .tv-speaker {
    width: 38px;

    gap: 3px;

    margin-top: 15px;
  }

  .tv-speaker span {
    width: 5px;
    height: 5px;
  }

  .tv-antennas {
    transform:
      translateX(-50%)
      scale(0.72);

    transform-origin:
      bottom center;
  }

  .tv-power-area {
    right: 10px;
  }

  .tv-caption {
    left: 8px;

    max-width: 230px;
  }

  .reading-content-area {
    padding:
      85px
      18px;
  }

  .reading-section-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;
  }

  .reading-section-heading {
    gap: 11px;
  }

  .reading-item {
    grid-template-columns:
      36px
      minmax(0, 1fr);

    gap:
      11px
      14px;

    padding:
      21px
      2px;
  }

  .reading-item:hover {
    padding-left: 2px;
    padding-right: 2px;
  }

  .reading-link {
    grid-column: 2;

    justify-self: flex-start;

    margin-top: 5px;
  }

  .dossier-footer-inner {
    flex-direction: column;

    align-items: flex-start;
  }
}


/* ============================================================
   ÇOK KÜÇÜK EKRAN
   ============================================================ */

@media (max-width: 430px) {
  .dossier-copy h1 {
    font-size: 3.55rem;
  }

  .dossier-meta {
    justify-content: space-between;
  }

  .dossier-meta-item {
    min-width: 75px;
  }

  .tv-stage {
    min-height: 280px;
  }

  .vintage-tv {
    border-radius: 22px;
  }

  .tv-off-screen strong {
    font-size: 1rem;
  }

  .tv-off-screen span,
  .tv-off-screen small {
    font-size: 0.55rem;
  }
}


/* ============================================================
   ERİŞİLEBİLİRLİK
   ============================================================ */

.tv-power:focus-visible,
.reading-link:focus-visible,
.dossier-nav a:focus-visible,
.dossier-brand:focus-visible {
  outline:
    3px solid
    rgba(143, 29, 44, 0.4);

  outline-offset: 4px;
}


/* ============================================================
   HAREKET AZALTMA
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }
}