/* ==========================================================================
   Landing WOW — atmosfer, Discord live, sinema, kurulum, ses
   Geri sar: bu dosyayı + landing-wow.js + index wow parçalarını kaldır
   veya: git checkout pre-landing-wow -- web/public
   ========================================================================== */

body.landing--wow {
  --wow-amber: #e8a46a;
  --wow-cream: #f3e6d4;
  --wow-steam: rgba(243, 230, 212, 0.18);
  --wow-bar: #1a0f0c;
  --discord-bg: #1e1f22;
  --discord-panel: #2b2d31;
  --discord-text: #dbdee1;
  --discord-muted: #949ba4;
  --discord-blurple: #5865f2;
  --discord-green: #23a559;
  --discord-red: #f23f43;
  --discord-embed: #2b2d31;
}

/* --- Atmosfer: sıcak bar / amber --------------------------------------- */

body.landing--wow .scene__aura--1 {
  background: radial-gradient(circle, rgba(232, 164, 106, 0.42), transparent 70%);
  opacity: 0.55;
}

body.landing--wow .scene__aura--2 {
  background: radial-gradient(circle, rgba(242, 168, 192, 0.38), transparent 70%);
  opacity: 0.35;
}

.scene__aura--amber {
  width: 52vw;
  height: 36vw;
  left: 28vw;
  bottom: -18vw;
  background: radial-gradient(circle, rgba(229, 164, 104, 0.35), transparent 68%);
  filter: blur(100px);
  opacity: 0.55;
  animation: drift-amber 28s ease-in-out infinite;
}

@keyframes drift-amber {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4vw, -5vh) scale(1.12);
  }
}

.scene__steam {
  position: absolute;
  inset: auto 8% -4% 8%;
  height: 42%;
  pointer-events: none;
  overflow: hidden;
}

.scene__steam span {
  position: absolute;
  bottom: 0;
  width: 18%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 100%,
    var(--wow-steam),
    transparent 70%
  );
  filter: blur(28px);
  opacity: 0.55;
  animation: steam-rise 9s ease-in-out infinite;
}

.scene__steam span:nth-child(1) {
  left: 12%;
  animation-delay: 0s;
}
.scene__steam span:nth-child(2) {
  left: 42%;
  width: 24%;
  animation-delay: -3s;
}
.scene__steam span:nth-child(3) {
  left: 70%;
  animation-delay: -5.5s;
}

@keyframes steam-rise {
  0%,
  100% {
    transform: translateY(8%) scaleX(1);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-12%) scaleX(1.15);
    opacity: 0.55;
  }
}

#steamCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}

.bar-glow {
  position: fixed;
  inset: auto 0 0;
  height: 28vh;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(26, 15, 12, 0.85),
    rgba(26, 15, 12, 0.2),
    transparent
  );
}

body.landing--wow .brand__mark,
body.landing--wow .hero__emblem-mark,
body.landing--wow .loader__mark {
  animation: breath 4.2s ease-in-out infinite;
}

@keyframes breath {
  0%,
  100% {
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    transform: scale(1.04) translateY(-3px);
    filter: drop-shadow(0 12px 28px rgba(232, 164, 106, 0.35));
  }
}

body.landing--wow .hero__emblem-glow {
  background: radial-gradient(
    circle,
    rgba(232, 164, 106, 0.45),
    rgba(242, 168, 192, 0.12),
    transparent 70%
  );
}

/* --- Hero + Discord live ----------------------------------------------- */

body.landing--wow .hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  column-gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  /* Sağda latte için yer bırak — Discord shell kenarına yapışmasın */
  padding-right: clamp(11rem, 16vw, 15rem);
}

body.landing--wow .hero__lead {
  max-width: 34rem;
  justify-self: start;
  width: 100%;
  margin-right: 0;
}

body.landing--wow .hero__notes,
body.landing--wow .hero__finder {
  display: none;
}

.discord-live {
  position: relative;
  z-index: 2;
  grid-column: auto;
  align-self: center;
  width: min(100%, 400px);
  justify-self: end;
  border: 1px solid rgba(232, 164, 106, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(
      165deg,
      rgba(18, 12, 10, 0.55) 0%,
      rgba(8, 6, 8, 0.42) 55%,
      rgba(12, 8, 10, 0.5) 100%
    );
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(243, 230, 212, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transform-origin: 80% 100%;
}

.discord-live__chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.discord-live__guild {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.discord-live__guild img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  image-rendering: pixelated;
}

.discord-live__guild strong {
  display: block;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.discord-live__guild span {
  color: var(--discord-muted);
}

.discord-live__pills {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.discord-live__pills button {
  appearance: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--discord-muted);
  background: transparent;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.discord-live__pills button.is-on {
  color: var(--wow-cream);
  border-color: rgba(232, 164, 106, 0.55);
  background: rgba(232, 164, 106, 0.12);
}

.discord-live__pills button:hover {
  color: var(--wow-cream);
}

.discord-live__feed {
  min-height: 340px;
  max-height: 420px;
  padding: 0.75rem 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow: auto;
  background: transparent;
  transition: opacity 0.22s var(--ease);
}

.discord-live__feed.is-swap {
  opacity: 0.35;
}

.dc-msg {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.65rem;
  opacity: 0;
  transform: translateY(8px);
  animation: msg-in 0.5s var(--ease) forwards;
}

@keyframes msg-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.dc-msg__col {
  min-width: 0;
}

.dc-msg__avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  image-rendering: pixelated;
  background: #1e1f22;
}

.dc-msg__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #5865f2, #f2a8c0);
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
}

.dc-msg__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
  flex-wrap: wrap;
}

.dc-msg__meta strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f2f3f5;
}

.dc-msg__meta .bot-tag {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #5865f2;
  color: #fff;
  padding: 0.1rem 0.32rem;
  border-radius: 3px;
  line-height: 1.4;
}

.dc-msg__meta time {
  font-size: 0.68rem;
  color: #949ba4;
}

.dc-msg__body {
  color: #dbdee1;
  font-size: 0.88rem;
  line-height: 1.375;
}

.dc-mention {
  color: #c9cdfb;
  background: rgba(88, 101, 242, 0.3);
  border-radius: 3px;
  padding: 0 2px;
  font-weight: 500;
}

.dc-embed {
  margin-top: 0.35rem;
  border-left: 4px solid #f2a8c0;
  border-radius: 4px;
  background: rgba(12, 9, 10, 0.55);
  padding: 0.55rem 0.75rem 0.7rem;
  max-width: 100%;
  backdrop-filter: blur(8px);
}

.dc-embed--pink {
  border-left-color: #f2a8c0;
}

.dc-embed.is-danger {
  border-left-color: #f23f43;
}

.dc-embed.is-ok {
  border-left-color: #23a559;
}

.dc-embed__title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #f2f3f5;
  margin-bottom: 0.35rem;
}

.dc-embed__text {
  color: #dbdee1;
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 0.45rem;
}

.dc-embed__field {
  margin: 0.35rem 0;
}

.dc-embed__field b {
  display: block;
  font-size: 0.78rem;
  color: #f2f3f5;
  margin-bottom: 0.1rem;
}

.dc-embed__field span,
.dc-embed__field code {
  font-size: 0.82rem;
  color: #dbdee1;
}

.dc-embed__field code {
  display: inline-block;
  background: #1e1f22;
  border-radius: 3px;
  padding: 0.15rem 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.dc-embed__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.dc-embed__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.dc-chan {
  color: #00a8fc;
  font-weight: 500;
}

.dc-id {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #b5bac1;
  word-break: break-all;
}

.dc-deleted {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
  background: #1e1f22;
  border-radius: 4px;
  padding: 0.4rem 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #dbdee1;
  box-sizing: border-box;
}

.dc-embed__status {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  color: #dbdee1;
  line-height: 1.4;
}

.dc-embed__status b {
  color: #f2f3f5;
}

.dc-edited {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  color: #949ba4;
}

.dc-embed__img {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  border-radius: 4px;
  object-fit: cover;
  max-height: 160px;
}

.dc-embed__img--cup {
  max-height: 140px;
  object-fit: contain;
  background: #1e1f22;
}

.dc-embed__footer {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  color: #949ba4;
}

.dc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.dc-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  border: none;
  background: #5865f2;
  color: #fff;
}

.dc-btn--ticket {
  font-size: 0.74rem;
}

.dc-btn.is-ghost {
  background: #4e5058;
}

.dc-btn.is-danger {
  background: #da373c;
}

.dc-btn.is-ok {
  background: #248046;
}

/* Slash + modal */
.dc-flow {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.dc-slash {
  background: rgba(12, 9, 10, 0.5);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.dc-slash__hint {
  padding: 0.45rem 0.65rem;
  font-size: 0.72rem;
  color: #949ba4;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.dc-slash__hint b {
  color: #fff;
  margin-right: 0.35rem;
}

.dc-slash__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
}

.dc-slash__row .dc-msg__avatar-img {
  width: 28px;
  height: 28px;
}

.dc-slash__cmd {
  color: #fff;
  font-size: 0.88rem;
}

.dc-slash__arg {
  display: inline-flex;
  align-items: stretch;
  border-radius: 4px;
  overflow: hidden;
  font-size: 0.78rem;
  border: 1px solid transparent;
}

.dc-slash__arg.is-focus {
  border-color: #00a8fc;
}

.dc-slash__arg i {
  font-style: normal;
  background: #1e1f22;
  color: #dbdee1;
  padding: 0.2rem 0.4rem;
}

.dc-slash__arg b {
  background: #404249;
  color: #fff;
  padding: 0.2rem 0.45rem;
  font-weight: 600;
}

.dc-modal {
  background: rgba(14, 10, 11, 0.62);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(232, 164, 106, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

.dc-modal__head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.dc-modal__head img {
  border-radius: 50%;
  image-rendering: pixelated;
}

.dc-modal__head strong {
  font-size: 0.92rem;
}

.dc-modal__warn {
  font-size: 0.72rem;
  color: #dbdee1;
  border: 1px solid rgba(240, 178, 50, 0.55);
  border-radius: 6px;
  padding: 0.45rem 0.55rem;
  margin-bottom: 0.65rem;
  background: rgba(240, 178, 50, 0.06);
}

.dc-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  color: #b5bac1;
}

.dc-modal__field em {
  color: #f23f43;
  font-style: normal;
}

.dc-modal__field input {
  background: #1e1f22;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0.45rem 0.55rem;
  color: #dbdee1;
  font-size: 0.82rem;
}

.dc-modal__field.is-focus input {
  border-color: #00a8fc;
}

.dc-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.dc-modal__cancel,
.dc-modal__send {
  text-align: center;
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 500;
}

.dc-modal__cancel {
  background: #4e5058;
  color: #fff;
}

.dc-modal__send {
  background: #5865f2;
  color: #fff;
}

/* Görsel scam tarama */
.dc-scan__frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 260px;
}

.dc-scan__frame img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}

.dc-scan__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(88, 101, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 101, 242, 0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.dc-scan__beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(242, 168, 192, 0.35),
    transparent
  );
  animation: scan-beam 1.5s linear infinite;
}

.dc-scan__badge {
  position: absolute;
  left: 0.45rem;
  bottom: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.7);
  color: #f2a8c0;
  padding: 0.25rem 0.4rem;
  border-radius: 4px;
}

.dc-scan.is-hit .dc-scan__frame img {
  filter: grayscale(0.7) brightness(0.55);
}

.dc-scan.is-hit .dc-scan__beam,
.dc-scan.is-hit .dc-scan__grid {
  display: none;
}

.dc-scan.is-hit .dc-scan__badge {
  color: #fff;
  background: #da373c;
}

.dc-scan.is-hit .dc-scan__frame::after {
  content: "BLOCKED";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(218, 55, 60, 0.28);
}

.dc-scan-result {
  margin-top: 0.65rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  animation: msg-in 0.45s var(--ease) forwards;
}

@keyframes scan-beam {
  0% {
    top: -20%;
  }
  100% {
    top: 100%;
  }
}

/* Eski kart cinema kaldırıldı */
.card__cinema {
  display: none !important;
}

/* --- Kurulum sahnesi --------------------------------------------------- */

.setup {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto 8rem;
  padding-top: 2rem;
}

.setup__head {
  max-width: 34rem;
  margin-bottom: 2.5rem;
}

.setup__stage {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
}

.setup__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.setup__type {
  appearance: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  background: transparent;
  transition:
    color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.setup__type:hover {
  color: var(--wow-cream);
  border-color: rgba(232, 164, 106, 0.35);
}

.setup__type.is-on {
  color: var(--wow-cream);
  border-color: rgba(232, 164, 106, 0.55);
  background: rgba(232, 164, 106, 0.12);
}

.setup__field {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.setup__field span {
  color: var(--dim);
}

.setup__field input {
  width: 100%;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid rgba(232, 164, 106, 0.28);
  background: rgba(26, 15, 12, 0.65);
  outline: none;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.setup__field input:focus {
  border-color: rgba(232, 164, 106, 0.7);
  box-shadow: 0 0 0 3px rgba(232, 164, 106, 0.12);
}

.setup__log {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 0.55rem;
  min-height: 9rem;
}

.setup__log li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0.65rem;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dim);
  opacity: 0;
  transform: translateY(6px);
}

.setup__log li.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.35s var(--ease);
}

.setup__log li.is-live {
  color: var(--muted);
}

.setup__log li.is-ok {
  color: #8fd9a8;
}

.setup__log b {
  color: var(--wow-amber);
  font-weight: 400;
}

.setup__board {
  border-radius: 18px;
  border: 1px solid rgba(232, 164, 106, 0.16);
  background:
    linear-gradient(
      165deg,
      rgba(18, 12, 10, 0.72) 0%,
      rgba(8, 6, 8, 0.55) 55%,
      rgba(12, 8, 10, 0.62) 100%
    );
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  padding: 1.1rem 1.15rem 1.25rem;
  min-height: 320px;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(243, 230, 212, 0.06);
}

.setup__guild {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.setup__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  image-rendering: pixelated;
}

.setup__guild strong {
  display: block;
  font-size: 1rem;
}

.setup__guild span {
  color: var(--discord-muted);
}

.setup__guild span.is-ok {
  color: #8fd9a8;
}

.setup__discord {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 0.7rem;
  min-height: 210px;
  margin-bottom: 0.9rem;
}

.setup__sidebar {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 6, 8, 0.45);
  padding: 0.55rem 0.45rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.setup__cat {
  display: grid;
  gap: 0.2rem;
}

.setup__cat-label {
  margin: 0 0 0.15rem 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.setup__chan {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.32rem 0.45rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  color: var(--discord-muted);
  text-align: left;
  cursor: pointer;
  opacity: 0;
  transform: translateX(-6px);
}

.setup__chan.is-in {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.setup__chan.is-in:hover {
  color: #dbdee1;
  background: rgba(255, 255, 255, 0.04);
}

.setup__chan.is-on {
  color: var(--wow-cream);
  background: rgba(232, 164, 106, 0.12);
}

.setup__chan.is-on:hover {
  color: var(--wow-cream);
  background: rgba(232, 164, 106, 0.16);
}

.setup__chan .hash {
  color: var(--wow-amber);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.setup__pane {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 10, 12, 0.4);
  display: flex;
  flex-direction: column;
  min-height: 210px;
  max-height: 340px;
  overflow: hidden;
}

.setup__pane-head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.setup__pane-head .hash {
  color: var(--wow-amber);
  font-family: var(--font-mono);
}

.setup__pane-body {
  flex: 1;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow-y: auto;
  min-height: 0;
}

.setup__feed {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.setup__feed .dc-msg {
  font-size: 0.82rem;
}

.setup__feed .dc-msg__avatar-img,
.setup__feed .dc-msg__avatar {
  width: 32px;
  height: 32px;
  font-size: 0.55rem;
}

.setup__feed .dc-embed__img {
  max-height: 110px;
}

.setup__feed .dc-embed__img--cup {
  max-height: 100px;
}

.setup__feed .dc-embed__grid--3 {
  grid-template-columns: 1fr;
}

.setup__feed .dc-embed__grid {
  grid-template-columns: 1fr 1fr;
}

.setup__pane-empty {
  margin: auto;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  text-align: center;
}

.setup__embed {
  border-left: 3px solid var(--wow-amber);
  border-radius: 4px 8px 8px 4px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.65rem 0.75rem;
  opacity: 0;
  transform: translateY(8px);
}

.setup__embed.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.setup__embed strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

.setup__embed p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--muted);
}

.setup__embed-btn {
  display: inline-flex;
  margin-top: 0.55rem;
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: #5865f2;
  color: #fff;
  font-size: 0.72rem;
}

.setup__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  min-height: 1.8rem;
}

.setup__roles span {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  opacity: 0;
  transform: scale(0.92);
}

.setup__roles span.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.setup__roles span[data-role="mod"] {
  color: #f0a8b8;
  background: rgba(240, 168, 184, 0.1);
}

.setup__roles span[data-role="latte"] {
  color: var(--wow-amber);
  background: rgba(232, 164, 106, 0.12);
}

.setup__roles span[data-role="member"] {
  color: var(--discord-muted);
  background: rgba(255, 255, 255, 0.04);
}

.setup__roles span[data-role="vip"] {
  color: #c9b6ff;
  background: rgba(201, 182, 255, 0.12);
}

.setup__done {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.setup__done p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.setup__done[hidden] {
  display: none;
}

.setup__board[data-empty="true"] .setup__sidebar,
.setup__board[data-empty="true"] .setup__pane {
  opacity: 0.55;
}

/* --- Nav ses ----------------------------------------------------------- */

.nav__sound {
  cursor: pointer;
  appearance: none;
  background: rgba(0, 0, 0, 0.35);
}

.nav__sound[aria-pressed="true"] {
  border-color: rgba(232, 164, 106, 0.55);
  color: var(--wow-cream);
}

/* --- Micro hover ------------------------------------------------------- */

body.landing--wow .pill,
body.landing--wow .nav__link,
body.landing--wow .module {
  transition:
    transform 0.45s var(--ease),
    border-color 0.4s var(--ease),
    color 0.4s var(--ease),
    background 0.4s var(--ease),
    box-shadow 0.45s var(--ease);
}

body.landing--wow .pill:hover,
body.landing--wow .nav__link:hover {
  transform: translateY(-2px);
}

body.landing--wow .pill--solid:hover {
  box-shadow: 0 12px 36px rgba(232, 164, 106, 0.22);
}

/* --- 1. Hero yerleşimi: amblem metnin dışında -------------------------- */

body.landing--wow .hero {
  min-height: 100svh;
  padding: 8rem 0 6rem;
}

/* Discord ile ekranın sağ kenarı arasına JS ile ortalanır */
body.landing--wow .hero__emblem {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: clamp(200px, 17vw, 280px);
  height: auto;
  aspect-ratio: 1;
  transform: translate(-50%, -50%) rotate(12deg);
  z-index: 1;
  pointer-events: none;
  margin: 0;
  overflow: visible;
  will-change: left, top;
}

body.landing--wow .hero__emblem-mark {
  width: 100%;
  height: auto;
  opacity: 0.95;
}

body.landing--wow .hero__emblem-glow {
  inset: -6% -10% -10% 2%;
  opacity: 0.35;
  filter: blur(28px);
}

body.landing--wow .hero__lead {
  max-width: 34rem;
}

body.landing--wow .hero__headline {
  mix-blend-mode: normal;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

body.landing--wow .hero__sub {
  margin-top: 1.4rem;
  max-width: 40ch;
}

/* "Kaydır" artık hero'nun kendi köşesinde, panelle çakışmıyor */
body.landing--wow .hero__scroll {
  position: absolute;
  left: 0;
  bottom: 2rem;
  grid-column: auto;
  justify-self: auto;
  align-self: auto;
  justify-items: start;
  z-index: 2;
}

/* Kısa ekranlarda "Kaydır" butonlarla çakışmasın */
@media (max-height: 860px) {
  body.landing--wow .hero {
    padding: 7rem 0 4rem;
    min-height: 0;
  }

  body.landing--wow .hero__scroll {
    display: none;
  }
}

@media (max-width: 1080px) {
  body.landing--wow .hero__inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 2.2rem;
    padding-right: 0;
  }

  body.landing--wow .hero__lead {
    justify-self: stretch;
    max-width: none;
  }

  body.landing--wow .discord-live {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    max-height: 62vh;
    justify-self: stretch;
  }

  body.landing--wow .hero__emblem {
    display: none;
  }

  body.landing--wow .hero__emblem-glow {
    inset: -10%;
  }

  body.landing--wow .hero__scroll {
    display: none;
  }
}

@media (max-width: 640px) {
  body.landing--wow .hero {
    padding: 6.5rem 0 4rem;
    min-height: 0;
  }

  body.landing--wow .discord-live__chrome {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  body.landing--wow .discord-live__pills {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* --- 1b. Bölüm ritmi, başlıklar ve notların hizası -------------------- */

body.landing--wow .section {
  padding: 6.5rem 0;
}

body.landing--wow .outro {
  padding: 7rem 0 6rem;
}


body.landing--wow .section__head,
body.landing--wow .gallery__head {
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 4rem);
}

body.landing--wow .gallery__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 3rem;
}

body.landing--wow .section__note {
  max-width: 34ch;
  text-align: right;
  align-self: flex-end;
  padding-bottom: 0.35rem;
}

@media (max-width: 1080px) {
  body.landing--wow .section__head,
  body.landing--wow .gallery__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  body.landing--wow .section__note {
    text-align: left;
    padding-bottom: 0;
  }
}

/* --- 1c. Kurulum bölümü: başlık/not hizası, dolu görünen board --------- */

body.landing--wow .setup__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 4rem);
  max-width: none;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 2.75rem;
}

body.landing--wow .setup__stage {
  align-items: center;
}

body.landing--wow .setup__side {
  display: grid;
  gap: 0;
  align-self: start;
}

body.landing--wow .setup__board {
  min-height: 0;
}

@media (max-width: 1080px) {
  body.landing--wow .setup__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }

  .setup__discord {
    grid-template-columns: 1fr;
  }
}

/* --- 2. Galeri kart lens / depth -------------------------------------- */

body.landing--wow .gallery__cylinder .card {
  transition:
    transform 0.55s var(--ease),
    filter 0.55s var(--ease),
    box-shadow 0.55s var(--ease);
}

body.landing--wow .gallery__cylinder .card.is-front:hover {
  filter: brightness(1.1) contrast(1.05) saturate(1.05);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
}

/* Kart yazıları görselin üstünde okunur olsun */
body.landing--wow .card__wash {
  background: linear-gradient(
    to top,
    rgba(6, 4, 5, 0.96) 0%,
    rgba(6, 4, 5, 0.82) 32%,
    rgba(6, 4, 5, 0.25) 62%,
    transparent 100%
  );
}

body.landing--wow .gallery__cylinder .card.is-front .card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 35% 30%,
    rgba(255, 255, 255, 0.18),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

body.landing--wow .gallery__cylinder .card.is-front:hover .card__media::after {
  opacity: 1;
}

/* --- 3. Modül listesi amber çizgi ------------------------------------- */

body.landing--wow .module {
  position: relative;
}

body.landing--wow .module::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  border-radius: 2px;
  background: var(--wow-amber);
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

body.landing--wow .module:hover {
  padding-left: 1.35rem;
  background: rgba(232, 164, 106, 0.04);
}

body.landing--wow .module:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

body.landing--wow .module:hover .module__no {
  color: var(--wow-amber);
}

/* --- 4. Planlar: Pro öne, diğerleri sönük ----------------------------- */

body.landing--wow .plans {
  align-items: stretch;
}

body.landing--wow .plan:not(.plan--featured) {
  opacity: 0.78;
  filter: saturate(0.88);
}

body.landing--wow .plan:not(.plan--featured):hover {
  opacity: 1;
  transform: translateY(-5px);
}

body.landing--wow .plan--featured {
  transform: translateY(-10px);
  border-color: rgba(232, 164, 106, 0.55);
  box-shadow:
    0 0 0 1px rgba(232, 164, 106, 0.22),
    0 22px 60px rgba(232, 164, 106, 0.1),
    0 28px 70px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

body.landing--wow .plan--featured:hover {
  transform: translateY(-16px);
  border-color: rgba(232, 164, 106, 0.75);
}

body.landing--wow .plan__price {
  align-items: baseline;
}

body.landing--wow .plan__price span {
  padding-bottom: 0;
}

/* --- 5. Nav scroll glass ---------------------------------------------- */

/* Nav her zaman sabit ve aynı genişlikte: scroll'da sadece zemin değişir,
   böylece sayfa kenarları sıkışıp açılmıyor. */
body.landing--wow .nav {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
  margin: 0;
  padding: 1.35rem calc((100% - var(--shell)) / 2);
  border-bottom: 1px solid transparent;
  z-index: 60;
  transition:
    background 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

body.landing--wow .nav.is-scrolled {
  background: rgba(8, 6, 8, 0.55);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

/* Sabit nav başlıkların üstüne binmesin */
body.landing--wow #moduller,
body.landing--wow #planlar,
body.landing--wow #kurulum,
body.landing--wow #outro {
  scroll-margin-top: 5.5rem;
}

/* --- 6. Outro sade ---------------------------------------------------- */

body.landing--wow .outro {
  padding: 7rem 0 5.5rem;
}

body.landing--wow .outro__mark {
  animation: breath 4.2s ease-in-out infinite;
  filter: drop-shadow(0 12px 28px rgba(232, 164, 106, 0.28));
}

body.landing--wow .outro__title {
  max-width: 16ch;
}

body.landing--wow .outro__sub {
  margin: 1rem auto 0;
  max-width: 42ch;
  color: var(--dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* --- 7. Click ripples ------------------------------------------------- */

.click-ripples {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  overflow: hidden;
}

.click-ripples span {
  position: absolute;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 164, 106, 0.65);
  background: rgba(242, 168, 192, 0.12);
  animation: ripple-out 0.7s var(--ease) forwards;
}

@keyframes ripple-out {
  to {
    transform: scale(14);
    opacity: 0;
  }
}

/* --- 8. Steam ambience indicator (ses açıkken) ------------------------ */

body.landing--wow.is-sound-on .scene__steam span {
  opacity: 0.75;
  animation-duration: 7s;
}

@media (max-width: 960px) {
  body.landing--wow .hero__inner {
    grid-template-columns: 1fr;
  }

  .discord-live {
    justify-self: stretch;
    width: 100%;
  }

  .setup__stage {
    grid-template-columns: 1fr;
  }

  body.landing--wow .plan:not(.plan--featured),
  body.landing--wow .plan--featured {
    transform: none;
    opacity: 1;
    filter: none;
  }

  body.landing--wow .nav {
    padding: 1rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene__steam span,
  .scene__aura--amber,
  body.landing--wow .brand__mark,
  body.landing--wow .hero__emblem-mark,
  body.landing--wow .loader__mark,
  body.landing--wow .outro__mark,
  .dc-msg,
  .click-ripples span {
    animation: none !important;
  }

  .dc-msg {
    opacity: 1;
    transform: none;
  }
}
