:root {
  --night: #100e1c;
  --ink: #161328;
  --panel: #1d1833;
  --line: rgba(232, 214, 176, 0.16);
  --cream: #f4ead8;
  --paper: #efe4cf;
  --mute: #b7ad9a;
  --lime: #d6f24a;
  --lime-2: #e9ff7a;
  --orchid: #c084fc;
  --ember: #ff5d3a;
  --ok: #7dcea0;
  --head: "Bricolage Grotesque", sans-serif;
  --body: "Source Serif 4", "Georgia", serif;
  --ui: "Outfit", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 22px 50px rgba(6, 4, 16, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; }
body {
  margin: 0;
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.72;
  background: var(--night);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(720px 380px at 8% -8%, rgba(192, 132, 252, 0.22), transparent 58%),
    radial-gradient(640px 340px at 96% 4%, rgba(214, 242, 74, 0.14), transparent 52%),
    radial-gradient(800px 420px at 70% 110%, rgba(255, 93, 58, 0.1), transparent 55%),
    linear-gradient(165deg, #100e1c 0%, #15122a 48%, #1a1430 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  animation: grain 7s steps(5) infinite;
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-10px, 6px); }
  50% { transform: translate(8px, -8px); }
  75% { transform: translate(-4px, -3px); }
  100% { transform: translate(0, 0); }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--lime); text-underline-offset: 3px; }
a:hover { color: var(--cream); }
.wrap { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }

.skip {
  position: absolute;
  left: 10px;
  top: -48px;
  background: var(--lime);
  color: #14110a;
  padding: 8px 12px;
  z-index: 90;
  font-family: var(--ui);
}
.skip:focus { top: 10px; }

.ust {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(16, 14, 28, 0.82);
  border-bottom: 1px solid var(--line);
}
.ust-ic {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
}
.marka {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.marka img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}
.marka strong {
  font-family: var(--head);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.marka span {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  margin-left: 4px;
}
.eq i {
  width: 3px;
  background: var(--lime);
  border-radius: 2px;
  animation: eq 1.1s ease-in-out infinite;
}
.eq i:nth-child(1) { height: 6px; animation-delay: 0s; }
.eq i:nth-child(2) { height: 14px; animation-delay: .15s; }
.eq i:nth-child(3) { height: 9px; animation-delay: .3s; }
.eq i:nth-child(4) { height: 16px; animation-delay: .08s; }
@keyframes eq {
  0%, 100% { transform: scaleY(.45); }
  50% { transform: scaleY(1); }
}

.nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  font-family: var(--ui);
  font-size: 0.92rem;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  opacity: .86;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--lime); opacity: 1; }

.kapi-cift {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.btn {
  font-family: var(--ui);
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-giris {
  background: var(--lime);
  color: #17140b;
  box-shadow: 0 0 0 0 rgba(214, 242, 74, 0.55);
  animation: pulse 2.4s ease-out infinite;
}
.btn-uye {
  background: var(--ember);
  color: #fff8f4;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(214, 242, 74, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(214, 242, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 242, 74, 0); }
}

.serit {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #120f22;
}
.serit-ic {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 9px 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  animation: kay 28s linear infinite;
}
.serit-ic b { color: var(--lime); font-weight: 600; }
@keyframes kay {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero {
  padding: 42px 0 20px;
}
.hero-izgara {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
}
.kutu {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orchid);
  margin: 0 0 10px;
}
h1, h2, h3, h4 {
  font-family: var(--head);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.28rem; }
.lead {
  font-size: 1.12rem;
  color: #efe6d4;
  max-width: 38rem;
}
.hero-aksiyon { margin-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }

.bilet {
  position: relative;
  background: var(--paper);
  color: #1c1610;
  border-radius: 26px;
  padding: 26px 24px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.bilet::before,
.bilet::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--night);
  border-radius: 50%;
  top: 58%;
}
.bilet::before { left: -11px; }
.bilet::after { right: -11px; }
.bilet-ust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6d6456;
}
.nokta {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1f9d58;
  box-shadow: 0 0 0 6px rgba(31, 157, 88, 0.18);
  animation: blink 1.6s ease infinite;
}
@keyframes blink {
  50% { opacity: .35; }
}
.bilet h2 { color: #16120c; }
.adres {
  font-family: var(--mono);
  font-size: 0.92rem;
  background: #1a1730;
  color: var(--lime);
  border-radius: 12px;
  padding: 12px 14px;
  word-break: break-all;
  margin: 12px 0 16px;
}
.bilet .kapi-cift { display: grid; grid-template-columns: 1fr 1fr; }
.bilet .btn { width: 100%; }

.kesik {
  border: 0;
  border-top: 1px dashed #c9b89a;
  margin: 16px 0;
}

.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 14px;
  scrollbar-width: thin;
}
.kart {
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  min-height: 170px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s ease, border-color .2s ease;
}
.kart:hover { transform: translateY(-4px); border-color: rgba(214, 242, 74, 0.4); }
.kart small {
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orchid);
  font-size: 0.7rem;
}
.kart h3 { margin: 0; font-size: 1.15rem; }
.kart p { margin: 0; color: var(--mute); font-size: 0.98rem; }

.bolum { padding: 36px 0; }
.kagit {
  background: var(--paper);
  color: #231c14;
  border-radius: 28px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.kagit h2, .kagit h3 { color: #16120c; }
.kagit p, .kagit li { color: #332a20; }
.kagit a { color: #8a3d12; }
.drop::first-letter {
  font-family: var(--head);
  font-size: 2.55rem;
  float: left;
  line-height: 0.92;
  padding: 4px 12px 0 0;
  color: #9a3d18;
}
.adimlar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.adim {
  background: #fff8ec;
  border-radius: 18px;
  padding: 16px;
  border: 1px solid #e6d7b8;
}
.adim b {
  font-family: var(--mono);
  color: #8a3d12;
  font-size: 0.78rem;
}

.iki {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.not,
.sss,
.olay,
.puan {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
}
.sss details {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.sss summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 650;
}
.yildiz { color: var(--lime); letter-spacing: 2px; }

.alt {
  padding: 36px 0 110px;
  color: var(--mute);
  font-size: 0.95rem;
}
.alt-izgara {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}
.alt a { color: var(--cream); text-decoration: none; }
.diller { display: flex; gap: 12px; font-family: var(--mono); font-size: 0.8rem; }

.dock {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(18, 16, 38, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}
.dock .btn { width: 100%; padding: 13px 10px; font-size: 1rem; }

.dalga {
  height: 70px;
  overflow: hidden;
  opacity: .55;
}
.dalga svg { width: 200%; animation: dal 12s linear infinite; }
@keyframes dal {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 920px) {
  .hero-izgara,
  .adimlar,
  .iki,
  .alt-izgara { grid-template-columns: 1fr; }
  .nav { display: none; }
  .ust-ic { min-height: 68px; }
  .kapi-cift .btn { padding: 10px 12px; font-size: 0.92rem; }
  .dock { display: grid; }
  body { padding-bottom: 92px; }
  .alt { padding-bottom: 24px; }
}

@media (max-width: 520px) {
  body { font-size: 17px; }
  .marka strong { font-size: 1rem; }
  .marka span,
  .eq { display: none; }
  .hero { padding-top: 24px; }
  .bilet { padding: 20px 16px; }
  .kagit { padding: 20px 16px; }
}
