:root {
  --ink: #17161f;
  --paper: #f4ead6;
  --ticket: #fff8ec;
  --indigo: #1c2044;
  --indigo-2: #2a3060;
  --coral: #e24a38;
  --coral-d: #c53a2a;
  --brass: #c9a24a;
  --sage: #3d6b52;
  --line: #d8ccb4;
  --mute: #5c564c;
  --white: #fffdf8;
  --dock: 76px;
  --bar: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0, rgba(201, 162, 74, 0.14), transparent 38%),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(28, 32, 68, 0.035) 47px, rgba(28, 32, 68, 0.035) 48px),
    var(--paper);
  font-family: "Nunito Sans", "Segoe UI", sans-serif;
  font-size: 17.5px;
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
  padding-bottom: calc(var(--dock) + env(safe-area-inset-bottom));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.st-skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.st-skip:focus {
  left: 12px;
  z-index: 80;
  background: var(--white);
  padding: 8px 12px;
}

.st-wrap {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 100%;
}

.st-ribbon {
  background: var(--indigo);
  color: var(--paper);
  overflow: hidden;
  border-bottom: 3px solid var(--coral);
}

.st-ribbon__track,
.st-mid__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: st-marquee 28s linear infinite;
  padding: 9px 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.st-ribbon b { color: var(--brass); font-weight: 700; }

.st-mid {
  background: #efe3c8;
  border-block: 1px dashed var(--line);
  overflow: hidden;
}
.st-mid__track { color: var(--indigo); animation-duration: 36s; }

@keyframes st-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.st-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(28, 32, 68, 0.96);
  color: var(--paper);
  min-height: var(--bar);
  backdrop-filter: blur(8px);
}

.st-bar.is-stuck { box-shadow: 0 10px 28px rgba(23, 22, 31, 0.28); }

.st-bar__in {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--bar);
}

.st-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: 0 0 auto;
}

.st-brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--coral);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: "Young Serif", Georgia, serif;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.st-brand__name {
  display: block;
  font-family: "Young Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1.1;
}

.st-brand__sub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9c3b2;
}

.st-nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.st-nav a {
  text-decoration: none;
  color: #ece6d4;
  padding: 6px 0;
}

.st-nav a:hover { color: var(--brass); }

.st-cta {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.st-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.st-btn--in {
  background: var(--coral);
  color: #fff;
  animation: st-pulse 2.4s ease-in-out infinite;
}

.st-btn--up {
  background: var(--brass);
  color: var(--indigo);
}

.st-btn:hover { transform: translateY(-1px); }

@keyframes st-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 74, 56, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(226, 74, 56, 0); }
}

.st-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  position: relative;
}
.st-burger span,
.st-burger::before,
.st-burger::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  margin: 5px auto;
  transition: transform 0.2s ease;
}
.st-burger.is-open::before { transform: translateY(7px) rotate(45deg); }
.st-burger.is-open span { opacity: 0; }
.st-burger.is-open::after { transform: translateY(-7px) rotate(-45deg); }

.st-hero {
  padding: 36px 0 28px;
}

.st-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}
.st-hero__grid > * { min-width: 0; }

.st-kicker {
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.st-hero h1 {
  margin: 0 0 14px;
  font-family: "Young Serif", Georgia, serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
  font-weight: 400;
}

.st-hero h1 em {
  font-style: italic;
  color: var(--coral);
}

.st-lead {
  margin: 0 0 22px;
  color: var(--mute);
  max-width: 36em;
}

.st-board {
  background: var(--indigo);
  color: var(--paper);
  border-radius: 18px;
  padding: 22px 16px 14px;
  position: relative;
  box-shadow: 12px 16px 0 rgba(28, 32, 68, 0.12);
  min-width: 0;
  width: 100%;
}

.st-board::before,
.st-board::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  height: 10px;
  background: radial-gradient(circle, var(--paper) 3px, transparent 4px) 0 0 / 18px 10px;
  opacity: 0.22;
}
.st-board::before { top: 6px; }
.st-board::after { bottom: 6px; }

.st-stamp {
  position: absolute;
  right: 14px;
  top: 8px;
  width: 78px;
  height: 78px;
  border: 3px solid var(--coral);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--coral);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(12deg);
  background: rgba(255, 248, 236, 0.08);
  animation: st-stamp 5s ease-in-out infinite;
}

@keyframes st-stamp {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.04); }
}

.st-slider { overflow: hidden; width: 100%; }
.st-slides {
  display: flex;
  width: 100%;
  transition: transform 0.45s ease;
}
.st-slide {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 28px 8px 10px;
}

.st-ticket {
  background: var(--ticket);
  color: var(--ink);
  border-radius: 12px;
  padding: 18px 18px 16px;
  min-height: 210px;
}

.st-ticket span {
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  color: var(--sage);
}

.st-ticket h3 {
  margin: 8px 0 8px;
  font-family: "Young Serif", Georgia, serif;
  font-size: 26px;
}

.st-ticket p { margin: 0 0 14px; color: var(--mute); }

.st-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 6px 0 8px;
}
.st-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #6d6a88;
  padding: 0;
}
.st-dots button.is-on { background: var(--brass); width: 22px; border-radius: 8px; }

.st-slide-nav {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}
.st-slide-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #4a5078;
  background: transparent;
  color: var(--paper);
  font-size: 18px;
}

.st-crumb {
  padding: 18px 0 6px;
  font-size: 14px;
  color: var(--mute);
}
.st-crumb a { color: var(--indigo); text-decoration: none; }

.st-folio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  padding: 10px 0 40px;
}
.st-folio > * { min-width: 0; }

.st-article,
#sss,
#etkinlik,
#adresler {
  scroll-margin-top: 92px;
}

.st-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 0 28px;
  margin: 0 0 26px;
  overflow: hidden;
}

.st-article img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.st-article__body { padding: 22px 26px 0; }

.st-article h2 {
  margin: 0 0 12px;
  font-family: "Young Serif", Georgia, serif;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  font-weight: 400;
}

.st-article h3 {
  font-family: "Young Serif", Georgia, serif;
  font-size: 22px;
  margin: 22px 0 8px;
  font-weight: 400;
}

.st-article p { margin: 0 0 14px; }
.st-article ol { padding-left: 20px; }
.st-article li { margin-bottom: 8px; }

.st-drop::first-letter {
  font-family: "Young Serif", Georgia, serif;
  font-size: 3.1rem;
  float: left;
  line-height: 0.8;
  padding: 8px 10px 0 0;
  color: var(--indigo);
}

.st-pull {
  margin: 18px 0;
  padding: 8px 0 8px 16px;
  border-left: 4px solid var(--coral);
  font-family: "Young Serif", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--indigo);
}

.st-games { margin-bottom: 26px; }
.st-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.st-game {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  scroll-snap-align: start;
  min-height: 150px;
}
.st-game span {
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  color: var(--coral);
}
.st-game strong {
  display: block;
  margin: 8px 0 6px;
  font-family: "Young Serif", Georgia, serif;
  font-size: 20px;
}
.st-game p { margin: 0; color: var(--mute); font-size: 15px; }

.st-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--indigo);
  color: var(--paper);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 26px;
}
.st-event > div { padding: 28px; }
.st-event h2 {
  font-family: "Young Serif", Georgia, serif;
  font-size: 32px;
  margin: 0 0 10px;
  font-weight: 400;
}
.st-event img { width: 100%; height: 100%; object-fit: cover; }

.st-faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
}
.st-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
  font-size: 18px;
}
.st-faq p { margin: 10px 0 4px; color: var(--mute); }

.st-side { display: flex; flex-direction: column; gap: 14px; }

.st-card {
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 14px;
  padding: 16px;
  position: relative;
}

.st-card h3 {
  margin: 0 0 8px;
  font-family: "Young Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.st-score {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--coral);
  margin: 0 0 8px;
}
.st-score span { font-size: 20px; color: var(--mute); }

.st-host {
  font-family: "Roboto Mono", monospace;
  font-size: 13px;
  word-break: break-all;
}

.st-lang { display: flex; flex-wrap: wrap; gap: 8px; }
.st-lang a {
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
}

.st-18 {
  font-size: 13px;
  color: var(--mute);
  margin: 0;
}
.st-18 a { color: var(--indigo); }

.st-foot {
  background: var(--indigo);
  color: #d8d2c2;
  padding: 36px 0 28px;
  margin-top: 10px;
}
.st-foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 22px;
}
.st-foot a { color: var(--brass); text-decoration: none; }
.st-foot strong {
  display: block;
  color: var(--paper);
  font-family: "Young Serif", Georgia, serif;
  font-size: 20px;
  margin-bottom: 8px;
}

.st-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(28, 32, 68, 0.96);
  box-shadow: 0 -8px 24px rgba(23, 22, 31, 0.25);
}
.st-dock .st-btn { flex: 1; }

@media (max-width: 980px) {
  .st-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--indigo-2);
    flex-direction: column;
    padding: 12px 18px 16px;
    gap: 4px;
  }
  .st-nav.is-open { display: flex; }
  .st-burger { display: block; }
  .st-bar { position: sticky; }
  .st-bar__in { position: relative; }
  .st-hero__grid,
  .st-folio,
  .st-event,
  .st-foot__grid { grid-template-columns: 1fr; }
  .st-cta .st-btn { min-width: 0; padding: 0 12px; }
  .st-dock { display: flex; }
  .st-stamp { width: 68px; height: 68px; font-size: 11px; }
}

@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .st-brand__sub { display: none; }
  .st-hero { padding-top: 22px; }
  .st-hero .st-cta { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .st-hero .st-btn { min-height: 50px; }
  .st-article__body { padding: 18px 16px 0; }
  .st-event > div { padding: 20px; }
  .st-bar__in { gap: 8px; }
  .st-stamp { right: 10px; top: -10px; }
}

@media (prefers-reduced-motion: reduce) {
  .st-ribbon__track,
  .st-mid__track,
  .st-btn--in,
  .st-stamp { animation: none; }
  html { scroll-behavior: auto; }
}
