:root {
  --void: #071018;
  --navy: #0b1a27;
  --steel: #123044;
  --panel: #102433;
  --cream: #f3ead8;
  --cream-dim: #d8cfbc;
  --brass: #e3b23c;
  --brass-deep: #b8891c;
  --signal: #e4232d;
  --signal-deep: #b3141c;
  --ice: #7ec8b8;
  --mute: #8a97a3;
  --line: rgba(243, 234, 216, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --ui: "Public Sans", "Segoe UI", sans-serif;
  --read: "Source Serif 4", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1160px;
  --dock-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--cream);
  background: var(--void);
  font-family: var(--read);
  font-size: 1.0625rem;
  line-height: 1.75;
  padding-bottom: calc(var(--dock-h) + 16px);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brass); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button, input { font: inherit; }
button { cursor: pointer; border: 0; }
::selection { background: var(--brass); color: var(--void); }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 90;
  background: var(--brass);
  color: var(--void);
  padding: 8px 12px;
  font-family: var(--ui);
  font-weight: 700;
}
.skip:focus { left: 10px; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.07;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.stripes {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 46px,
      rgba(20, 52, 72, 0.45) 46px 56px
    ),
    radial-gradient(circle at 88% 8%, rgba(228, 35, 45, 0.16), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(227, 178, 60, 0.1), transparent 30%),
    var(--void);
}

.page { position: relative; z-index: 2; }

.wrap {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.tape {
  background: var(--signal);
  color: #fff;
  overflow: hidden;
  border-bottom: 3px solid var(--brass);
}
.tape-track {
  display: flex;
  width: max-content;
  gap: 2.6rem;
  padding: 0.52rem 0;
  animation: drift 36s linear infinite;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}
.tape b { color: #ffe38a; }
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 16, 24, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.top-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border: 2px solid var(--brass);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  box-shadow: inset 0 -6px 0 var(--signal);
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
}
.brand small {
  display: block;
  font-family: var(--ui);
  font-size: 0.68rem;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: none;
  gap: 16px;
  font-family: var(--ui);
  font-size: 0.86rem;
  font-weight: 600;
}
.nav a { color: var(--cream-dim); text-decoration: none; }
.nav a:hover { color: var(--brass); }

.langs {
  display: flex;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
}
.langs a {
  color: var(--mute);
  text-decoration: none;
  padding: 3px 5px;
}
.langs a[aria-current="page"] { color: var(--brass); }

.cta-row {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  font-family: var(--ui);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
}
.btn-in {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(228, 35, 45, 0.6);
  animation: pulse 2.1s ease-out infinite;
}
.btn-up {
  background: var(--brass);
  color: #1a1203;
}
.btn:hover { filter: brightness(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(228, 35, 45, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(228, 35, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(228, 35, 45, 0); }
}

.hero {
  padding: 28px 0 10px;
}
.hero-grid {
  display: grid;
  gap: 22px;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice);
  margin: 0 0 8px;
}
.hero h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 8vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.lead {
  margin: 0 0 18px;
  max-width: 62ch;
  color: var(--cream-dim);
  font-size: 1.08rem;
}
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-family: var(--ui);
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 18px;
}
.meta-line b { color: var(--brass); font-weight: 700; }

.slider {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 220px;
}
.slider::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    #f3ead8 0 8px,
    transparent 8px 14px
  );
  opacity: 0.85;
}
.slides { position: relative; }
.slide {
  display: none;
  padding: 28px 22px 28px 28px;
}
.slide.is-on { display: block; animation: rise 0.45s ease; }
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
.slide-no {
  font-family: var(--display);
  font-size: 2.4rem;
  color: var(--signal);
  line-height: 1;
  margin-bottom: 6px;
}
.slide h2 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.slide p { margin: 0 0 16px; color: var(--cream-dim); }
.slide-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.slide-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 10px 28px;
  background: #0a1924;
  border-top: 1px solid var(--line);
  font-family: var(--ui);
}
.dots { display: flex; gap: 6px; }
.dot {
  width: 10px;
  height: 10px;
  background: #3a5160;
}
.dot.is-on { background: var(--brass); }
.slide-btns button {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
  min-height: 36px;
  padding: 0 10px;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 700;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 16px 0 4px;
  font-family: var(--ui);
  font-size: 0.78rem;
  color: var(--mute);
}
.crumbs a { color: var(--cream-dim); text-decoration: none; }
.crumbs span { color: var(--brass); }

.kuponlar {
  display: grid;
  gap: 12px;
  padding: 8px 0 28px;
}
.kupon {
  background: var(--cream);
  color: #1a140c;
  padding: 16px 16px 16px 20px;
  position: relative;
  box-shadow: var(--shadow);
}
.kupon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 6px;
  background: repeating-linear-gradient(
    var(--signal) 0 7px,
    var(--brass) 7px 14px
  );
}
.kupon small {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a3a1c;
}
.kupon strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 4px 0;
}
.kupon p { margin: 0 0 10px; font-family: var(--ui); font-size: 0.9rem; }
.kupon a {
  color: #8d1218;
  font-family: var(--ui);
  font-weight: 800;
}

.sec,
#guncel-adres {
  scroll-margin-top: 92px;
  scroll-margin-bottom: 110px;
}
.sec { padding: 28px 0; }
.sec h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.sec h3 {
  margin: 22px 0 8px;
  font-family: var(--display);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.prose p { margin: 0 0 14px; color: var(--cream-dim); }
.prose p:first-of-type::first-letter {
  font-family: var(--display);
  font-size: 3.1rem;
  float: left;
  line-height: 0.8;
  padding: 6px 8px 0 0;
  color: var(--brass);
}
.byline {
  font-family: var(--ui);
  font-size: 0.8rem;
  color: var(--mute);
  margin-bottom: 14px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  counter-reset: adim;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 16px 16px 16px 64px;
  position: relative;
}
.step::before {
  counter-increment: adim;
  content: counter(adim, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 14px;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--signal);
}
.step h3 { margin: 0 0 6px; font-size: 1.25rem; }
.step p { margin: 0; color: var(--cream-dim); }

.split {
  display: grid;
  gap: 22px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
}
.card h3 { margin-top: 0; }

.score {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  background: #0a1924;
  border: 1px solid var(--line);
  padding: 16px;
  margin: 16px 0;
}
.score-num {
  font-family: var(--display);
  font-size: 3.4rem;
  line-height: 0.85;
  color: var(--brass);
  text-align: center;
}
.score small { display: block; font-family: var(--ui); font-size: 0.75rem; color: var(--mute); }
.bars { display: grid; gap: 8px; font-family: var(--ui); font-size: 0.82rem; }
.bar {
  display: grid;
  grid-template-columns: 110px 1fr 28px;
  gap: 8px;
  align-items: center;
}
.bar i {
  display: block;
  height: 7px;
  background: #244056;
  position: relative;
}
.bar i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: var(--brass);
}

.reviews { display: grid; gap: 12px; }
.rev {
  border-left: 3px solid var(--brass);
  padding: 4px 0 4px 14px;
}
.rev strong { display: block; font-family: var(--ui); }
.stars { color: var(--brass); letter-spacing: 2px; font-size: 0.85rem; }

.event {
  display: grid;
  gap: 8px;
  background: linear-gradient(180deg, #15100a, #0e1c27);
  border: 1px solid rgba(227, 178, 60, 0.35);
  padding: 20px;
}
.event time {
  font-family: var(--mono);
  color: var(--ice);
  font-size: 0.8rem;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.faq summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 700;
  color: var(--cream);
}
.faq p { margin: 8px 0 4px; color: var(--cream-dim); }

.foot {
  margin-top: 20px;
  padding: 28px 0 20px;
  border-top: 1px solid var(--line);
  font-family: var(--ui);
  font-size: 0.86rem;
  color: var(--mute);
}
.foot a { color: var(--cream-dim); }
.age {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--brass);
  color: var(--brass);
  font-weight: 800;
  margin-right: 8px;
}

.dock {
  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(7, 16, 24, 0.94);
  border-top: 2px solid var(--brass);
  backdrop-filter: blur(12px);
}
.dock .btn { width: 100%; min-height: 48px; font-size: 0.95rem; }

.note {
  font-family: var(--ui);
  font-size: 0.86rem;
  color: var(--mute);
  border: 1px dashed rgba(227, 178, 60, 0.35);
  padding: 12px 14px;
  margin: 16px 0;
}

@media (min-width: 760px) {
  .nav { display: flex; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
  .kuponlar { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1.2fr 0.8fr; }
  .reviews { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 980px) {
  .dock { display: none; }
  body { padding-bottom: 24px; }
}
@media (max-width: 979px) {
  .slide-btns { display: none; }
  .slide-nav {
    position: absolute;
    top: 10px;
    right: 12px;
    left: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .slider { padding-bottom: 0; }
}

@media (max-width: 640px) {
  .langs { display: none; }
  .nav { display: none; }
}
@media (max-width: 520px) {
  .brand small { display: none; }
  .brand strong { font-size: 1.15rem; }
  .top .btn { padding: 0 10px; font-size: 0.74rem; min-height: 42px; }
}
@media (max-width: 380px) {
  .brand > span:not(.brand-mark) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
