:root {
  --asphalt: #101317;
  --tarmac: #171c21;
  --card: #1d242b;
  --orange: #ff5316;
  --amber: #ffb020;
  --teal: #3ee0c8;
  --bone: #f3ead7;
  --mist: #c9c2b3;
  --line: #2d363d;
  --ink: #0c0e10;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --display: "Syne", "Trebuchet MS", sans-serif;
  --ui: "Archivo Narrow", "Arial Narrow", sans-serif;
  --body: "Newsreader", Georgia, serif;
  --mono: "Share Tech Mono", ui-monospace, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--bone);
  background:
    linear-gradient(180deg, rgba(255, 83, 22, 0.06), transparent 28%),
    repeating-linear-gradient(
      118deg,
      transparent 0 34px,
      rgba(255, 176, 32, 0.035) 34px 35px
    ),
    var(--asphalt);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.75;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--orange);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 80;
  font-family: var(--ui);
}
.skip:focus { top: 12px; }

.lane {
  width: min(1120px, calc(100% - 28px));
  margin-inline: auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.speed {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.speed span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62, 224, 200, 0.45), transparent);
  animation: dash 7s linear infinite;
}
.speed span:nth-child(1) { top: 18%; left: -20%; width: 40%; animation-duration: 6.2s; }
.speed span:nth-child(2) { top: 44%; left: -30%; width: 55%; animation-delay: -2s; }
.speed span:nth-child(3) { top: 72%; left: -10%; width: 36%; animation-delay: -4s; animation-duration: 8s; }

@keyframes dash {
  to { transform: translateX(140vw); }
}

.pit {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(16, 19, 23, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--orange);
}

.pit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
}

.plaka {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.plaka-so {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  background: var(--tarmac);
  border: 2px solid var(--amber);
  border-radius: 8px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--bone);
  box-shadow: inset 0 8px 0 var(--orange), inset 0 -6px 0 var(--teal);
}
.plaka b {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.plaka small {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--teal);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.starter-kume {
  display: flex;
  align-items: center;
  gap: 8px;
}

.starter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.92rem;
  border: 2px solid transparent;
  animation: pulse 2.4s ease-in-out infinite;
}
.starter-giris {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(255, 83, 22, 0.55);
}
.starter-uye {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.starter:hover { filter: brightness(1.08); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 83, 22, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(255, 83, 22, 0); }
}

.burger {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--tarmac);
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bone);
  position: relative;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.kayan {
  overflow: hidden;
  background: var(--amber);
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.kayan-yol {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 8px 0;
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: kay 28s linear infinite;
  white-space: nowrap;
}
@keyframes kay {
  to { transform: translateX(-50%); }
}

.cekmece {
  display: none;
  background: var(--tarmac);
  border-bottom: 1px solid var(--line);
}
.cekmece.is-open { display: block; }
.cekmece ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.cekmece a {
  font-family: var(--ui);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--mist);
}
.cekmece a.is-here,
.cekmece a:hover { color: var(--amber); }

.iz {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--mist);
}
.iz a { color: var(--teal); text-decoration: none; }
.iz span + span::before {
  content: "/";
  margin-right: 8px;
  color: var(--line);
}

.kapak {
  position: relative;
  z-index: 1;
  padding: 28px 0 10px;
}
.kapak-grid {
  display: grid;
  gap: 22px;
}
.kicker {
  margin: 0 0 8px;
  font-family: var(--mono);
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
h1 em {
  font-style: normal;
  color: var(--orange);
}
h2 { font-size: clamp(1.45rem, 4vw, 2rem); }
h3 { font-size: 1.2rem; color: var(--amber); }
.lede {
  margin: 0;
  font-size: 1.15rem;
  color: var(--mist);
  max-width: 62ch;
}

.lambalar {
  display: flex;
  gap: 8px;
  margin: 18px 0 0;
}
.lambalar i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3a2020;
  box-shadow: inset 0 0 0 2px #2a1616;
  display: block;
}
.lambalar i.is-hot { background: #ff3b1f; box-shadow: 0 0 12px #ff3b1f; }
.lambalar i.is-go { background: #24e08a; box-shadow: 0 0 12px #24e08a; }

.plaka-kutu {
  background:
    linear-gradient(180deg, rgba(255, 83, 22, 0.12), transparent 40%),
    var(--card);
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow);
}
.plaka-kutu small {
  font-family: var(--mono);
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.plaka-kutu strong {
  display: block;
  margin: 8px 0 10px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 3.4vw, 1.35rem);
  word-break: break-word;
}
.plaka-kutu p {
  margin: 0 0 14px;
  color: var(--mist);
  font-size: 0.98rem;
}

.sahne { padding: 12px 0 8px; position: relative; z-index: 1; }
.slaytlar {
  display: grid;
  gap: 12px;
}
.slayt {
  display: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  min-height: 168px;
}
.slayt.is-on { display: block; animation: rise 0.45s ease; }
.slayt h2 { color: var(--teal); }
.slayt p { margin: 0; color: var(--mist); }
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.sahne-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.ok, .nokta {
  border: 0;
  cursor: pointer;
}
.ok {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--tarmac);
  color: var(--bone);
  font-size: 1.3rem;
}
.nokta {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}
.nokta.is-on { background: var(--orange); }

.yazi {
  position: relative;
  z-index: 1;
  padding: 28px 0 8px;
  max-width: 74ch;
}
.yazi p { margin: 0 0 16px; }
.yazi p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  float: left;
  line-height: 0.86;
  padding: 8px 10px 0 0;
  color: var(--orange);
}

.band {
  position: relative;
  z-index: 1;
  padding: 28px 0;
}
.intro { color: var(--mist); max-width: 62ch; }

.izgara {
  display: grid;
  gap: 12px;
}
.kart {
  display: block;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  min-height: 100%;
}
.kart:hover { border-color: var(--orange); }
.kart b {
  display: block;
  font-family: var(--display);
  margin-bottom: 8px;
}
.kart span { color: var(--mist); font-size: 0.98rem; }

.not, .etkinlik {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.yildiz { color: var(--amber); letter-spacing: 3px; margin: 0 0 8px; }

.soru {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.soru button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--bone);
  font-family: var(--display);
  font-size: 1.05rem;
  padding: 12px 0;
  cursor: pointer;
}
.soru p {
  display: none;
  margin: 0 0 12px;
  color: var(--mist);
}
.soru.is-open p { display: block; }

.dip {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  padding: 28px 0 110px;
  background: #0b0d10;
  border-top: 3px solid var(--teal);
}
.dip-grid { display: grid; gap: 22px; }
.dip h2 { font-size: 1.1rem; }
.dip p, .dip li { color: var(--mist); }
.dip ul { margin: 0; padding-left: 18px; }
.dip a { color: var(--teal); }
.diller { display: flex; gap: 12px; }
.uyari {
  margin-top: 18px;
  font-size: 0.88rem;
  color: #8d877b;
}

.pitbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(12, 14, 16, 0.94);
  border-top: 2px solid var(--orange);
}
.pitbar .starter { width: 100%; min-height: 48px; animation: pulse 1.8s ease-in-out infinite; }

.cover {
  margin: 16px 0 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}

@media (min-width: 760px) {
  .kapak-grid { grid-template-columns: 1.3fr 0.9fr; align-items: end; }
  .slaytlar { grid-template-columns: 1fr; }
  .izgara { grid-template-columns: 1fr 1fr; }
  .dip-grid { grid-template-columns: 1.3fr 0.8fr 0.9fr; }
  .cekmece ul { justify-content: flex-start; }
  .pitbar { display: grid; }
}

@media (min-width: 980px) {
  .burger { display: none; }
  .cekmece { display: block; }
  .cekmece ul { padding-top: 8px; }
  .izgara { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 420px) {
  .plaka small { display: none; }
  .starter { padding: 0 12px; font-size: 0.82rem; }
  body { font-size: 1rem; }
}
