:root {
  --ink: #0e1014;
  --night: #12141a;
  --desk: #181b22;
  --brass: #c9963a;
  --brass-lt: #e8c470;
  --brass-dk: #8a6022;
  --wax: #b4332a;
  --wax-dk: #7a1c18;
  --paper: #efe4cf;
  --cream: #f7eedc;
  --soot: #2a2622;
  --fog: #9a9386;
  --line: rgba(201, 150, 58, .18);
  --dock-h: 74px;
  --spine: 58px;
  --serif: "Fraunces", "Times New Roman", serif;
  --text: "Literata", "Georgia", serif;
  --ui: "Syne", "Segoe UI", sans-serif;
  --mono: "Azeret Mono", "Consolas", monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(201, 150, 58, .14), transparent 55%),
    repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(255,255,255,.015) 14px, rgba(255,255,255,.015) 15px),
    var(--ink);
  color: var(--paper);
  font-family: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  padding-bottom: calc(var(--dock-h) + 18px);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-lt); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--cream); }

.tz-skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--brass);
  color: var(--ink);
  padding: .5rem 1rem;
  z-index: 80;
}
.tz-skip:focus { left: 12px; }

.tz-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.tz-coins {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.tz-coin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--brass-lt), var(--brass) 46%, var(--brass-dk));
  box-shadow: inset 0 0 0 2px rgba(14,16,20,.25);
  opacity: .28;
  animation: tz-float 16s linear infinite;
}
.tz-coin:nth-child(1) { left: 8%; top: 18%; animation-duration: 18s; }
.tz-coin:nth-child(2) { left: 22%; top: 70%; animation-duration: 22s; width: 12px; height: 12px; }
.tz-coin:nth-child(3) { left: 48%; top: 12%; animation-duration: 20s; }
.tz-coin:nth-child(4) { left: 72%; top: 64%; animation-duration: 17s; width: 22px; height: 22px; }
.tz-coin:nth-child(5) { left: 88%; top: 28%; animation-duration: 24s; }
.tz-coin:nth-child(6) { left: 61%; top: 82%; animation-duration: 19s; width: 10px; height: 10px; }

@keyframes tz-float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-28px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.tz-spine {
  display: none;
}

.tz-ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .04em;
  white-space: nowrap;
  border-bottom: 1px solid var(--brass-dk);
}
.tz-ticker-track {
  display: inline-flex;
  gap: 2.4rem;
  padding: .55rem 0;
  animation: tz-marquee 32s linear infinite;
}
.tz-ticker-track span { padding-right: 2.4rem; }
.tz-ticker--rev {
  background: var(--night);
  color: var(--brass-lt);
  border-top: 1px solid var(--line);
  border-bottom: 0;
}
.tz-ticker--rev .tz-ticker-track { animation-direction: reverse; animation-duration: 40s; }

@keyframes tz-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.tz-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(14,16,20,0), rgba(14,16,20,.92) 28%, var(--ink));
}

.tz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .7rem 1.2rem;
  border-radius: 6px;
  font-family: var(--ui);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.tz-btn-giris {
  background: #d33a30;
  color: #fff8ee;
  box-shadow: 0 0 0 1px var(--wax-dk), 0 8px 24px rgba(180, 51, 42, .35);
  animation: tz-pulse 2.4s ease-in-out infinite;
}
.tz-btn-uye {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass-lt);
  box-shadow: 0 8px 20px rgba(201,150,58,.22);
}
.tz-btn:hover {
  transform: translateY(-1px);
  color: #fff;
}
.tz-btn-uye:hover { background: var(--brass-lt); color: var(--ink); }

@keyframes tz-pulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--wax-dk), 0 8px 24px rgba(180, 51, 42, .32); }
  50% { box-shadow: 0 0 0 6px rgba(180, 51, 42, .16), 0 10px 28px rgba(180, 51, 42, .45); }
}

.tz-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.tz-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  padding: 16px 0 10px;
}

.tz-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.tz-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ui);
  font-weight: 800;
  background: radial-gradient(circle at 32% 28%, var(--brass-lt), var(--brass) 50%, var(--brass-dk));
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(14,16,20,.2);
}
.tz-brand small {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--fog);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tz-brand strong {
  display: block;
  font-family: var(--ui);
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.tz-nav,
.tz-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--ui);
  font-size: .86rem;
  font-weight: 700;
}
.tz-nav a,
.tz-langs a {
  color: var(--fog);
  text-decoration: none;
}
.tz-nav a:hover,
.tz-langs a:hover,
.tz-langs a[aria-current="page"] { color: var(--brass-lt); }

.tz-crumbs {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--fog);
  padding: 4px 0 10px;
}
.tz-crumbs a { color: var(--fog); }

.tz-hero {
  display: grid;
  gap: 22px;
  padding: 18px 0 8px;
}
.tz-kicker {
  margin: 0 0 .4rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brass);
}
.tz-hero h1 {
  margin: 0 0 .8rem;
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2rem, 6vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--cream);
}
.tz-lede {
  margin: 0 0 1.2rem;
  max-width: 62ch;
  font-size: 1.08rem;
  color: rgba(239, 228, 207, .9);
}
.tz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tz-hero-actions .tz-btn { min-width: 150px; }

.tz-window {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  border: 3px solid var(--brass);
  background:
    linear-gradient(180deg, rgba(201,150,58,.12), transparent 40%),
    var(--desk);
  box-shadow: 0 0 0 6px rgba(14,16,20,.55), 0 18px 40px rgba(0,0,0,.35);
}
.tz-gate {
  min-height: 132px;
  padding: 18px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  border-radius: 4px;
}
.tz-gate b {
  font-family: var(--ui);
  font-size: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tz-gate span {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tz-gate--in {
  background: linear-gradient(160deg, #d2473c, var(--wax-dk));
  color: #fff8ee;
}
.tz-gate--up {
  background: rgba(201,150,58,.08);
  color: var(--brass-lt);
  border: 1px dashed var(--brass);
}

.tz-section { padding: 2.4rem 0; }

.tz-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  margin-bottom: 1rem;
}
.tz-head h2,
.tz-paper h2,
.tz-faq h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 560;
  line-height: 1.2;
  color: var(--cream);
}

.tz-muted { color: var(--fog); font-size: .92rem; }

.tz-tickets {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.tz-ticket {
  scroll-snap-align: start;
  position: relative;
  min-height: 188px;
  padding: 18px 18px 18px 28px;
  background: var(--paper);
  color: var(--soot);
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 62%, 10px 56%, 0 50%);
}
.tz-ticket::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background: repeating-linear-gradient(180deg, var(--ink) 0 10px, transparent 10px 20px);
}
.tz-ticket strong {
  display: block;
  font-family: var(--ui);
  font-size: 1.1rem;
  color: var(--ink);
  margin: .35rem 0 .4rem;
}
.tz-ticket em {
  display: block;
  font-style: normal;
  font-size: .92rem;
  color: #4a4338;
}
.tz-ticket-code {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--wax);
}
.tz-ticket-go {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--ui);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--wax);
}

.tz-grid-2 {
  display: grid;
  gap: 18px;
}

.tz-paper {
  background: var(--paper);
  color: var(--soot);
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 2px 10px 10px 2px;
  box-shadow: 8px 10px 0 rgba(0,0,0,.22);
  border-left: 8px solid var(--wax);
}
.tz-paper h2,
.tz-paper h3 { color: var(--ink); }
.tz-paper p { margin: 0 0 1rem; }
.tz-paper a { color: var(--wax-dk); }
.tz-drop::first-letter {
  font-family: var(--serif);
  font-size: 3.1rem;
  float: left;
  line-height: .82;
  padding: .12rem .45rem .1rem 0;
  color: var(--wax);
}

.tz-steps {
  margin: 0;
  padding-left: 1.15rem;
}
.tz-steps li { margin: .55rem 0; }

.tz-card {
  background: var(--desk);
  border: 1px solid var(--line);
}
.tz-card-body { padding: 1rem 1.1rem 1.2rem; }
.tz-card h3 {
  margin: 0 0 .4rem;
  font-family: var(--ui);
  font-size: 1.05rem;
}

.tz-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--desk);
  min-height: 220px;
}
.tz-slide {
  display: none;
  margin: 0;
}
.tz-slide.is-on { display: block; }
.tz-slide figcaption {
  padding: .7rem 1rem .9rem;
  font-family: var(--ui);
  font-weight: 700;
  background: var(--night);
}
.tz-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.tz-arrow,
.tz-dot {
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--brass-lt);
  font-family: var(--ui);
  cursor: pointer;
}
.tz-arrow {
  width: 42px;
  height: 42px;
  font-size: 1.3rem;
}
.tz-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  padding: 0;
}
.tz-dot.is-on { background: var(--brass); }

.tz-review {
  display: grid;
  gap: 16px;
  align-items: center;
}
.tz-score {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 2.2rem;
  background: radial-gradient(circle at 32% 28%, var(--brass-lt), var(--brass) 55%, var(--brass-dk));
  color: var(--ink);
  box-shadow: 0 0 0 8px rgba(201,150,58,.12);
}
.tz-stars { color: var(--brass); letter-spacing: .15em; margin: .2rem 0 .6rem; }

.tz-event {
  display: grid;
  gap: 0;
  border: 1px dashed var(--brass);
  background: var(--desk);
  overflow: hidden;
}
.tz-event-copy { padding: 1.2rem 1.15rem 1.4rem; }

.tz-faq details {
  border-top: 1px solid rgba(42,38,34,.12);
  padding: .7rem 0;
}
.tz-faq summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 700;
  color: var(--ink);
}
.tz-faq details p { margin: .55rem 0 0; }

.tz-footer {
  padding: 1.4rem 0 2rem;
  color: var(--fog);
  font-size: .92rem;
}
.tz-notice { max-width: 70ch; }

@media (min-width: 860px) {
  body { padding-left: var(--spine); }
  .tz-spine {
    display: flex;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--spine);
    z-index: 6;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--brass-lt), var(--brass) 40%, var(--brass-dk));
    color: var(--ink);
    font-family: var(--ui);
    font-weight: 800;
    letter-spacing: .28em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .tz-hero {
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
    gap: 36px;
    min-height: 58vh;
    padding-top: 28px;
  }
  .tz-hero h1 { font-size: clamp(2.1rem, 3.4vw, 2.9rem); }
  .tz-grid-2 { grid-template-columns: 1.15fr .85fr; align-items: start; }
  .tz-paper { padding: 1.8rem 2rem 2rem; }
  .tz-review { grid-template-columns: 120px 1fr; }
  .tz-event { grid-template-columns: 1.1fr .9fr; }
  .tz-dock {
    left: var(--spine);
    max-width: 420px;
    margin: 0 0 12px 18px;
    background: transparent;
    padding: 0;
  }
}

@media (max-width: 859px) {
  .tz-nav { display: none; }
  .tz-window { grid-template-columns: 1fr; }
  .tz-hero h1 { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .tz-paper { padding: 1.15rem 1rem 1.3rem; }
  .tz-tickets { grid-auto-columns: 78%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tz-ticker-track,
  .tz-coin,
  .tz-btn-giris { animation: none; }
}
