:root {
  --ink: #141018;
  --velvet: #2a0f1c;
  --velvet-2: #3d1730;
  --wine: #8b2342;
  --gold: #c9a227;
  --gold-2: #e8d08a;
  --cream: #f6efe3;
  --paper: #efe4d2;
  --mute: #8a7d72;
  --line: rgba(201, 162, 39, 0.28);
  --live: #2f9d63;
  --shadow: 0 18px 50px rgba(10, 6, 10, 0.38);
  --display: "Syne", "Segoe UI", sans-serif;
  --ui: "DM Sans", "Segoe UI", sans-serif;
  --read: "Libre Baskerville", Georgia, serif;
  --mono: "Azeret Mono", ui-monospace, monospace;
  --max: 1140px;
  --head: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 162, 39, 0.09), transparent 26%),
    radial-gradient(circle at 92% 18%, rgba(139, 35, 66, 0.18), transparent 28%),
    linear-gradient(180deg, #1a1016 0%, var(--ink) 38%, #1c1218 100%);
  font-family: var(--ui);
  font-size: 1.02rem;
  line-height: 1.7;
  padding-bottom: 96px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, .btn { font: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--ink); }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 90;
  background: var(--gold);
  color: var(--ink);
  padding: 8px 12px;
}
.skip:focus { left: 12px; }

.dust {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.dust i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.22;
  animation: drift 16s linear infinite;
}
.dust i:nth-child(1) { left: 8%; top: 12%; animation-duration: 18s; }
.dust i:nth-child(2) { left: 22%; top: 68%; animation-duration: 22s; }
.dust i:nth-child(3) { left: 41%; top: 24%; animation-duration: 14s; }
.dust i:nth-child(4) { left: 63%; top: 80%; animation-duration: 20s; }
.dust i:nth-child(5) { left: 78%; top: 16%; animation-duration: 17s; }
.dust i:nth-child(6) { left: 91%; top: 52%; animation-duration: 19s; }
@keyframes drift {
  0% { transform: translateY(0) scale(1); opacity: 0.05; }
  40% { opacity: 0.28; }
  100% { transform: translateY(-90px) scale(1.4); opacity: 0; }
}

.wrap { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; position: relative; z-index: 1; }

.sancak {
  background: var(--velvet);
  color: var(--gold-2);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.sancak-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: kay 28s linear infinite;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sancak-track span { padding-right: 48px; }
@keyframes kay {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ust {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 16, 24, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.ust-ic {
  min-height: var(--head);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.arma {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.muhur {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
  animation: nabiz 2.8s ease-in-out infinite;
}
@keyframes nabiz {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(201, 162, 39, 0.22); }
}
.arma b {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.arma small {
  display: block;
  color: var(--mute);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: var(--cream);
  font-size: 0.92rem;
}
.nav a:hover { color: var(--gold-2); }
.cta {
  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;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-giris {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(201, 162, 39, 0.28);
  animation: foil 3.4s linear infinite;
}
.btn-uye {
  background: transparent;
  color: var(--cream);
  border-color: var(--gold);
}
@keyframes foil {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}

.kapak {
  position: relative;
  padding: 42px 0 18px;
}
.kapak-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.kirmizi {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 16px;
  font-weight: 800;
}
.lead {
  font-size: 1.08rem;
  color: #ddd3c6;
  max-width: 58ch;
}
.bilet {
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.12), transparent 40%),
    var(--velvet-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.bilet::before,
.bilet::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--ink);
  border-radius: 50%;
  top: 46%;
}
.bilet::before { left: -11px; }
.bilet::after { right: -11px; }
.bilet h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 8px;
}
.durum {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--live);
}
.durum i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  animation: nabiz 1.6s ease-in-out infinite;
}
.adres {
  margin: 14px 0;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  font-family: var(--mono);
  font-size: 0.86rem;
  word-break: break-all;
}
.yildiz { color: var(--gold-2); letter-spacing: 2px; margin: 6px 0 0; }

.ray {
  margin: 28px 0 8px;
  overflow: hidden;
}
.ray-bas {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 12px;
}
.ray-bas h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin: 0;
}
.oklar { display: flex; gap: 8px; }
.ok {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
}
.ray-ic {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.ray-ic::-webkit-scrollbar { height: 6px; }
.ray-ic::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }
.kart {
  min-width: min(280px, 84vw);
  scroll-snap-align: start;
  background: rgba(61, 23, 48, 0.72);
  border: 1px dashed var(--line);
  border-radius: 16px;
  padding: 16px;
}
.kart strong { display: block; font-family: var(--display); margin-bottom: 6px; }
.kart p { margin: 0; color: #d8cfc3; font-size: 0.94rem; }

.sec {
  padding: 36px 0;
}
.folio {
  background: var(--paper);
  color: #2a211c;
  border-radius: 24px;
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.folio h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--velvet);
}
.folio h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 28px 0 10px;
  color: var(--wine);
}
.folio p { font-family: var(--read); font-size: 1.02rem; line-height: 1.85; }
.folio p:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 3.1rem;
  line-height: 0.82;
  padding: 8px 10px 0 0;
  color: var(--wine);
}
.adimlar {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: adim;
}
.adimlar li {
  background: #fff8ee;
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  border-radius: 0 12px 12px 0;
  font-family: var(--ui);
}
.adimlar li::before {
  counter-increment: adim;
  content: counter(adim, decimal-leading-zero);
  display: block;
  font-family: var(--mono);
  color: var(--wine);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.iki {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.yorum {
  background: rgba(61, 23, 48, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.yorum h3 { margin: 8px 0; font-family: var(--display); }
.meta { color: var(--mute); font-size: 0.86rem; }

.sss details {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.sss summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
}
.sss p { margin: 8px 0 0; color: #ddd3c6; }

.etkinlik {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: linear-gradient(90deg, var(--velvet-2), rgba(42, 15, 28, 0.4));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.takvim {
  width: 84px;
  background: var(--paper);
  color: var(--velvet);
  border-radius: 12px;
  text-align: center;
  padding: 10px 6px;
}
.takvim b { display: block; font-size: 1.8rem; font-family: var(--display); }
.takvim span { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }

.iz {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--mute);
  margin: 18px 0 0;
}
.iz a { color: var(--gold-2); text-decoration: none; }

.alt {
  padding: 36px 0 18px;
  color: #c9bdb0;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
.alt a { color: var(--gold-2); }
.diller { display: flex; gap: 12px; flex-wrap: wrap; margin: 10px 0; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20, 16, 24, 0.94);
  border-top: 1px solid var(--line);
}
.dock .btn { flex: 1; }

@media (max-width: 860px) {
  .kapak-grid, .iki { grid-template-columns: 1fr; }
  .nav { display: none; }
  .ust .cta { display: none; }
  .dock { display: flex; }
  body { padding-bottom: 88px; }
  .folio p:first-of-type::first-letter { font-size: 2.4rem; }
  .etkinlik { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .arma small { display: none; }
  .btn { padding: 0 12px; font-size: 0.92rem; }
  .dock .btn { min-height: 48px; }
}
