:root {
  --ink: #071014;
  --ink-2: #0d1c20;
  --teal: #123338;
  --copper: #c56a3a;
  --copper-lt: #e8a870;
  --bone: #f3eadc;
  --paper: #efe4d2;
  --aqua: #3ecfb0;
  --mute: #9aa8a4;
  --line: rgba(232, 168, 112, 0.28);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --display: "Libre Caslon Text", "Georgia", serif;
  --ui: "Manrope", "Segoe UI", sans-serif;
  --cond: "Barlow Condensed", "Arial Narrow", sans-serif;
  --mono: "Chivo Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: clip; }

body {
  margin: 0;
  color: var(--bone);
  background:
    radial-gradient(circle at 12% 8%, rgba(197, 106, 58, 0.16), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(62, 207, 176, 0.08), transparent 32%),
    linear-gradient(180deg, var(--ink) 0%, #09161a 40%, var(--ink-2) 100%);
  font-family: var(--ui);
  line-height: 1.7;
  padding-bottom: 96px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(243, 234, 220, 0.06) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 90;
  background: var(--copper);
  color: var(--ink);
  padding: 8px 14px;
  font-weight: 700;
}
.skip:focus { left: 12px; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Mast */
.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 20, 0.86);
  border-bottom: 1px solid var(--line);
}

.mast-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand-name span {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--copper-lt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.nav a {
  font-size: 0.92rem;
  color: var(--mute);
}

.nav a:hover { color: var(--bone); }

.lang {
  display: flex;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
}

.lang a {
  padding: 4px 7px;
  border: 1px solid transparent;
  color: var(--mute);
}

.lang a[aria-current="page"],
.lang a:hover {
  border-color: var(--copper);
  color: var(--copper-lt);
}

.cta-pair {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--cond);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 650;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-giris {
  background: var(--copper);
  color: #1a0d08;
  box-shadow: 0 0 0 0 rgba(197, 106, 58, 0.7);
  animation: pulse 1.8s ease-out infinite;
}

.btn-uye {
  background: var(--bone);
  color: #1a1410;
}

.btn:hover { transform: translateY(-1px); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(197, 106, 58, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(197, 106, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(197, 106, 58, 0); }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bone);
  margin: 0 auto;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* Hero */
.hero {
  padding: 36px 0 20px;
}

.crumb {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--mute);
  margin-bottom: 18px;
}

.crumb a { color: var(--copper-lt); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.kicker {
  font-family: var(--cond);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  font-size: 0.95rem;
  margin: 0 0 10px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.12;
  margin: 0 0 16px;
  font-weight: 700;
}

.lede {
  font-size: 1.08rem;
  color: #d9cfc0;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}

.hero-actions .btn { min-width: 160px; min-height: 52px; font-size: 1.15rem; }

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--mute);
}

.dial {
  background: linear-gradient(180deg, #16383d, #0e2428);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.dial::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  border: 8px solid rgba(197, 106, 58, 0.2);
  border-radius: 50%;
}

.dial h2 {
  font-family: var(--cond);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.sinyal {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
  margin: 10px 0 16px;
}

.sinyal i {
  display: block;
  width: 6px;
  background: var(--aqua);
  border-radius: 2px;
  animation: bar 1.2s ease-in-out infinite;
}
.sinyal i:nth-child(1) { height: 8px; }
.sinyal i:nth-child(2) { height: 13px; animation-delay: 0.1s; }
.sinyal i:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.sinyal i:nth-child(4) { height: 22px; animation-delay: 0.3s; }

@keyframes bar {
  50% { opacity: 0.35; transform: scaleY(0.7); }
}

.clock {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--copper-lt);
}

/* Marquee */
.serit {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #0a171b;
  margin: 10px 0 28px;
}

.serit-track {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: kay 28s linear infinite;
  padding: 10px 0;
  font-family: var(--cond);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper-lt);
}

.serit-track b { color: var(--bone); font-weight: 600; }

@keyframes kay {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sliders */
.bolum,
.kagit,
#kanallar,
#uye,
#join,
#konto { scroll-margin-top: 88px; }

.bolum { padding: 28px 0; }

.bolum h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 10px;
}

.bolum .giris {
  color: #d2c7b6;
  max-width: 46rem;
}

.slider-shell {
  position: relative;
  margin-top: 20px;
}

.slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 16px;
  scrollbar-width: thin;
}

.kart {
  scroll-snap-align: start;
  min-width: min(320px, 86vw);
  background: #10262b;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  position: relative;
}

.kart::before,
.kart::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--ink);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.kart::before { left: -9px; }
.kart::after { right: -9px; }

.kart .etiket {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--aqua);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kart h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 8px 0;
}

.kart p { color: #c9c0b3; margin: 0 0 14px; }

.kanal-url {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--copper-lt);
  word-break: break-all;
  margin-bottom: 14px;
}

.slider-btns {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.slider-btns button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.slider-btns button:hover { border-color: var(--copper); color: var(--copper-lt); }

/* Paper articles */
.kagit {
  background: var(--paper);
  color: #1c1612;
  border-radius: 22px;
  padding: clamp(22px, 4vw, 42px);
  margin: 22px 0;
  box-shadow: var(--shadow);
}

.kagit h2,
.kagit h3 { color: #16110e; }

.kagit p,
.kagit li { color: #2a221c; font-size: 1.04rem; }

.kagit a { color: #8a3f1c; text-decoration: underline; }

.kagit .meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: #6d5b4d;
  margin-bottom: 12px;
}

.adimlar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.adimlar li {
  background: #f7f0e4;
  border: 1px dashed #c9b49a;
  border-radius: 14px;
  padding: 14px 14px 14px 16px;
}

.adimlar strong {
  display: block;
  font-family: var(--cond);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #8a3f1c;
}

/* Reviews / event / faq */
.notlar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.not {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(16, 38, 43, 0.7);
}

.yildiz { color: var(--copper-lt); letter-spacing: 2px; }

.etkinlik {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #10262b;
}

.etkinlik-tarih {
  background: var(--copper);
  color: #1a0d08;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--cond);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.etkinlik-tarih b { font-size: 2.4rem; line-height: 1; }
.etkinlik body, .etkinlik-govde { padding: 18px; }
.etkinlik-govde h3 { margin: 0 0 8px; font-family: var(--display); }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq p { color: #d2c7b6; }

.oyun-kart h3 { font-size: 1.2rem; }

/* Dock */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(7, 16, 20, 0.94);
  border-top: 1px solid var(--line);
}

.dock .btn { flex: 1; }

/* Footer */
.ayak {
  border-top: 1px solid var(--line);
  padding: 28px 0 18px;
  color: var(--mute);
  font-size: 0.92rem;
}

.ayak strong { color: var(--bone); }

/* Reveal */
.yuz {
  opacity: 0;
  transform: translateY(12px);
  animation: yuz 0.7s ease forwards;
}

@keyframes yuz {
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .mast-row { grid-template-columns: auto auto 1fr; }
  .hero-grid,
  .notlar,
  .adimlar { grid-template-columns: 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    background: #0d1c20;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    z-index: 45;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-self: start; }
  .cta-pair { justify-self: end; }
  .etkinlik { grid-template-columns: 1fr; }
  .etkinlik-tarih { flex-direction: row; gap: 10px; padding: 12px; }
}

@media (max-width: 640px) {
  .mast-row { min-height: 66px; gap: 8px; }
  .brand-name { font-size: 1.05rem; }
  .brand-name span { display: none; }
  .cta-pair .btn { min-height: 40px; padding: 0 12px; font-size: 0.95rem; }
  .hero { padding-top: 20px; }
  .lede { font-size: 1rem; }
  .kagit { padding: 20px 16px; }
  .kart { min-width: 86vw; }
}

@media (max-width: 420px) {
  .brand-name { display: none; }
  .cta-pair { gap: 6px; }
  .cta-pair .btn { min-width: 84px; padding: 0 10px; font-size: 0.9rem; }
}
