:root {
  --gold: #d4af37;
  --gold-bright: #f0e6a8;
  --gold-dim: #8a7020;
  --gold-deep: #5c4a1a;
  --ember: #c45c3e;
  --ink: #060504;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: Cinzel, "Times New Roman", serif;
  /* Kart alanı sabit genişlikte; vw ile zoom/ultra-geniş ekranda oran bozulmasın */
  --vp-cap: min(100vw, 80rem);
  --page-gutter: clamp(0.75rem, calc(var(--vp-cap) * 0.035), 1.35rem);
  --content-max: 760px;
  /* Kaydırma çubukları */
  --scrollbar-track: rgba(8, 6, 4, 0.94);
  --scrollbar-thumb: rgba(184, 152, 52, 0.72);
  --scrollbar-thumb-hover: rgba(240, 230, 168, 0.88);
  --scrollbar-border: rgba(212, 175, 55, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* Sabit referans: zoom / ölçek değişse bile rem tabanlı içerik okunaklı kalır */
  font-size: 17.5px;
  scroll-behavior: smooth;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
}

/* WebKit / Chromium — sayfa + modal içi */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
.info-modal__body::-webkit-scrollbar,
.drawer__panel::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
.info-modal__body::-webkit-scrollbar-track,
.drawer__panel::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
  border-radius: 100px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--scrollbar-border);
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
.info-modal__body::-webkit-scrollbar-thumb,
.drawer__panel::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(240, 230, 168, 0.38) 0%,
    rgba(212, 175, 55, 0.55) 42%,
    rgba(74, 58, 22, 0.92) 100%
  );
  border-radius: 100px;
  border: 2px solid rgba(4, 3, 2, 0.85);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.12);
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
.info-modal__body::-webkit-scrollbar-thumb:hover,
.drawer__panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(240, 230, 168, 0.55) 0%,
    rgba(212, 175, 55, 0.72) 45%,
    rgba(110, 88, 34, 0.95) 100%
  );
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.22);
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
.info-modal__body::-webkit-scrollbar-corner,
.drawer__panel::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Noto Sans", system-ui, sans-serif;
  color: #ebe4d8;
  background: var(--ink);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.35rem var(--page-gutter) calc(2.25rem + env(safe-area-inset-bottom, 0px));
  padding-left: max(var(--page-gutter), env(safe-area-inset-left, 0px));
  padding-right: max(var(--page-gutter), env(safe-area-inset-right, 0px));
  position: relative;
}

body.is-loading,
body.drawer-open,
body.info-modal-open {
  overflow: hidden;
}

/* Tam ekran yükleme — video / sayfa hazır olana kadar */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, #1a1510 0%, #060504 65%);
  transition: opacity 0.65s var(--ease-out), visibility 0.65s step-end;
}

.page-loader--hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
  padding: 1.5rem;
}

.page-loader__logo {
  width: min(280px, 72vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.12));
  animation: loader-logo 2.2s ease-in-out infinite;
}

.page-loader__hint {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.55);
}

@keyframes loader-logo {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader__logo {
    animation: none;
  }
}

/* —— Arka plan video —— */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: var(--ink) url("../images/arkabg.jpg") center / cover no-repeat;
}

.page-bg__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: saturate(1.05) contrast(1.04) brightness(0.92);
}

.page-bg__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 95% 75% at 50% 25%, rgba(8, 5, 3, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 0, 0, 0.35) 0%, transparent 58%),
    linear-gradient(165deg, rgba(6, 4, 2, 0.2) 0%, rgba(4, 2, 1, 0.55) 50%, rgba(2, 1, 0, 0.78) 100%);
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.4);
}

.page-bg__grain {
  position: absolute;
  inset: -20%;
  z-index: 2;
  opacity: 0.055;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(10) infinite;
}

@keyframes grain-shift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, 1%);
  }
  50% {
    transform: translate(1%, -1%);
  }
  75% {
    transform: translate(-1%, -2%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-bg__grain {
    animation: none;
  }
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  box-sizing: border-box;
}

.quick-nav {
  display: none;
}

@media (min-width: 1200px) {
  .quick-nav {
    display: block;
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 55;
    width: min(230px, 18vw);
    max-height: min(78vh, 760px);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.26);
    background: rgba(8, 6, 5, 0.76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  }

  .quick-nav__title {
    padding: 0.56rem 0.62rem;
    font-family: var(--font-display);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 230, 168, 0.92);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(180deg, rgba(116, 28, 19, 0.6) 0%, rgba(47, 12, 9, 0.55) 100%);
  }

  .quick-nav__body {
    max-height: min(72vh, 700px);
    overflow-y: auto;
  }

  .quick-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    padding: 0.45rem;
  }

  .quick-nav__link {
    display: block;
    padding: 0.34rem 0.42rem;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    color: rgba(238, 230, 214, 0.86);
    text-decoration: none;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.18s var(--ease-out), color 0.18s var(--ease-out), background 0.18s var(--ease-out);
  }

  .quick-nav__link:hover {
    border-color: rgba(212, 175, 55, 0.34);
    color: rgba(255, 238, 188, 0.95);
    background: rgba(212, 175, 55, 0.08);
  }
}

@media (max-width: 767px) {
  .wrap {
    padding-top: 3rem;
  }
}

.bg-music {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap__bar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  padding-top: max(0.15rem, env(safe-area-inset-top, 0px));
  padding-right: max(0.05rem, env(safe-area-inset-right, 0px));
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 12px;
  background: rgba(14, 12, 10, 0.34);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  color: rgba(240, 230, 168, 0.58);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    border-color 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    color 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out);
}

.music-toggle svg {
  opacity: 0.88;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.06));
}

.music-toggle:hover {
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(20, 17, 14, 0.44);
  color: rgba(248, 242, 220, 0.82);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.16), 0 0 24px rgba(212, 175, 55, 0.06);
}

.music-toggle:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.35);
  outline-offset: 2px;
}

/* Masaüstü: pencere sağ üst köşeye sabit, köşeye yapışık */
@media (min-width: 768px) {
  .music-toggle {
    position: fixed;
    top: max(0.2rem, env(safe-area-inset-top, 0px));
    right: max(0.2rem, env(safe-area-inset-right, 0px));
    z-index: 60;
    width: 2.42rem;
    height: 2.42rem;
    border-radius: 11px;
    border-color: rgba(212, 175, 55, 0.1);
    background: rgba(10, 8, 7, 0.3);
  }

  .music-toggle:hover {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(18, 15, 12, 0.4);
  }
}

.music-toggle__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.music-toggle__icon--off {
  display: none;
}

.music-toggle--muted .music-toggle__icon--on {
  display: none;
}

.music-toggle--muted .music-toggle__icon--off {
  display: flex;
}

.music-toggle--muted {
  color: rgba(235, 228, 216, 0.34);
  border-color: rgba(212, 175, 55, 0.08);
  background: rgba(8, 7, 6, 0.28);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.music-toggle--muted svg {
  opacity: 0.65;
}

@media (min-width: 768px) {
  .music-toggle--muted {
    background: rgba(8, 7, 6, 0.26);
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.55rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 10px;
  background: rgba(6, 5, 4, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.menu-toggle:hover {
  border-color: rgba(212, 175, 55, 0.45);
  background: rgba(12, 10, 8, 0.65);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.menu-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  background: rgba(240, 230, 168, 0.88);
}

@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
  }
}

/* Çekmece menü — mobil */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}

.drawer--open {
  pointer-events: auto;
  visibility: visible;
}

.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.drawer--open .drawer__backdrop {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(17rem, 86vw);
  height: 100%;
  padding: 3.25rem 1.25rem 1.5rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  background: linear-gradient(165deg, rgba(22, 18, 14, 0.97) 0%, rgba(8, 6, 4, 0.98) 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.38s var(--ease-out);
}

.drawer--open .drawer__panel {
  transform: translateX(0);
}

.drawer__close {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  color: rgba(240, 230, 168, 0.9);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.drawer__close:hover {
  background: rgba(212, 175, 55, 0.22);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.drawer__link {
  display: block;
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-size: max(12.5px, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: rgba(235, 228, 216, 0.88);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.drawer__link:hover {
  color: var(--gold-bright);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
}

.drawer__link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* Logo + Sofi2: kartlarla aynı sütun genişliği, blok tam ortada */
.brand-cluster {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto 0.85rem;
  text-align: center;
  box-sizing: border-box;
  /* vh küçülse bile logo + Sofi2 çok küçülmesin */
  --brand-logo-max-h: min(max(34vh, 252px), 320px);
}

.brand-cluster__inner {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  vertical-align: top;
  /* Görsel ağırlık sağda; kart sütunuyla hizalamak için hafif sola */
  transform: translateX(clamp(-2.55rem, calc(var(--vp-cap) * -0.0525), -0.7rem));
}

@media (min-width: 520px) {
  .brand-cluster {
    --brand-logo-max-h: min(max(40vh, 288px), 380px);
  }
}

.brand-sofi2-wrap {
  position: relative;
  z-index: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  /* Logo ile görsel aralığı kapatır (PNG şeffaf alan + yan yana sıkı dizilim) */
  margin-left: clamp(-4.75rem, calc(var(--vp-cap) * -0.13), -1rem);
  animation: brand-sofi2-play 2.6s ease-in-out infinite;
  transform-origin: center center;
  will-change: transform;
}

.brand-sofi2 {
  width: auto;
  height: auto;
  max-height: var(--brand-logo-max-h);
  max-width: min(calc(var(--vp-cap) * 0.38), 200px);
  min-width: 110px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 16px rgba(212, 175, 55, 0.08));
}

@media (min-width: 520px) {
  .brand-sofi2 {
    max-width: min(240px, calc(var(--vp-cap) * 0.32));
    min-width: 128px;
  }
}

.logo {
  position: relative;
  z-index: 1;
  width: min(
    100%,
    max(288px, min(440px, calc(var(--vp-cap) - var(--page-gutter) * 2 - 5.5rem)))
  );
  max-width: 100%;
  max-height: var(--brand-logo-max-h);
  height: auto;
  object-fit: contain;
  display: block;
  filter:
    drop-shadow(0 4px 8px rgba(0, 0, 0, 0.9))
    drop-shadow(0 24px 48px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 60px rgba(212, 175, 55, 0.12));
  margin: 0;
  flex-shrink: 0;
}

@keyframes brand-sofi2-play {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg) scale(1);
  }
  25% {
    transform: translateY(-5px) rotate(1deg) scale(1.05);
  }
  50% {
    transform: translateY(-2px) rotate(2deg) scale(1.02);
  }
  75% {
    transform: translateY(-6px) rotate(-1deg) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-sofi2-wrap {
    animation: none;
    will-change: auto;
  }
}

/* Sunucu kartları — viewport genişliğine göre 2 / 3 sütun (tüm tarayıcılarda güvenilir) */
.game-zone {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  margin-top: 0.45rem;
  margin-bottom: 0.85rem;
  box-sizing: border-box;
}

.game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
  align-items: stretch;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}

@media (min-width: 600px) {
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }

  .game-card-neon {
    order: 0;
  }
}

@media (min-width: 960px) {
  .game-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Yakında açılacak kart (Destan): mobilde en üstte */
@media (max-width: 599px) {
  .game-card-neon {
    order: -1;
  }
}

.game-grid .empty-msg {
  grid-column: 1 / -1;
  text-align: center;
  font-size: max(13.5px, 0.88rem);
  color: rgba(235, 228, 216, 0.45);
  padding: 1rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  min-height: 12rem;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 1.05rem 1.05rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, transparent 42%),
    rgba(4, 3, 2, 0.28);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.game-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 230, 168, 0.35), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 20px 48px rgba(0, 0, 0, 0.35),
    0 0 48px rgba(212, 175, 55, 0.08);
}

.game-card:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

/* İnce çerçeve + köşeleri dolaşan neon çizgi (SVG stroke-dashoffset) */
.game-card-neon {
  position: relative;
  display: block;
  border-radius: 16px;
  padding: 0;
  overflow: visible;
  background: transparent;
}

.game-card-neon__svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* Hafif sabit hat — referans */
.game-card-neon__rim {
  stroke: rgba(255, 248, 230, 0.07);
  stroke-width: 1;
  fill: none;
}

.game-card-neon--red .game-card-neon__rim {
  stroke: rgba(248, 113, 113, 0.14);
}

/* Köşeden köşeye dolaşan kısa neon segmenti */
.game-card-neon__trace {
  stroke: #fde68a;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 7 93;
  stroke-dashoffset: 0;
  animation: neon-trace-orbit 4.2s linear infinite;
  filter: drop-shadow(0 0 2px rgba(252, 211, 77, 0.75));
}

.game-card-neon--red .game-card-neon__trace {
  stroke: #fecaca;
  filter:
    drop-shadow(0 0 2px rgba(254, 202, 202, 0.95))
    drop-shadow(0 0 6px rgba(248, 113, 113, 0.55));
}

@keyframes neon-trace-orbit {
  to {
    stroke-dashoffset: -100;
  }
}

.game-card-neon .game-card--soon {
  position: relative;
  z-index: 1;
  margin: 1px;
  border-radius: 14px;
  border: 1px solid rgba(30, 24, 20, 0.75);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, transparent 45%),
    rgba(10, 8, 6, 0.94);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.game-card-neon .game-card--soon:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.48);
}

.game-card-neon--red .game-card--soon {
  border-color: rgba(89, 24, 24, 0.45);
  background: linear-gradient(145deg, rgba(254, 202, 202, 0.05) 0%, transparent 48%),
    rgba(14, 7, 7, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.48);
}

.game-card-neon--red .game-card--soon:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.52);
}

/* Destan kart içi vurgular */
.game-card--destan .game-card__slot {
  color: #fca5a5;
}

.game-card--destan .game-card__name {
  color: rgba(254, 242, 242, 0.98);
  text-shadow: 0 0 24px rgba(220, 38, 38, 0.35);
}

.game-card--destan .game-card__timer-label {
  color: rgba(248, 113, 113, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  .game-card-neon__trace {
    animation: none;
    stroke-dasharray: 100 0;
    stroke-opacity: 0.5;
  }
}

.game-card__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28rem 0.5rem;
  margin-bottom: 0.42rem;
}

.game-card__slot {
  font-family: var(--font-display);
  font-size: max(11px, 0.64rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-bright);
  opacity: 0.85;
}

.game-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: max(18px, 1.08rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.96);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.game-card__meta {
  font-size: max(12px, 0.7rem);
  color: rgba(235, 228, 216, 0.46);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 0;
}

.game-card__foot {
  margin-top: auto;
  padding-top: 0.62rem;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.game-card__timer {
  padding-top: 0.55rem;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.game-card__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  min-width: 0;
}

.game-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.52rem;
  font-family: var(--font-display);
  font-size: max(10.8px, 0.58rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: rgba(240, 236, 228, 0.92);
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.game-card__btn:not(.game-card__btn--site) {
  flex: 1 1 0;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card__btn:hover {
  border-color: rgba(212, 175, 55, 0.48);
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-bright);
  transform: translateY(-1px);
}

.game-card__btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

/* Neredeyse görünmez; hover / focus ile ortaya çıkar */
.game-card__btn--site {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(240, 236, 228, 0.76);
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.03);
  box-shadow: none;
}

.game-card__btn--site:hover {
  color: rgba(240, 230, 168, 0.9);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.09);
}

.game-card__btn--site:focus-visible {
  color: rgba(240, 230, 168, 0.95);
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  transform: none;
}

.game-card__timer-label {
  font-family: var(--font-display);
  font-size: max(10.5px, 0.57rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.68);
}

.game-card__timer-value {
  font-size: max(15px, 0.92rem);
  font-variant-numeric: tabular-nums;
  color: rgba(248, 244, 236, 0.92);
  line-height: 1.25;
}

.game-card__timer-value strong {
  color: var(--gold-bright);
  font-weight: 600;
}

.intro-template {
  position: relative;
  max-width: 900px;
  margin: 0.7rem auto 0.5rem;
  border-radius: 0;
}

.intro-template + .intro-template {
  margin-top: 0;
}

.intro-template__media {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45), 0 0 36px rgba(183, 80, 40, 0.12);
  background: #0a0806;
}

.intro-template__join-ribbon {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.4));
  z-index: 8;
  pointer-events: none;
}

.intro-template--reverse::after {
  content: "";
  position: absolute;
  top: 0;
  left: -34%;
  transform: translateY(-50%);
  width: 34%;
  height: clamp(14px, 2.1vw, 24px);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 232, 176, 0.16) 30%,
    rgba(255, 252, 235, 0.5) 50%,
    rgba(255, 232, 176, 0.16) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 9;
  pointer-events: none;
  animation: join-ribbon-shimmer 3.1s ease-in-out infinite;
}

@keyframes join-ribbon-shimmer {
  0% {
    left: -36%;
    opacity: 0;
  }
  15% {
    opacity: 0.95;
  }
  60% {
    opacity: 0.75;
  }
  100% {
    left: 106%;
    opacity: 0;
  }
}

.intro-template__bg {
  display: block;
  width: 100%;
  height: auto;
  object-position: center center;
}

.intro-template::before {
  content: none;
}

.intro-template::after {
  content: none;
}

.intro-template__overlay {
  --intro-text-width: min(56%, 520px);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(0.65rem, 1.8vw, 1rem);
  padding-top: clamp(1.45rem, 4.5vw, 2.6rem);
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.34) 0%, rgba(8, 5, 4, 0.62) 36%, rgba(6, 4, 3, 0.76) 100%),
    radial-gradient(95% 76% at 10% 8%, rgba(210, 96, 52, 0.18) 0%, transparent 50%);
  transition: background 0.3s var(--ease-out);
}

@media (min-width: 900px) {
  .intro-template__overlay {
    padding-top: clamp(1.95rem, 5.8vw, 3.25rem);
  }
}

.intro-template__head {
  display: flex;
  width: var(--intro-text-width);
  max-width: 100%;
  margin-right: auto;
  margin-left: 0;
  justify-content: center;
  margin-bottom: 1rem;
}

.intro-template__title {
  position: relative;
  min-width: min(82%, 18.5rem);
  margin-inline: auto;
  text-align: center;
  padding: 0.5rem 1.15rem 0.58rem;
  border-radius: 2px;
  border: 1px solid rgba(238, 192, 126, 0.62);
  background:
    linear-gradient(180deg, rgba(255, 220, 146, 0.14) 0%, transparent 42%),
    linear-gradient(180deg, rgba(161, 44, 28, 0.96) 0%, rgba(95, 22, 15, 0.98) 54%, rgba(58, 10, 8, 0.98) 100%);
  color: rgba(255, 236, 185, 0.98);
  font-family: var(--font-display);
  font-size: max(14px, 0.82rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.62), 0 0 16px rgba(255, 154, 77, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 232, 188, 0.28),
    inset 0 -1px 0 rgba(40, 8, 6, 0.82),
    0 10px 24px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(222, 104, 53, 0.16);
}

.intro-template__title::before,
.intro-template__title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid rgba(236, 192, 125, 0.55);
  background: linear-gradient(180deg, rgba(148, 38, 24, 0.95) 0%, rgba(72, 16, 12, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 218, 150, 0.24), 0 0 10px rgba(214, 108, 55, 0.2);
}

.intro-template__title::before {
  left: -0.52rem;
}

.intro-template__title::after {
  right: -0.52rem;
}

.intro-template__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  align-items: start;
  height: auto;
}

.intro-template__content {
  width: var(--intro-text-width);
  max-width: 100%;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
  color: rgba(245, 238, 224, 0.9);
  font-size: max(13px, 0.78rem);
  line-height: 1.62;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.intro-template--reverse .intro-template__head,
.intro-template--reverse .intro-template__content {
  margin-left: auto;
  margin-right: auto;
}

.intro-template--onsoz .intro-template__overlay {
  padding-top: clamp(0.95rem, 3.2vw, 1.9rem);
}

.intro-template--legal .intro-template__head,
.intro-template--legal .intro-template__content {
  margin-left: auto;
  margin-right: auto;
}

.intro-template--efsun .intro-template__head,
.intro-template--efsun .intro-template__content {
  margin-left: auto;
  margin-right: auto;
}

.intro-template--efsun .intro-template__overlay {
  --intro-text-width: min(94%, 860px);
}

.intro-template--battlepass .intro-template__overlay {
  padding-top: clamp(1.45rem, 4.5vw, 2.6rem);
}

.intro-template--battlepass .intro-template__content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.intro-template--battlepass .intro-template__support {
  margin-top: auto;
  margin-bottom: clamp(0.4rem, 1.8vw, 1rem);
}

.intro-template--efsun .intro-template__head {
  justify-content: center;
}

.intro-template--efsun .intro-template__content {
  text-align: center;
}

.intro-template--efsun .intro-template__badges {
  justify-content: center;
}

.intro-template--offline .intro-template__body {
  margin-top: 0;
}

.intro-template--offline .intro-template__content {
  margin-bottom: 0;
}

.intro-template--legal .intro-template__overlay {
  --intro-text-width: min(86%, 780px);
  padding-top: clamp(3.95rem, 9.2vw, 6.2rem);
}

.intro-template--legal .intro-template__head {
  justify-content: center;
}

.intro-template--legal .intro-template__content {
  text-align: center;
}

.intro-template--legal .intro-template__support-line {
  text-align: center;
}

.intro-template--efsun .intro-template__support-line {
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: max(11px, 0.62rem);
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.45;
  color: rgba(235, 228, 216, 0.8);
}

.intro-template--right .intro-template__head,
.intro-template--right .intro-template__content {
  margin-left: auto;
  margin-right: 0;
}

.intro-template--right .intro-template__overlay {
  padding-top: clamp(3.55rem, 8.8vw, 6.1rem);
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.24) 0%, rgba(8, 5, 4, 0.52) 34%, rgba(6, 4, 3, 0.72) 100%),
    radial-gradient(110% 84% at 100% 8%, rgba(236, 126, 72, 0.3) 0%, rgba(236, 126, 72, 0.12) 34%, transparent 62%);
}

@media (hover: hover) and (pointer: fine) {
  .intro-template__media:hover .intro-template__overlay {
    background:
      linear-gradient(180deg, rgba(8, 6, 5, 0.12) 0%, rgba(6, 4, 3, 0.2) 40%, rgba(4, 3, 2, 0.3) 100%),
      radial-gradient(95% 76% at 10% 8%, rgba(210, 96, 52, 0.06) 0%, transparent 60%);
  }

  .intro-template--right .intro-template__media:hover .intro-template__overlay {
    background:
      linear-gradient(180deg, rgba(8, 6, 5, 0.12) 0%, rgba(6, 4, 3, 0.2) 40%, rgba(4, 3, 2, 0.3) 100%),
      radial-gradient(110% 84% at 100% 8%, rgba(236, 126, 72, 0.1) 0%, rgba(236, 126, 72, 0.04) 38%, transparent 65%);
  }
}

.intro-template--right .intro-template__head {
  justify-content: center;
}

.intro-template--reverse .intro-template__overlay {
  --intro-text-width: min(86%, 780px);
  padding-top: clamp(3.05rem, 7.8vw, 5.05rem);
}

.intro-template--reverse .intro-template__head {
  justify-content: center;
}

.intro-template--reverse .intro-template__title {
  margin-inline: auto;
}

.intro-template__content p + p {
  margin-top: 0.8rem;
}

.intro-template__support {
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(242, 197, 126, 0.32);
}

.intro-template__content > .intro-template__support:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.intro-template__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.52rem 0.95rem 0.56rem;
  border: 1px solid rgba(241, 200, 136, 0.52);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.2) 0%, transparent 40%),
    linear-gradient(180deg, rgba(145, 40, 26, 0.92) 0%, rgba(73, 19, 13, 0.92) 100%);
  color: rgba(252, 236, 192, 0.98);
  font-family: var(--font-display);
  font-size: max(12px, 0.72rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 226, 166, 0.25), 0 6px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.intro-template__cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 220, 156, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 234, 188, 0.32), 0 8px 18px rgba(0, 0, 0, 0.34),
    0 0 18px rgba(236, 126, 72, 0.22);
}

.intro-template__cta:focus-visible {
  outline: 2px solid rgba(255, 236, 185, 0.85);
  outline-offset: 2px;
}

.intro-template__support-line {
  font-family: var(--font-display);
  font-size: max(12.5px, 0.72rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 229, 170, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 14px rgba(233, 122, 64, 0.2);
}

.intro-template__table-wrap {
  margin-top: 0.7rem;
  overflow-x: auto;
  border: 1px solid rgba(241, 200, 136, 0.28);
  background: rgba(8, 6, 5, 0.55);
}

.intro-template__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 0;
}

.intro-template__table th,
.intro-template__table td {
  padding: 0.34rem 0.48rem;
  border-bottom: 1px solid rgba(241, 200, 136, 0.14);
  font-size: max(11.2px, 0.64rem);
}

.intro-template__table thead th {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 236, 185, 0.95);
  background: rgba(104, 28, 18, 0.55);
  border-bottom-color: rgba(241, 200, 136, 0.28);
}

.intro-template__table th {
  width: 74%;
  text-align: left;
  color: rgba(245, 233, 202, 0.94);
  font-weight: 600;
}

.intro-template__table td {
  width: 26%;
  text-align: right;
  color: rgba(255, 226, 170, 0.96);
  font-weight: 700;
  border-left: 1px solid rgba(241, 200, 136, 0.22);
}

.intro-template__table tr:last-child th,
.intro-template__table tr:last-child td {
  border-bottom: none;
}

.npc-showcase {
  margin-top: 0.75rem;
  padding: 0.45rem;
  border: 1px solid rgba(241, 200, 136, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.08) 0%, transparent 35%),
    rgba(6, 4, 3, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 232, 188, 0.14), 0 10px 24px rgba(0, 0, 0, 0.28);
}

.npc-showcase__img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(241, 200, 136, 0.22);
}

.intro-template__final-logo-wrap {
  margin-top: 0.85rem;
  display: flex;
  justify-content: center;
}

.intro-template__final-logo {
  width: min(260px, 70%);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 20px rgba(236, 126, 72, 0.16));
}

.intro-template__notice {
  margin-top: 0.35rem;
  padding: 0.62rem 0.78rem;
  border: 1px solid rgba(241, 200, 136, 0.32);
  background: rgba(10, 7, 6, 0.55);
  color: rgba(245, 233, 202, 0.95);
  font-family: "Noto Sans", system-ui, sans-serif;
  font-size: max(13.5px, 0.78rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: center;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 232, 188, 0.12), 0 6px 14px rgba(0, 0, 0, 0.22);
}

.intro-template__badges {
  list-style: none;
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
}

.intro-template--reverse .intro-template__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 0.6rem;
}

.intro-template--legal .intro-template__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem 0.6rem;
}

.intro-template__badges li {
  padding: 0.34rem 0.55rem 0.36rem;
  border: 1px solid rgba(241, 200, 136, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 221, 160, 0.12) 0%, transparent 48%),
    linear-gradient(180deg, rgba(90, 25, 18, 0.84) 0%, rgba(41, 12, 10, 0.84) 100%);
  color: rgba(247, 230, 188, 0.92);
  font-family: var(--font-display);
  font-size: max(12.5px, 0.72rem);
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 228, 172, 0.2), 0 4px 10px rgba(0, 0, 0, 0.24);
}

@media (max-width: 760px) {
  .intro-template {
    margin: 0.55rem auto 0.4rem;
  }

  .intro-template__media {
    min-height: 0;
  }

  .intro-template__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .intro-template__join-ribbon {
    transform: translateY(-42%);
  }

  .intro-template--reverse::after {
    height: clamp(11px, 2.7vw, 16px);
  }

  .intro-template__overlay {
    --intro-text-width: 100%;
    position: relative;
    inset: auto;
    padding: 0.75rem 0.62rem 0.82rem;
    padding-top: 1.15rem;
  }

  .intro-template__head {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-bottom: 0.5rem;
  }

  .intro-template__title {
    min-width: 0;
    width: min(100%, 14.2rem);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    padding: 0.34rem 0.68rem 0.4rem;
  }

  .intro-template__title::before,
  .intro-template__title::after {
    width: 0.62rem;
    height: 0.62rem;
  }

  .intro-template__content {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 0.69rem;
    line-height: 1.42;
  }

  .intro-template__support {
    margin-top: 0.52rem;
    padding-top: 0.45rem;
  }

  .intro-template__support-line {
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .intro-template__table {
    min-width: 560px;
  }

  .intro-template--efsun .intro-template__table-wrap {
    overflow-x: visible;
  }

  .intro-template--efsun .intro-template__table {
    min-width: 0;
    table-layout: fixed;
  }

  .intro-template--efsun .intro-template__table th {
    width: 68%;
    white-space: normal;
    word-break: break-word;
  }

  .intro-template--efsun .intro-template__table td {
    width: 32%;
    white-space: nowrap;
  }

  .intro-template__table th,
  .intro-template__table td {
    font-size: 0.6rem;
    padding: 0.28rem 0.3rem;
  }

  .intro-template__badges {
    justify-content: center;
  }

  .intro-template__badges li {
    white-space: normal;
    font-size: 0.58rem;
    padding: 0.24rem 0.3rem;
  }

  .intro-template__notice {
    font-size: 0.73rem;
    padding: 0.5rem 0.55rem;
    letter-spacing: 0.01em;
  }

  .intro-template__cta {
    width: 100%;
    min-width: 0;
    font-size: 0.62rem;
    padding: 0.4rem 0.5rem;
  }

  .intro-template--reverse .intro-template__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-template--legal .intro-template__badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-template--reverse .intro-template__overlay,
  .intro-template--legal .intro-template__overlay,
  .intro-template--right .intro-template__overlay {
    padding-top: 1.3rem;
  }
}

.intro-template__cta-row {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
}

.intro-template__cta--ghost {
  background: rgba(12, 9, 7, 0.58);
  border-color: rgba(241, 200, 136, 0.34);
  color: rgba(247, 230, 188, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 226, 166, 0.1), 0 4px 12px rgba(0, 0, 0, 0.22);
}

.intro-template__cta--ghost:hover {
  border-color: rgba(255, 220, 156, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 234, 188, 0.2), 0 6px 14px rgba(0, 0, 0, 0.3);
}

.intro-template--legal .intro-template__support {
  border-top-color: rgba(241, 200, 136, 0.42);
}

.intro-template--legal .intro-template__badges {
  margin-top: 0.5rem;
}

@media (max-width: 760px) {
  .intro-template__cta-row {
    margin-top: 0.55rem;
    gap: 0.4rem;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .intro-template--reverse .intro-template__badges,
  .intro-template--legal .intro-template__badges {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-template--reverse::after {
    animation: none;
    opacity: 0;
  }
}

.intro-template__logo-wrap {
  display: flex;
  justify-content: center;
}

.intro-template__logo {
  width: min(210px, 64vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(240, 184, 118, 0.45);
  background:
    radial-gradient(circle at 50% 44%, rgba(111, 17, 13, 0.9) 0%, rgba(55, 7, 6, 0.94) 62%, rgba(14, 8, 7, 0.98) 100%),
    #110a08;
  box-shadow:
    inset 0 0 0 3px rgba(38, 18, 14, 0.85),
    inset 0 0 34px rgba(255, 102, 51, 0.14),
    0 10px 34px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.intro-template__logo-main {
  font-family: var(--font-display);
  font-size: max(34px, 2.1rem);
  font-weight: 700;
  color: #f3ca84;
  letter-spacing: 0.08em;
  text-shadow: 0 0 16px rgba(255, 132, 64, 0.26);
}

.intro-template__logo-sub {
  font-family: var(--font-display);
  font-size: max(16px, 0.95rem);
  letter-spacing: 0.18em;
  color: rgba(247, 213, 150, 0.88);
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-top: 0.35rem;
  margin-bottom: 0.15rem;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 0.15rem;
  box-sizing: border-box;
  font-family: var(--font-display);
  font-size: max(12.5px, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-nav a {
  color: rgba(212, 175, 55, 0.55);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.site-footer-nav a:hover {
  color: rgba(240, 230, 168, 0.9);
}

.site-footer-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer-nav__btn {
  font: inherit;
  font-family: var(--font-display);
  font-size: max(12.5px, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.55);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}

.site-footer-nav__btn:hover {
  color: rgba(240, 230, 168, 0.9);
}

.site-footer-nav__btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Bilgi pencereleri — Kurulum / SSS / Kurallar */
.info-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px))
    max(1rem, env(safe-area-inset-bottom, 0px)) max(1rem, env(safe-area-inset-left, 0px));
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out), visibility 0s linear 0.35s;
}

.info-modal--open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.35s var(--ease-out), visibility 0s;
}

.info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.info-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26.5rem);
  max-height: min(78dvh, 34rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(155deg, rgba(28, 22, 16, 0.97) 0%, rgba(8, 6, 4, 0.98) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 56px rgba(0, 0, 0, 0.55);
  text-align: left;
  transform: translateY(0.5rem) scale(0.98);
  transition: transform 0.35s var(--ease-out);
}

.info-modal--open .info-modal__panel {
  transform: translateY(0) scale(1);
}

.info-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  color: rgba(240, 230, 168, 0.92);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.info-modal__close:hover {
  background: rgba(212, 175, 55, 0.22);
}

.info-modal__close:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 2px;
}

.info-modal__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 236, 0.96);
  padding-right: 2.25rem;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.info-modal__body {
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
  scrollbar-width: thin;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(235, 228, 216, 0.88);
  padding-right: 0.15rem;
}

.info-modal__body .info-modal__lead {
  margin-bottom: 1rem;
  color: rgba(235, 228, 216, 0.92);
}

.info-modal__body .info-modal__h {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 1.1rem 0 0.45rem;
}

.info-modal__body .info-modal__h:first-of-type {
  margin-top: 0.35rem;
}

.info-modal__body p {
  margin-bottom: 0.65rem;
}

.info-modal__body p:last-child {
  margin-bottom: 0;
}

.info-modal__list {
  margin: 0 0 0.65rem;
  padding-left: 1.15rem;
}

.info-modal__list li {
  margin-bottom: 0.4rem;
}

.info-modal__list li:last-child {
  margin-bottom: 0;
}

.info-modal__note {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  font-size: 0.78rem;
  color: rgba(212, 175, 55, 0.75);
}

@media (prefers-reduced-motion: reduce) {
  .info-modal,
  .info-modal__panel {
    transition: none;
  }

  .info-modal--open .info-modal__panel {
    transform: none;
  }
}

.site-footer-nav__sep {
  color: rgba(212, 175, 55, 0.22);
  user-select: none;
}

/* Sosyal medya — footer + çekmece */
.social-bar {
  max-width: var(--content-max);
  margin-inline: auto;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  padding: 0.85rem 0.65rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, rgba(4, 3, 2, 0.45) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  box-sizing: border-box;
}

.social-bar__label {
  font-family: var(--font-display);
  font-size: max(12.5px, 0.68rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(212, 175, 55, 0.72);
  margin-bottom: 0.65rem;
}

.social-bar__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.75rem;
}

.social-bar__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max(2.85rem, 48px);
  height: max(2.85rem, 48px);
  min-width: max(2.75rem, 48px);
  min-height: max(2.75rem, 48px);
  border-radius: 12px;
  color: rgba(240, 230, 168, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  transition:
    color 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.social-bar__link:hover {
  color: var(--gold-bright);
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.social-bar__link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.social-bar__icon {
  display: block;
  width: max(1.45rem, 22px);
  height: max(1.45rem, 22px);
}

.social-bar__link--discord:hover {
  color: #c9cdfb;
  border-color: rgba(88, 101, 242, 0.55);
  box-shadow: 0 0 22px rgba(88, 101, 242, 0.2);
}

.social-bar__link--facebook:hover {
  color: #8ab4ff;
  border-color: rgba(66, 103, 178, 0.55);
  box-shadow: 0 0 22px rgba(66, 103, 178, 0.18);
}

.social-bar__link--instagram:hover {
  color: #fec8a8;
  border-color: rgba(225, 48, 108, 0.45);
  box-shadow: 0 0 22px rgba(225, 48, 108, 0.15);
}

.social-bar__link--youtube:hover {
  color: #fca5a5;
  border-color: rgba(255, 0, 0, 0.45);
  box-shadow: 0 0 22px rgba(255, 0, 0, 0.12);
}

.social-bar--drawer {
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: none;
}

.social-bar--drawer .social-bar__label {
  margin-bottom: 0.55rem;
  letter-spacing: 0.18em;
}

.social-bar--drawer .social-bar__list {
  gap: 0.45rem 0.55rem;
}

.social-bar--drawer .social-bar__link {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 10px;
}

.social-bar--drawer .social-bar__icon {
  width: 1.35rem;
  height: 1.35rem;
}

@media (min-width: 1200px) {
  body > .wrap > .social-bar {
    position: fixed;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 54;
    width: auto;
    margin: 0;
    padding: 0.55rem 0.45rem 0.6rem;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: rgba(8, 6, 5, 0.76);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  }

  body > .wrap > .social-bar .social-bar__label {
    margin-bottom: 0.45rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  body > .wrap > .social-bar .social-bar__list {
    flex-direction: column;
    gap: 0.45rem;
  }

  body > .wrap > .social-bar .social-bar__link {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
  }
}

footer {
  margin-top: 0.85rem;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 0.15rem;
  box-sizing: border-box;
  font-size: max(12.5px, 0.72rem);
  color: rgba(235, 228, 216, 0.32);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

@media (min-width: 520px) {
  .logo {
    width: min(
      100%,
      max(300px, min(480px, calc(var(--vp-cap) - var(--page-gutter) * 2 - 5.75rem)))
    );
  }
}
