:root {
  --ink: #1b1214;
  --wine: #7a1833;
  --wine-deep: #4a1020;
  --rose: #c45b6a;
  --brass: #c9a25b;
  --brass-hot: #e8c56b;
  --cream: #f4ead8;
  --paper: #fff8ed;
  --fog: #e7d8c2;
  --mute: #6d5c55;
  --coral: #e23b2f;
  --line: rgba(122, 24, 51, 0.16);
  --display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --serif: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --ui: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --mono: "Share Tech Mono", "Consolas", monospace;
  --hand: "Caveat", "Segoe Script", cursive;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  scroll-padding-bottom: 96px;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--serif);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(201, 162, 91, 0.18), transparent 50%),
    repeating-linear-gradient(90deg, rgba(122, 24, 51, 0.03) 0 1px, transparent 1px 72px),
    var(--cream);
  padding-bottom: 86px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--wine); }
button, a { -webkit-tap-highlight-color: transparent; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--wine);
  color: #fff;
  padding: 8px 12px;
  z-index: 200;
}
.skip:focus { top: 12px; }

.bulbs {
  display: flex;
  gap: 9px;
  justify-content: center;
  padding: 8px 12px 4px;
  background: var(--wine-deep);
}
.bulbs i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brass-hot);
  box-shadow: 0 0 8px rgba(232, 197, 107, 0.7);
  animation: flicker 1.8s infinite;
}
.bulbs i:nth-child(2n) { animation-delay: 0.3s; }
.bulbs i:nth-child(3n) { animation-delay: 0.7s; }
@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  40% { opacity: 0.45; }
  70% { opacity: 0.9; transform: scale(1.15); }
}

.foyerbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.foyerbar-in {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.mark img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--brass);
}
.mark b {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}
.mark small {
  display: block;
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wine);
}

.menu {
  display: flex;
  gap: 16px;
  margin-left: auto;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
}
.menu a {
  text-decoration: none;
  color: var(--ink);
}
.menu a:hover { color: var(--wine); }

.pair {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}
.btn {
  font-family: var(--ui);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-in {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 0 #9d221a, 0 12px 22px rgba(226, 59, 47, 0.28);
  animation: pulsein 2.4s ease-in-out infinite;
}
.btn-up {
  background: var(--brass-hot);
  color: #3a2508;
  box-shadow: 0 8px 0 #9a7a2e;
}
@keyframes pulsein {
  0%, 100% { box-shadow: 0 8px 0 #9d221a, 0 12px 22px rgba(226, 59, 47, 0.28); }
  50% { box-shadow: 0 8px 0 #9d221a, 0 16px 30px rgba(226, 59, 47, 0.45); }
}
.btn-copy {
  background: var(--wine);
  color: #fff;
  box-shadow: none;
  border-radius: 12px;
}
.btn-copy.is-done { background: #2f6b3a; }
.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
}

.burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  font-size: 18px;
}

.drawer {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 8px 16px 14px;
  font-family: var(--ui);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.drawer.is-open { display: flex; }
.drawer a { text-decoration: none; color: var(--ink); font-weight: 600; }

.serit {
  overflow: hidden;
  background: var(--wine);
  color: #f8e7c8;
  border-top: 1px solid rgba(232, 197, 107, 0.35);
  border-bottom: 1px solid rgba(232, 197, 107, 0.35);
}
.serit-yol {
  display: flex;
  width: max-content;
  animation: kay 28s linear infinite;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 0;
}
.serit.ters .serit-yol { animation-direction: reverse; animation-duration: 34s; }
.serit:hover .serit-yol,
.ray:hover .ray-yol { animation-play-state: paused; }
.serit b { padding: 0 28px; white-space: nowrap; }
.serit i { color: var(--brass-hot); font-style: normal; padding: 0 10px; }
@keyframes kay {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.kutu { max-width: 1180px; margin: 0 auto; padding: 0 16px; }

.kapak {
  position: relative;
  background:
    linear-gradient(160deg, var(--wine-deep), var(--wine) 55%, #9a2744);
  color: #fff8ed;
  overflow: hidden;
  padding: 28px 0 54px;
}
.kapak:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  background:
    radial-gradient(circle at 12px 0, var(--cream) 10px, transparent 11px) 0 100% / 24px 18px repeat-x;
}
.yuzer {
  position: absolute;
  border: 1px dashed rgba(232, 197, 107, 0.35);
  border-radius: 50%;
  pointer-events: none;
  animation: floaty 9s ease-in-out infinite;
}
.y1 { width: 180px; height: 180px; right: -40px; top: 20px; }
.y2 { width: 90px; height: 90px; left: 8%; bottom: 40px; animation-delay: -3s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
}

.iz {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #f0d7b0;
  margin: 0 0 14px;
}
.iz a { color: var(--brass-hot); text-decoration: none; }

.kapak-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.kicker {
  font-family: var(--hand);
  font-size: 28px;
  color: var(--brass-hot);
  margin: 0 0 6px;
}
h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 68px);
  line-height: 0.95;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
h1 em {
  font-style: italic;
  color: var(--brass-hot);
}
.lede {
  font-size: 18px;
  line-height: 1.55;
  max-width: 38ch;
  color: #f6e6d0;
  margin: 0 0 20px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-actions .btn { min-width: 150px; font-size: 16px; }
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-family: var(--ui);
  font-size: 12px;
  color: #ebcfc0;
}

.billet {
  background: var(--paper);
  color: var(--ink);
  border-radius: 18px 18px 8px 8px;
  position: relative;
  min-height: 280px;
  box-shadow: 12px 18px 0 rgba(26, 10, 14, 0.22);
  overflow: hidden;
}
.billet:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 46px;
  height: 10px;
  background:
    radial-gradient(circle, var(--wine) 4px, transparent 5px) 0 0 / 16px 10px repeat-x;
  opacity: 0.2;
}
.slide {
  display: none;
  padding: 58px 22px 22px;
}
.slide.is-on { display: block; animation: cardin 0.45s ease; }
@keyframes cardin {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}
.slide .no {
  font-family: var(--mono);
  color: var(--wine);
  font-size: 12px;
  letter-spacing: 0.16em;
}
.slide h2 {
  font-family: var(--display);
  font-size: 30px;
  margin: 8px 0 10px;
  line-height: 1.05;
}
.slide p { margin: 0; color: var(--mute); font-size: 16px; }
.slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px 14px;
}
.dots { display: flex; gap: 7px; }
.dots button, .arr {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #d8c4ae;
  padding: 0;
  cursor: pointer;
}
.dots button.on { background: var(--wine); width: 28px; border-radius: 8px; }
.arr {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-size: 16px;
}

#guncel-adres,
#uye,
#giris,
#hakkinda,
#bonuslar,
#oyunlar,
#sss {
  scroll-margin-top: 84px;
}
.pano {
  margin-top: -8px;
  margin-bottom: 12px;
  background: var(--paper);
  border: 2px solid var(--wine);
  border-radius: 20px;
  padding: 22px 22px 28px;
  box-shadow: 8px 8px 0 var(--wine-deep);
  position: relative;
}
.murekkep {
  position: absolute;
  right: 18px;
  top: -18px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--wine);
  color: var(--wine);
  font-family: var(--display);
  display: grid;
  place-items: center;
  transform: rotate(12deg);
  background: rgba(255, 248, 237, 0.95);
  font-size: 13px;
  letter-spacing: 0.08em;
  animation: wobble 5s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(12deg); }
  50% { transform: rotate(-6deg); }
}
.pano h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 8px;
}
.adres-satir {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  background: #2a151b;
  color: #f6e6d0;
  padding: 12px 14px;
  border-radius: 14px;
  margin: 14px 0;
}
.adres-satir a {
  font-family: var(--mono);
  color: var(--brass-hot);
  text-decoration: none;
  word-break: break-all;
  flex: 1;
  min-width: 0;
}
.etiketler { display: flex; flex-wrap: wrap; gap: 8px; }
.etiket {
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 700;
  background: #f3d9c4;
  color: var(--wine-deep);
  padding: 6px 10px;
  border-radius: 999px;
}

.defter {
  background: var(--paper);
  margin: 28px auto;
  padding: 28px 22px 32px;
  border-radius: 4px 22px 22px 4px;
  box-shadow: 0 16px 40px rgba(80, 30, 40, 0.08);
  border-left: 10px solid var(--wine);
  position: relative;
}
.defter:after {
  content: "";
  position: absolute;
  inset: 12px 14px 12px auto;
  width: 1px;
  border-right: 1px dashed rgba(122, 24, 51, 0.25);
}
.byline {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wine);
  margin: 0 0 8px;
}
.defter h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  margin: 0 0 16px;
}
.defter h3 {
  font-family: var(--display);
  font-size: 26px;
  margin: 22px 0 8px;
}
.kolon {
  columns: 1;
  font-size: 18px;
  line-height: 1.7;
}
@media (min-width: 860px) {
  .kolon { columns: 2; column-gap: 36px; }
  .kolon h3, .kolon .alinti, .kolon .uyari { column-span: all; }
}
.kolon p { margin: 0 0 14px; }
.alinti {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.25;
  color: var(--wine);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin: 18px 0;
}
.uyari {
  background: #fff1d8;
  border: 1px solid #e2c48a;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 16px;
  margin: 16px 0;
}

.gece {
  background: var(--wine-deep);
  color: #f6e6d0;
  padding: 36px 0 20px;
  margin: 36px 0;
  overflow: hidden;
}
.gece h2 {
  font-family: var(--display);
  font-size: 40px;
  margin: 0 16px 8px;
}
.ray { overflow: hidden; margin-top: 18px; }
.ray-yol {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: kay 22s linear infinite;
}
.oyun {
  width: 200px;
  min-height: 120px;
  background: linear-gradient(180deg, #6b1d32, #3d121f);
  border: 1px solid rgba(232, 197, 107, 0.35);
  border-radius: 16px;
  padding: 16px;
  color: #fff8ed;
}
.oyun strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
}
.oyun span {
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-hot);
}

.ikili {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px auto;
}
.kart {
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
}
.puan {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.9;
  margin: 0;
  color: var(--wine);
}
.yildiz { color: var(--brass); letter-spacing: 2px; font-size: 20px; }

.sss { margin: 10px auto 40px; }
.sss h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
}
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 16px;
  margin: 10px 0;
}
summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 700;
  padding: 12px 0;
}
details p { margin: 0 0 14px; }

.dip {
  background: #1b1214;
  color: #e8d4c4;
  padding: 32px 0 110px;
  font-family: var(--ui);
  font-size: 13px;
}
.diller { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.diller a { color: var(--brass-hot); }
.dip a { color: var(--brass-hot); }

.iskele {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 10px calc(10px + env(safe-area-inset-bottom));
  background: rgba(27, 18, 20, 0.92);
  backdrop-filter: blur(8px);
}
.iskele .btn { width: 100%; border-radius: 14px; }

@media (max-width: 860px) {
  .menu, .foyerbar-in > .pair { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
  .kapak-grid, .ikili { grid-template-columns: 1fr; }
  .murekkep { width: 60px; height: 60px; font-size: 11px; }
  h1 { font-size: 38px; }
  .lede { font-size: 17px; }
  .hero-actions { position: relative; z-index: 2; }
  .hero-actions .btn { flex: 1; min-width: 140px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
