:root {
  --ink: #0b1210;
  --ink-2: #121a17;
  --ink-3: #1a2622;
  --brass: #d4b46a;
  --brass-2: #f0d59a;
  --teal: #2a9d8f;
  --teal-2: #47c4b4;
  --foam: #e7f4ef;
  --paper: #f3eee4;
  --paper-2: #e8e1d3;
  --coal: #16201c;
  --mist: #8f9d97;
  --line: rgba(212, 180, 106, 0.28);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --ui: "Outfit", "Segoe UI", sans-serif;
  --display: "Syne", "Trebuchet MS", sans-serif;
  --read: "Source Serif 4", "Georgia", serif;
  --radius: 22px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ui);
  background: var(--ink);
  color: #e8efe9;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 80;
  background: var(--brass);
  color: var(--ink);
  padding: 8px 12px;
}

.grain,
.orb,
.orb-2 {
  pointer-events: none;
  position: fixed;
}
.grain {
  inset: 0;
  z-index: 1;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.orb, .orb-2 {
  width: 42vw;
  height: 42vw;
  filter: blur(70px);
  z-index: 0;
  animation: drift 18s ease-in-out infinite;
}
.orb { background: rgba(42, 157, 143, .18); top: -10%; right: -8%; }
.orb-2 { background: rgba(212, 180, 106, .12); bottom: 8%; left: -12%; animation-delay: -8s; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.08); }
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ticker {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: stretch;
  background: #08100e;
  border-bottom: 1px solid var(--line);
}
.ticker-kicker {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: var(--brass);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c0392b;
  box-shadow: 0 0 0 0 rgba(192, 57, 43, .6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 10px transparent; }
}
.ticker-track {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-move {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 10px 0;
  animation: marquee 36s linear infinite;
  font-size: 13px;
  color: #d7e4dc;
}
.ticker-move b { color: var(--brass-2); font-weight: 600; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 18, 16, .86);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, #1c2a24, #0d1412);
  border: 1px solid var(--brass);
  color: var(--brass-2);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.04em;
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .04em;
}
.brand small {
  display: block;
  color: var(--mist);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #c9d6cf;
}
.nav a:hover { color: var(--brass-2); }
.cta-pair, .hero-cta, .plaque-actions, .end-cta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn-enter {
  background: var(--brass);
  color: #1a1408;
  box-shadow: 0 0 0 0 rgba(212, 180, 106, .45);
  animation: glow 2.4s ease-in-out infinite;
}
.btn-join {
  background: var(--teal);
  color: #041311;
}
.btn-ghost {
  border-color: rgba(255,255,255,.16);
  background: transparent;
  color: #eef6f2;
}
.btn:hover { transform: translateY(-1px); }
@keyframes glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 180, 106, .35); }
  50% { box-shadow: 0 0 0 10px rgba(212, 180, 106, 0); }
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #16201c;
  color: #fff;
  flex-direction: column;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #f3eee4;
}

.hero {
  padding: 42px 0 20px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: end;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brass-2);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 68px);
  line-height: .95;
  letter-spacing: -.04em;
  max-width: 12ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass);
}
.lead {
  margin-top: 18px;
  max-width: 54ch;
  color: #c5d2cb;
  font-size: 18px;
}
.hero-cta { margin-top: 22px; }
.hero-cta .btn { min-width: 148px; }

.plaque {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), transparent 30%),
    #101916;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.plaque::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(42,157,143,.25), transparent 70%);
}
.plaque-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.live {
  color: var(--teal-2);
  font-weight: 700;
}
.address {
  margin: 16px 0 8px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #0b120f;
  border: 1px dashed rgba(212,180,106,.45);
  font-size: clamp(15px, 2.4vw, 20px);
  word-break: break-all;
  color: var(--brass-2);
  font-weight: 600;
}
.plaque p { color: #b7c4bd; font-size: 14px; }
.plaque-actions { margin-top: 16px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.chip {
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: #d5e0da;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}
.stat {
  padding: 16px;
  border-radius: 18px;
  background: #121a17;
  border: 1px solid rgba(255,255,255,.05);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 28px;
  color: var(--brass-2);
}
.stat span { color: var(--mist); font-size: 13px; }

.breadcrumbs {
  margin: 18px 0 8px;
  color: var(--mist);
  font-size: 13px;
}
.breadcrumbs a { color: #d7e3dc; }

.slider-block {
  margin: 34px 0 10px;
}
.slider-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
}
.slider-head h2 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 36px);
}
.slider-nav button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #16201c;
  color: #fff;
  cursor: pointer;
}
.viewport {
  overflow: hidden;
  border-radius: 24px;
}
.track {
  display: flex;
  gap: 14px;
  transition: transform .45s ease;
}
.slide {
  flex: 0 0 calc(33.333% - 10px);
  min-width: 0;
  background: linear-gradient(160deg, #1b2823, #101714);
  border: 1px solid rgba(212,180,106,.16);
  border-radius: 22px;
  padding: 20px;
  min-height: 210px;
}
.slide i {
  display: inline-block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin-bottom: 10px;
}
.slide h3 {
  font-family: var(--display);
  font-size: 24px;
  margin-bottom: 8px;
}
.slide p { color: #b9c6bf; font-size: 14px; }

.paper {
  background: var(--paper);
  color: #1c221e;
  margin: 42px 0 0;
  padding: 56px 0 24px;
  position: relative;
  z-index: 2;
  border-radius: 40px 40px 0 0;
}
.paper::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(90deg, #d4b46a 0 12px, transparent 12px 22px);
  opacity: .55;
  border-radius: 40px 40px 0 0;
}
.section { padding: 28px 0; scroll-margin-top: 96px; }
#guncel-giris, #current, #aktuell, #cari { scroll-margin-top: 96px; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -.03em;
  max-width: 18ch;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 22px;
  color: #5d6862;
  font-size: 13px;
}
.article-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 28px;
}
.prose {
  font-family: var(--read);
  font-size: 18px;
  line-height: 1.8;
  color: #24302b;
}
.prose p { margin-bottom: 16px; }
.prose h3 {
  font-family: var(--display);
  font-size: 26px;
  margin: 26px 0 10px;
  color: #16201c;
}
.prose ul, .prose ol { margin: 0 0 16px 1.2em; }
.prose li { margin: 6px 0; }
.drop::first-letter {
  float: left;
  font-family: var(--display);
  font-size: 58px;
  line-height: .8;
  padding: 8px 10px 0 0;
  color: #8a6d2f;
}
.aside {
  background: #fffdf8;
  border: 1px solid #e4dccb;
  border-radius: 22px;
  padding: 18px;
  height: fit-content;
  position: sticky;
  top: 96px;
}
.aside h3 {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 8px;
}
.aside ol { padding-left: 18px; color: #3b4742; }
.aside li { margin: 8px 0; }

.bonus-grid, .faq-grid, .review-grid {
  display: grid;
  gap: 14px;
}
.bonus-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fffdf8;
  border: 1px solid #e5dccb;
  border-radius: 22px;
  padding: 20px;
}
.card h3 { font-family: var(--display); font-size: 22px; margin-bottom: 8px; }
.card p { color: #3d4944; }

.faq-item {
  background: #fffdf8;
  border: 1px solid #e5dccb;
  border-radius: 18px;
  padding: 4px 16px;
}
.faq-item h3 {
  font-size: 17px;
  font-family: var(--ui);
  font-weight: 650;
}
.faq-item details { padding: 10px 0; }
.faq-item summary { cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 8px; color: #3c4843; }

.event, .review-box {
  background: #121a17;
  color: #e7eee9;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid var(--line);
}
.event time, .stars { color: var(--brass-2); }
.stars { letter-spacing: 2px; font-size: 20px; }
.review-box p { margin: 10px 0 0; color: #c9d4ce; }

.dark-band {
  background: var(--ink);
  color: #e8efe9;
  padding: 48px 0 20px;
}
.dark-band h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); }
.end-cta { margin-top: 18px; }

.langs {
  display: flex;
  gap: 8px;
}
.langs a {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1);
  color: #c9d4ce;
}
.langs a[aria-current="page"] {
  background: var(--brass);
  color: #1a1408;
  border-color: var(--brass);
}

footer {
  position: relative;
  z-index: 2;
  padding: 28px 0 40px;
  color: #93a29c;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
footer a { color: #d7e3dc; }
.legal { max-width: 80ch; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  gap: 8px;
}
.mobile-cta .btn { flex: 1; }

@media (max-width: 980px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    padding: 16px;
    background: #101815;
    border: 1px solid var(--line);
    border-radius: 16px;
  }
  .nav.open .langs {
    display: flex;
    margin-top: 8px;
  }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid, .article-grid, .bonus-grid, .stats, .foot-grid {
    grid-template-columns: 1fr;
  }
  .slide { flex-basis: 100%; }
  .topbar-row > .langs { display: none; }
  .cta-pair { display: none; }
  .mobile-cta { display: flex; }
  .aside { position: static; }
  .hero { padding-top: 24px; }
  body { padding-bottom: 78px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
