:root {
  --slate: #12151c;
  --slate-2: #1b2030;
  --paper: #f3eadc;
  --paper-2: #e8dcc8;
  --vermillion: #e23b2c;
  --brass: #d4a24a;
  --ice: #7ec8e6;
  --mute: #9aa0ad;
  --ink: #14161c;
  --line: rgba(243, 234, 220, 0.12);
  --max: 1140px;
  --display: "Unbounded", "Arial Black", sans-serif;
  --ui: "Sora", "Segoe UI", sans-serif;
  --read: "Literata", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--paper);
  font-family: var(--read);
  font-size: clamp(1.02rem, 0.28vw + 0.96rem, 1.12rem);
  line-height: 1.72;
  background: var(--slate);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(680px 280px at 8% -8%, rgba(226, 59, 44, 0.16), transparent 58%),
    radial-gradient(520px 260px at 96% 4%, rgba(212, 162, 74, 0.12), transparent 50%),
    repeating-linear-gradient(180deg, transparent 0 27px, rgba(126, 200, 230, 0.035) 27px 28px);
  animation: lv-scan 18s linear infinite;
}

@keyframes lv-scan {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 0 0, 0 0, 0 280px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ice); text-underline-offset: 3px; }
a:hover { color: var(--paper); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
::selection { background: var(--vermillion); color: #fff; }

.lv-skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 90;
  background: var(--brass);
  color: var(--ink);
  padding: 0.55rem 1rem;
  font-family: var(--ui);
  font-weight: 700;
}
.lv-skip:focus { left: 10px; }

.lv-gate {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.55rem;
  align-items: center;
  padding: 0.62rem 0.85rem;
  background: rgba(18, 21, 28, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.lv-gate.is-pulse .lv-btn {
  animation: lv-nudge 0.7s ease 2;
}

@keyframes lv-nudge {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.03); }
}

.lv-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.lv-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
}
.lv-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
}
.lv-brand small {
  display: block;
  color: var(--mute);
  font-family: var(--ui);
  font-size: 0.72rem;
}

.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.lv-btn--in {
  background: var(--vermillion);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(226, 59, 44, 0.55);
  animation: lv-glow 2.4s ease-in-out infinite;
}
.lv-btn--join {
  background: var(--brass);
  color: var(--ink);
}
.lv-btn:hover { transform: translateY(-1px); color: inherit; }

@keyframes lv-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 59, 44, 0.45); }
  50% { box-shadow: 0 0 0 10px rgba(226, 59, 44, 0); }
}

.lv-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0e1118;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.lv-ticker__row {
  display: flex;
  gap: 2.2rem;
  width: max-content;
  padding: 0.45rem 0;
  animation: lv-marquee 28s linear infinite;
}
.lv-ticker--rev .lv-ticker__row { animation-direction: reverse; animation-duration: 34s; }
.lv-ticker span { color: var(--mute); }
.lv-ticker b { color: var(--brass); font-weight: 700; }

@keyframes lv-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lv-wrap {
  width: min(var(--max), calc(100% - 1.35rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.lv-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.9rem;
  padding: 1rem 0 0.2rem;
  font-family: var(--ui);
  font-size: 0.86rem;
}
.lv-nav a { color: var(--mute); text-decoration: none; }
.lv-nav a:hover { color: var(--paper); }

.lv-hero {
  display: grid;
  gap: 1.4rem;
  padding: 1.4rem 0 0.4rem;
}

.lv-kicker {
  margin: 0 0 0.45rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice);
}

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1.22;
  font-weight: 700;
}

h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

h2 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.08rem; margin: 1.15rem 0 0.45rem; }

.lv-lead {
  margin: 0 0 0.9rem;
  font-size: 1.12rem;
  color: #efe4d2;
}

.lv-warn {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--brass);
  background: rgba(212, 162, 74, 0.08);
  color: var(--paper-2);
  font-size: 0.95rem;
}

.lv-board {
  background:
    linear-gradient(180deg, #232838 0%, #151924 100%);
  border: 1px solid rgba(212, 162, 74, 0.28);
  border-radius: 18px;
  padding: 1.05rem 1.1rem 1.15rem;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

.lv-board::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 0;
  width: 6px;
  background: repeating-linear-gradient(180deg, var(--vermillion) 0 10px, transparent 10px 18px);
}

.lv-clock {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--mono);
  color: var(--brass);
  font-size: 0.92rem;
}

.lv-board h2 { padding-right: 3.4rem; }

.lv-board p {
  margin: 0 0 0.8rem;
  color: var(--mute);
  font-size: 0.95rem;
}

.lv-flap {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin: 0.4rem 0 0.85rem;
}

.lv-flap__ch {
  min-width: 18px;
  height: 34px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: #0c0e14;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.78rem;
  border-radius: 4px;
  box-shadow: inset 0 -16px 0 rgba(255, 255, 255, 0.03);
}

.lv-addr {
  display: none;
}

.lv-copy {
  border: 0;
  background: transparent;
  color: var(--ice);
  font-family: var(--ui);
  font-size: 0.86rem;
  padding: 0;
  margin-bottom: 0.7rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lv-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  color: var(--mute);
  margin-bottom: 0.75rem;
}

.lv-lanes { display: grid; gap: 0.45rem; }

.lv-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.6rem;
  background: rgba(12, 14, 20, 0.55);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
.lv-row strong { display: block; font-family: var(--ui); font-size: 0.88rem; }
.lv-row small { display: block; color: var(--mute); font-size: 0.75rem; }
.lv-row__kod {
  font-family: var(--display);
  color: var(--brass);
  font-size: 1.05rem;
}
.lv-row__durum {
  font-style: normal;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
}

.lv-slider,
.lv-slider-b {
  margin: 1.4rem 0;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
  background: var(--slate-2);
  border: 1px solid var(--line);
}

.lv-slider__nav {
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  z-index: 2;
  display: flex;
  gap: 0.35rem;
}
.lv-slider__nav button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 234, 220, 0.12);
  color: var(--paper);
  cursor: pointer;
}

.lv-slides {
  display: flex;
  transition: transform 0.55s ease;
}

.lv-slide {
  min-width: 100%;
  padding: 1.4rem 1.2rem 1.7rem;
}
.lv-slide h3 { margin-top: 0; }
.lv-slide p { margin: 0; color: var(--paper-2); }
.lv-slide img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.85rem;
}

.lv-dots {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  padding: 0 0 0.85rem;
}
.lv-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 234, 220, 0.25);
  padding: 0;
  cursor: pointer;
}
.lv-dots button.is-on { background: var(--brass); }

.lv-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-family: var(--ui);
  font-size: 0.82rem;
  color: var(--mute);
  margin: 0.4rem 0 1rem;
}
.lv-crumbs a { color: var(--ice); text-decoration: none; }

.lv-panel {
  background: rgba(27, 32, 48, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem 1.15rem 1.4rem;
  margin: 0 0 1.15rem;
  position: relative;
}

.lv-panel::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 10px;
  background:
    radial-gradient(circle at 50% 12px, var(--slate) 4px, transparent 5px),
    radial-gradient(circle at 50% 36px, var(--slate) 4px, transparent 5px),
    radial-gradient(circle at 50% 60px, var(--slate) 4px, transparent 5px);
  background-repeat: repeat-y;
  opacity: 0.55;
}

.lv-panel h2,
.lv-panel h3,
.lv-panel p,
.lv-panel ul,
.lv-panel ol,
.lv-panel .lv-grid { padding-left: 0.55rem; }

.lv-panel p { margin: 0 0 0.85rem; color: #efe6d6; }
.lv-panel ul, .lv-panel ol { margin: 0 0 0.9rem; padding-left: 1.5rem; }
.lv-panel li { margin: 0.28rem 0; }

.lv-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 1rem;
}

.lv-grid {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 1rem;
}

.lv-card {
  background: rgba(12, 14, 20, 0.45);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}
.lv-card h3 { margin: 0 0 0.35rem; }
.lv-card p { margin: 0; color: var(--mute); font-size: 0.95rem; }

.lv-rail {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.2rem 0 0.6rem;
  scroll-behavior: auto;
}
.lv-chip {
  min-width: 210px;
  background: #10131b;
  border-radius: 12px;
  padding: 0.85rem;
  border: 1px solid var(--line);
}
.lv-chip strong { display: block; font-family: var(--ui); margin-bottom: 0.25rem; }

.lv-reviews {
  display: grid;
  gap: 0.9rem;
}

.lv-score {
  background: #10131b;
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}
.lv-score b {
  display: block;
  font-family: var(--display);
  font-size: 2.6rem;
  color: var(--brass);
  line-height: 1;
}
.lv-score span, .lv-score p { color: var(--mute); margin: 0.2rem 0 0; }

.lv-quote {
  margin: 0 0 0.7rem;
  padding: 0.85rem 0.95rem;
  background: rgba(12, 14, 20, 0.4);
  border-radius: 12px;
  font-size: 1rem;
}
.lv-quote footer {
  margin-top: 0.45rem;
  color: var(--mute);
  font-family: var(--ui);
  font-size: 0.82rem;
}

.lv-event {
  display: grid;
  gap: 0.9rem;
}

.lv-cal {
  width: 92px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 12px;
  text-align: center;
  padding: 0.55rem 0.4rem 0.7rem;
  font-family: var(--ui);
}
.lv-cal span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--vermillion);
  font-weight: 700;
}
.lv-cal b { display: block; font-size: 2rem; line-height: 1.1; }
.lv-cal i { font-style: normal; font-family: var(--mono); font-size: 0.78rem; }

.lv-faq details {
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
}
.lv-faq summary {
  cursor: pointer;
  font-family: var(--ui);
  font-weight: 650;
  padding: 0.25rem 0;
}
.lv-faq p { margin: 0.45rem 0 0.2rem; }

.lv-foot {
  padding: 0.4rem 0 6.2rem;
  color: var(--mute);
  font-size: 0.92rem;
}
.lv-langs {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.7rem;
  font-family: var(--ui);
}
.lv-langs a {
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.lv-langs a[aria-current="page"] {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

.lv-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(14, 17, 24, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.lv-dock .lv-btn { width: 100%; }

@media (min-width: 860px) {
  .lv-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    padding-top: 1.8rem;
  }
  .lv-grid { grid-template-columns: repeat(3, 1fr); }
  .lv-reviews { grid-template-columns: 180px 1fr; }
  .lv-event { grid-template-columns: 92px 1fr; align-items: center; }
  .lv-slide img { height: 220px; }
  .lv-thumb { height: 240px; }
  .lv-dock { display: none; }
  .lv-foot { padding-bottom: 2.4rem; }
  .lv-panel { padding: 1.5rem 1.5rem 1.65rem; }
}

@media (max-width: 420px) {
  .lv-brand small { display: none; }
  .lv-btn { padding-inline: 0.8rem; font-size: 0.86rem; }
  .lv-flap__ch { min-width: 14px; height: 28px; font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
