:root {
  --paper: #f3eadc;
  --paper-2: #e7d9c3;
  --cream: #fff8ee;
  --ink: #1b1612;
  --ink-2: #3a3128;
  --mist: #6a5e52;
  --navy: #17233f;
  --navy-2: #243457;
  --signal: #d3222a;
  --signal-2: #9f181e;
  --gold: #b8893a;
  --line: rgba(27, 22, 18, 0.12);
  --shadow: 0 16px 40px rgba(23, 35, 63, 0.12);
  --ui: "Albert Sans", "Segoe UI", sans-serif;
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --read: "Newsreader", "Times New Roman", serif;
  --mono: "Fragment Mono", ui-monospace, monospace;
  --max: 1120px;
  --dock: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
#hakkinda, #giris, #uye-ol, #bonuslar, #oyunlar, #sss, #etkinlik, #degerlendirme,
#about, #login, #join, #bonuses, #games, #faq, #event, #ueber, #konto, #boni, #spiele {
  scroll-margin-top: 88px;
}
html, body { margin: 0; padding: 0; }
body {
  background:
    radial-gradient(920px 420px at 8% -8%, rgba(211, 34, 42, 0.07), transparent 58%),
    radial-gradient(700px 380px at 100% 0%, rgba(23, 35, 63, 0.08), transparent 50%),
    var(--paper);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
::selection { background: var(--signal); color: #fff; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 90;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
}
.skip:focus { top: 84px; }

.lane {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.dock {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--dock);
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(23, 35, 63, 0.22);
}
.dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(15px, 3.4vw, 20px);
  min-height: var(--dock);
}
.dock-in {
  background: var(--signal);
  color: #fff;
  animation: pulse 2.4s ease-in-out infinite;
}
.dock-join {
  background: #0f1a33;
  color: #fff8ee;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.dock a:hover { filter: brightness(1.08); }
.dock small {
  display: none;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.82;
  font-size: 12px;
}

@keyframes pulse {
  0%, 100% { box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0); }
  50% { box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.18); }
}

.board {
  background: var(--navy);
  color: #e8d9b0;
  overflow: hidden;
  border-bottom: 4px solid var(--signal);
}
.board-track {
  display: flex;
  width: max-content;
  gap: 42px;
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: sweep 32s linear infinite;
}
.board-track span { white-space: nowrap; }
.board-track b { color: #fff; }

@keyframes sweep {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mast {
  position: relative;
  z-index: 2;
  padding: 16px 0 8px;
}
.mast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 0 0 2px var(--navy);
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.brand em {
  display: block;
  font-style: normal;
  font-size: 12px;
  color: var(--mist);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.nav a:hover { color: var(--signal); }
.langs {
  display: flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
}
.langs a {
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 4px 7px;
  border-radius: 6px;
  color: var(--mist);
}
.langs a[aria-current="page"] {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 0 18px;
  font-size: 13px;
  color: var(--mist);
}
.crumb a { color: var(--ink-2); text-decoration: none; }
.crumb span { opacity: 0.5; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
  padding: 10px 0 36px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 700;
}
.kicker i {
  width: 18px;
  height: 2px;
  background: var(--signal);
}
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.12; }
h1 { font-size: clamp(34px, 5.4vw, 58px); margin: 10px 0 16px; }
h2 { font-size: clamp(28px, 3.6vw, 40px); margin: 0 0 14px; }
h3 { font-size: 22px; margin: 0 0 8px; }
.lead {
  font-family: var(--read);
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.hero p { margin: 0 0 14px; color: var(--ink-2); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}
.btn-red { background: var(--signal); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn:hover { transform: translateY(-1px); }

.stub {
  background: var(--cream);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  padding: 22px 22px 96px;
}
.stub::before,
.stub::after {
  content: "";
  position: absolute;
  top: 62px;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border-radius: 50%;
}
.stub::before { left: -11px; }
.stub::after { right: -11px; }
.stub-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 2px dashed rgba(27, 22, 18, 0.16);
  margin-bottom: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mist);
}
.stub h2 { font-size: 28px; }
.addr {
  font-family: var(--mono);
  font-size: 14px;
  background: var(--navy);
  color: #f4eadc;
  padding: 12px 12px;
  border-radius: 10px;
  word-break: break-all;
  margin: 10px 0 12px;
}
.stamp {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 84px;
  height: 84px;
  border: 3px solid var(--signal);
  color: var(--signal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: rotate(-12deg);
  background: rgba(255, 248, 238, 0.86);
  animation: stamp 3.6s ease-in-out infinite;
}
@keyframes stamp {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.04); }
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0 36px;
}
.stat {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 14px 12px;
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: -0.04em;
}
.stat span { color: var(--mist); font-size: 13px; }

.reel-wrap { margin: 10px 0 42px; }
.reel-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 12px;
}
.reel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78%, 340px);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.slide {
  scroll-snap-align: start;
  min-height: 230px;
  border-radius: 18px;
  padding: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.slide::after {
  content: "";
  position: absolute;
  inset: auto -20px -30px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.s1 { background: linear-gradient(145deg, #17233f, #3a1b22); }
.s2 { background: linear-gradient(145deg, #9f181e, #17233f); }
.s3 { background: linear-gradient(145deg, #2f4a3c, #17233f); }
.s4 { background: linear-gradient(145deg, #243457, #8a5a1c); }
.slide em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}
.slide h3 { font-size: 28px; margin: 10px 0; }
.slide p { margin: 0; color: rgba(255, 255, 255, 0.86); }
.dots { display: flex; gap: 8px; }
.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #c9b9a3;
  cursor: pointer;
  padding: 0;
}
.dots button.on { background: var(--signal); }

.folio {
  background: #fffaf3;
  border: 1px solid rgba(23, 35, 63, 0.12);
  border-radius: 22px;
  padding: clamp(20px, 3vw, 36px);
  margin: 0 0 22px;
  box-shadow: var(--shadow);
}
.folio .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--mist);
  font-size: 13px;
  margin-bottom: 12px;
}
.folio .body {
  font-family: var(--read);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
}
.folio .body p { margin: 0 0 16px; }
.folio .body ul { margin: 0 0 16px 20px; }
.folio .body li { margin: 0 0 8px; }
.note {
  background: #fff1d8;
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--ui);
  font-size: 15px;
  margin: 8px 0 16px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.steps { display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}
.num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
}

.review {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  background: var(--navy);
  color: #efe6d6;
  border-radius: 22px;
  padding: 24px;
  margin-bottom: 22px;
}
.score {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 18px 12px;
}
.score b {
  display: block;
  font-family: var(--display);
  font-size: 58px;
  line-height: 1;
  color: #fff;
}
.stars { color: #e4b84a; letter-spacing: 2px; margin: 8px 0; }
.review h2 { color: #fff; }
.review p { color: #d9cbb6; }

.event {
  border: 2px dashed var(--navy);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 22px;
  background:
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(23, 35, 63, 0.03) 16px 17px),
    var(--cream);
}
.event time {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
}

.faq details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--display);
  font-size: 18px;
}
.faq details p {
  font-family: var(--read);
  margin: 10px 0 4px;
}

.formy {
  display: grid;
  gap: 10px;
}
.formy label { font-size: 13px; font-weight: 700; }
.formy input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 12px;
  background: #fff;
}
.tiny { font-size: 13px; color: var(--mist); }

.foot {
  margin-top: 28px;
  background: var(--navy);
  color: #d7cbb8;
  padding: 28px 0 40px;
}
.foot a { color: #fff; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}
.foot h3 { color: #fff; }
.legal {
  margin-top: 22px;
  font-size: 13px;
  color: #b7aa96;
}

@media (min-width: 820px) {
  .dock small { display: inline; }
}

@media (max-width: 900px) {
  .hero, .split, .review, .foot-grid, .stats { grid-template-columns: 1fr; }
  .mast-row { flex-wrap: wrap; }
  .nav {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .nav a { white-space: nowrap; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stamp { width: 72px; height: 72px; font-size: 12px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .lead { font-size: 18px; }
  .folio .body { font-size: 18px; }
  .brand strong { font-size: 22px; }
  .hero { padding-top: 6px; }
  .dock a { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
