/* ═══════════════════════════════════════════
   SLOT SABRİ — Premium Theme
   ═══════════════════════════════════════════ */

:root {
  --bg: #050508;
  --surface: rgba(12, 12, 18, 0.85);
  --surface-2: rgba(18, 18, 28, 0.9);
  --glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 60, 80, 0.2);
  --text: #f4f0eb;
  --muted: #7a7580;
  --gold: #f0c040;
  --gold-dim: #c9a030;
  --accent: #ff2d55;
  --accent-2: #ff6b35;
  --accent-glow: rgba(255, 45, 85, 0.5);
  --gold-glow: rgba(240, 192, 64, 0.35);
  --red: #d42020;
  --red-light: #ff4444;
  --black: #0c0c0c;
  --green: #1a8c4a;
  --green-light: #2ecc71;
  --felt: #0f3d24;
  --radius: 16px;
  --rail-width: 168px;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --page-max: 940px;
  --ticker-height: 30px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Üst Kayar Yazı ── */
.top-ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--ticker-height);
  background: linear-gradient(180deg, rgba(14, 14, 18, 0.98) 0%, rgba(10, 10, 14, 0.96) 100%);
  border-bottom: 1px solid rgba(255, 45, 85, 0.22);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.top-ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 14, 0.95) 0%,
    transparent 8%,
    transparent 92%,
    rgba(10, 10, 14, 0.95) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.top-ticker-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: rgba(244, 240, 235, 0.88);
}

.top-ticker-link:hover {
  color: #fff;
}

.top-ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: topTickerScroll 32s linear infinite;
  will-change: transform;
}

.top-ticker-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 2.5rem;
  height: var(--ticker-height);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.top-ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

.top-ticker-item strong {
  color: #29b6f6;
  font-weight: 700;
}

.top-ticker-item.is-update {
  color: rgba(240, 192, 64, 0.92);
}

.top-ticker-item.is-update .top-ticker-dot {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
}

@keyframes topTickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.top-ticker.is-hidden {
  display: none;
}

body.has-top-ticker {
  padding-top: var(--ticker-height);
}

body:not(.has-top-ticker) .side-rail {
  top: 0;
}

body:not(.has-top-ticker) .mars-side-banner {
  height: min(680px, calc(100dvh - 20px));
}

/* ── Background Layers ── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 12s ease-in-out infinite;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.18) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.bg-glow-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 192, 64, 0.1) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: -6s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes floatGlow {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50% { transform: translateX(-50%) translateY(30px); opacity: 1; }
}

/* ── Center Shell (bannerlar arası ortalanmış alan) ── */
.site-center {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding-left: var(--rail-width);
  padding-right: var(--rail-width);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ── Page ── */
.page {
  position: relative;
  width: 100%;
  max-width: var(--page-max);
  padding: 16px 22px 24px;
  flex-shrink: 0;
}

/* ── Hero Header ── */
.hero-header {
  position: relative;
  text-align: center;
  padding: 32px 0 36px;
  animation: fadeDown 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 45, 85, 0.12);
  border: 1px solid rgba(255, 45, 85, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 40%, var(--accent) 80%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite, fadeDown 0.8s ease 0.1s both;
  filter: drop-shadow(0 0 30px var(--accent-glow)) drop-shadow(0 0 60px var(--gold-glow));
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeDown 0.8s ease 0.2s both;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  animation: fadeDown 0.8s ease 0.3s both;
}

.hero-divider span:not(.diamond) {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-divider .diamond {
  color: var(--gold);
  font-size: 0.6rem;
  animation: spinSlow 8s linear infinite;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.admin-link {
  display: none;
}

/* ── Social Bar ── */
.social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
  animation: fadeDown 0.8s ease 0.35s both;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-link svg {
  width: 22px;
  height: 22px;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.social-link.platform-youtube:hover { color: #ff0000; border-color: #ff0000; box-shadow: 0 8px 24px rgba(255, 0, 0, 0.35); }
.social-link.platform-telegram:hover { color: #29b6f6; border-color: #29b6f6; box-shadow: 0 8px 24px rgba(41, 182, 246, 0.35); }
.social-link.platform-kick:hover { color: #53fc18; border-color: #53fc18; box-shadow: 0 8px 24px rgba(83, 252, 24, 0.3); }
.social-link.platform-instagram:hover {
  color: #e1306c;
  border-color: #e1306c;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.35);
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Fixed Side Rails — MARSBAHİS ── */
.side-rail {
  position: fixed;
  top: var(--ticker-height);
  bottom: 0;
  width: var(--rail-width);
  z-index: 20;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.side-rail-left { left: 0; }
.side-rail-right { right: 0; }

.mars-side-banner {
  pointer-events: auto;
  container-type: size;
  container-name: mars-banner;
  display: grid;
  grid-template-rows: minmax(0, 1.22fr) minmax(0, 0.98fr) 38px minmax(0, 1.72fr);
  align-items: stretch;
  width: var(--mars-width, 158px);
  height: min(680px, calc(100dvh - var(--ticker-height) - 20px));
  padding: 8px 8px 10px;
  border-radius: var(--mars-radius, 22px);
  border: 1.5px solid var(--mars-border, #d32f2f);
  background: linear-gradient(180deg, var(--mars-bg, #0c0c0e) 0%, #060608 100%);
  box-shadow:
    0 0 28px rgba(211, 47, 47, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.mars-side-banner:hover {
  box-shadow: 0 0 32px rgba(211, 47, 47, 0.42);
}

/* Üst %40 — bonus yazıları (en üstten, aralıklı) */
.mars-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  min-height: 0;
  padding-top: 2px;
  overflow: hidden;
}

.mars-line {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.mars-pct {
  font-family: var(--font-body);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  color: var(--mars-bonus1-big, #ef4444);
  letter-spacing: -0.03em;
  text-shadow: 0 0 18px rgba(239, 68, 68, 0.45);
}

.mars-amt {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--mars-bonus2-big, #fff);
  letter-spacing: -0.02em;
}

.mars-lbl {
  font-family: var(--font-body);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mars-bonus1-small, #e53935);
  line-height: 1.2;
}

.mars-lbl-2 {
  color: var(--mars-bonus2-small, #e53935);
}

.mars-gap {
  display: block;
  width: 100%;
  height: 5px;
  flex-shrink: 0;
}

/* Orta promo — kayıp iadesi */
.mars-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: start;
  gap: 4px;
  width: 100%;
  min-height: 0;
  padding: 0 1px 2px;
  overflow: hidden;
  box-sizing: border-box;
}

.mars-promo-line {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(0.54rem, 6cqb, 0.7rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--mars-promo, #fff);
}

.mars-promo-line.mars-promo-strong {
  font-size: clamp(0.58rem, 6.4cqb, 0.74rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.mars-promo-line.mars-promo-accent {
  font-size: clamp(0.57rem, 6.2cqb, 0.72rem);
  font-weight: 900;
  color: var(--mars-promo-accent, #ef4444);
  text-shadow: 0 0 14px rgba(239, 68, 68, 0.5);
}

/* GİRİŞ YAP — sabit satır, logoya binmez */
.mars-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  height: 38px;
  padding: 0 2px;
  position: relative;
  z-index: 4;
  box-sizing: border-box;
  isolation: isolate;
}

.mars-mid::before {
  content: "";
  position: absolute;
  inset: 0 1px;
  background: var(--mars-bg, #0c0c0e);
  border-radius: 8px;
  z-index: 0;
}

.mars-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 32px;
  margin: 0;
  padding: 0 8px;
  border-radius: 999px;
  border: 1.5px solid var(--mars-btn-border, #fff);
  background-color: var(--mars-btn-bg, #000);
  color: var(--mars-btn-text, #fff);
  font-family: var(--font-body);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;
  box-sizing: border-box;
  box-shadow: none;
}

.mars-side-banner:hover .mars-cta {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.12);
}

/* Alt — logo (butonun altında, taşmaz) */
.mars-foot {
  container-type: size;
  container-name: mars-foot;
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-sizing: border-box;
  z-index: 1;
}

.mars-foot::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 45%;
  background: linear-gradient(0deg, rgba(227, 30, 36, 0.1) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.mars-brand-col {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding: 0 6px 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.mars-brand-col::before {
  content: "";
  flex: 1 1 auto;
  min-height: 10px;
  width: 100%;
}

.mars-word-vert {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: clamp(11px, 5.2cqh, 15px);
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--mars-brand, #fff);
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.mars-anniv-vert {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: block;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 0 12px rgba(227, 30, 36, 0.45);
}

.mars-anniv-num {
  font-family: var(--font-body);
  font-size: clamp(18px, 7.8cqh, 24px);
  font-weight: 900;
  color: var(--mars-year, #e31e24);
  letter-spacing: -0.02em;
}

.mars-anniv-suf {
  font-family: var(--font-body);
  font-size: clamp(10px, 3.8cqh, 13px);
  font-weight: 700;
  color: var(--mars-brand, #fff);
  letter-spacing: 0.02em;
}

.mars-tag-vert {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: block;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: clamp(10px, 4cqh, 13px);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--mars-brand-accent, var(--mars-year, #e31e24));
  text-shadow: 0 0 10px rgba(227, 30, 36, 0.35);
}

/* Kırmızı M ikonu — en alt */
.mars-gem {
  position: relative;
  flex-shrink: 0;
  width: clamp(48px, 15cqw, 58px);
  height: clamp(48px, 15cqw, 58px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    conic-gradient(
      from 210deg at 50% 50%,
      #6d0a0a 0deg,
      #b71c1c 35deg,
      #ff5252 70deg,
      #e53935 110deg,
      #8b0000 155deg,
      #ff1744 200deg,
      #c62828 250deg,
      #7f0a0a 310deg,
      #d32f2f 360deg
    );
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 0.22),
    inset 0 -6px 14px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(227, 30, 36, 0.35);
}

.mars-gem-shine {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.35) 0%, transparent 42%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
}

.mars-gem-shine::after {
  content: "";
  position: absolute;
  top: 12%;
  left: 18%;
  width: 28%;
  height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(1px);
}

.mars-gem-letter {
  position: relative;
  z-index: 2;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 9cqw, 2rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.mars-gem-tm {
  position: absolute;
  right: 1px;
  bottom: 4px;
  z-index: 3;
  font-size: 0.38rem;
  font-weight: 700;
  color: #ef5350;
  line-height: 1;
}

.mars-side-banner-preview {
  pointer-events: none;
}

@keyframes borderFlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── Center Sponsors (referans orta kartlar) ── */
.main-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeUp 0.7s ease 0.15s both;
  width: 100%;
}

.sponsors-panel {
  position: relative;
  padding: 16px 14px;
  border-radius: var(--radius);
  background: linear-gradient(
    160deg,
    rgba(255, 45, 85, 0.1) 0%,
    rgba(12, 12, 18, 0.92) 38%,
    rgba(12, 12, 18, 0.98) 100%
  );
  border: 1px solid rgba(255, 45, 85, 0.22);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 42px rgba(255, 45, 85, 0.07);
  overflow: hidden;
  animation: fadeUp 0.7s ease 0.25s both;
}

.sponsors-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), var(--accent), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  pointer-events: none;
}

.sponsors-panel::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 45, 85, 0.1);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

.sponsors-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.sponsor-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 72px;
  padding: 12px 18px 12px 16px;
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(18, 18, 22, 0.98) 0%, rgba(10, 10, 14, 0.98) 100%);
  border: 1px solid color-mix(in srgb, var(--brand, var(--accent)) 38%, rgba(255, 255, 255, 0.08));
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.4),
    0 0 28px color-mix(in srgb, var(--brand, var(--accent)) 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  animation: fadeUp 0.6s ease both;
}

.sponsor-card-shine {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    color-mix(in srgb, var(--brand, var(--accent)) 55%, transparent) 45%,
    transparent 70%
  );
  background-size: 220% 100%;
  animation: sponsorBorderShine 4.5s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.55;
}

@keyframes sponsorBorderShine {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

.sponsor-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  background: radial-gradient(
    ellipse 130% 115% at -12% 50%,
    color-mix(in srgb, var(--brand, var(--accent)) 7%, transparent) 0%,
    color-mix(in srgb, var(--brand, var(--accent)) 3.5%, transparent) 42%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.sponsor-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand, var(--accent)) 58%, rgba(255, 255, 255, 0.15));
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.48),
    0 0 40px color-mix(in srgb, var(--brand, var(--accent)) 22%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.sponsor-card:hover .sponsor-cta-btn {
  border-color: color-mix(in srgb, var(--brand, var(--accent)) 85%, #fff);
  box-shadow: 0 0 24px color-mix(in srgb, var(--brand, var(--accent)) 40%, transparent);
}

.sponsor-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  z-index: 1;
  position: relative;
}

.sponsor-cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.sponsor-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid color-mix(in srgb, var(--brand, var(--accent)) 65%, rgba(255, 255, 255, 0.35));
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 0 12px color-mix(in srgb, var(--brand, var(--accent)) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
}

.sponsor-card:hover .sponsor-cta-btn {
  animation: none;
  opacity: 1;
  transform: scale(1.03);
}

.sponsor-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sponsor-logo {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
}

.sponsor-name {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.sponsor-name .brand-accent {
  color: var(--brand, var(--accent));
}

.sponsor-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.sponsor-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand, var(--accent));
  flex-shrink: 0;
}

.sponsor-offers {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
  margin-left: auto;
}

.sponsor-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 18px;
}

.sponsor-bonus {
  text-align: center;
  min-width: 80px;
}

.bonus-amount {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.bonus-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: #e53935;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.sponsor-card:nth-child(1) { animation-delay: 0.25s; }
.sponsor-card:nth-child(2) { animation-delay: 0.35s; }
.sponsor-card:nth-child(3) { animation-delay: 0.45s; }
.sponsor-card:nth-child(4) { animation-delay: 0.55s; }
.sponsor-card:nth-child(5) { animation-delay: 0.65s; }
.sponsor-card:nth-child(6) { animation-delay: 0.75s; }
.sponsor-card:nth-child(7) { animation-delay: 0.85s; }
.sponsor-card:nth-child(8) { animation-delay: 0.95s; }
.sponsor-card:nth-child(9) { animation-delay: 1.05s; }
.sponsor-card:nth-child(10) { animation-delay: 1.15s; }
.sponsor-card:nth-child(11) { animation-delay: 1.25s; }
.sponsor-card:nth-child(12) { animation-delay: 1.35s; }
.sponsor-card:nth-child(13) { animation-delay: 1.45s; }
.sponsor-card:nth-child(14) { animation-delay: 1.55s; }

/* Orta sponsor marka temaları */
.sponsor-card.sponsor-theme-mars {
  background: linear-gradient(135deg, rgba(22, 10, 12, 0.98) 0%, rgba(10, 8, 10, 0.98) 100%);
}

.sponsor-card.sponsor-theme-stake {
  background: linear-gradient(135deg, rgba(8, 16, 28, 0.98) 0%, rgba(5, 10, 18, 0.98) 100%);
  border-color: color-mix(in srgb, #2563eb 42%, rgba(255, 255, 255, 0.08));
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.sponsor-card.sponsor-theme-stake .sponsor-card-shine {
  background: linear-gradient(120deg, transparent 0%, rgba(59, 130, 246, 0.45) 45%, transparent 70%);
}

.sponsor-card.sponsor-theme-stake .status-dot {
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.6);
}

.sponsor-name.stake-word {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #ffffff;
  text-transform: none;
}

.sponsor-name.stake-word .stake-s {
  display: inline-block;
  font-family: inherit;
  font-size: var(--stake-s-size, 1.36em);
  font-weight: var(--stake-s-weight, 600);
  font-style: italic;
  color: inherit;
  transform: rotate(var(--stake-s-rotate, -12deg));
  transform-origin: 55% 88%;
  margin-right: 2px;
  vertical-align: -0.02em;
}

.sponsor-name.stake-word .stake-tail {
  font-family: inherit;
  font-weight: var(--stake-tail-weight, 700);
  font-size: var(--stake-tail-size, 0.88em);
  color: inherit;
  letter-spacing: inherit;
  margin-left: var(--stake-tail-margin, -3px);
}

.sponsor-card.sponsor-theme-xslot {
  background: linear-gradient(135deg, rgba(18, 12, 8, 0.98) 0%, rgba(8, 12, 22, 0.98) 100%);
  border-color: color-mix(in srgb, #f97316 40%, rgba(59, 130, 246, 0.15));
  box-shadow:
    0 4px 22px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(249, 115, 22, 0.14),
    0 0 32px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.sponsor-card.sponsor-theme-xslot .sponsor-card-shine {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(249, 115, 22, 0.35) 35%,
    rgba(59, 130, 246, 0.35) 55%,
    transparent 75%
  );
}

.sponsor-card.sponsor-theme-xslot .status-dot {
  background: #f97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.55);
}

.sponsor-card.sponsor-theme-supertoto {
  background: linear-gradient(135deg, rgba(20, 10, 10, 0.98) 0%, rgba(10, 10, 14, 0.98) 100%);
}

/* ── Önerdiğimiz Siteler ── */
.sites-panel {
  animation: fadeUp 0.7s ease 0.25s both;
}

.sites-header {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.sites-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--gold), #fff, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.analysis-slot {
  min-height: 64px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(240, 192, 64, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  overflow: visible;
  transition: 0.4s;
}

.analysis-slot.has-result {
  border-color: rgba(240, 192, 64, 0.4);
  box-shadow: 0 0 30px rgba(240, 192, 64, 0.1), inset 0 0 20px rgba(240, 192, 64, 0.03);
  animation: glowPulse 2s ease infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(240, 192, 64, 0.08); }
  50% { box-shadow: 0 0 35px rgba(240, 192, 64, 0.18); }
}

.analysis-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  font-size: 0.88rem;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--group-color, var(--gold));
  animation: slideIn 0.4s ease both;
}

.analysis-row:nth-child(2) { animation-delay: 0.08s; }
.analysis-row:nth-child(3) { animation-delay: 0.16s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

.analysis-row .group-label {
  font-weight: 700;
  color: var(--group-color, var(--gold));
  min-width: 88px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.analysis-row .group-values {
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: anywhere;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.empty-icon {
  font-size: 1.2rem;
  color: var(--gold-dim);
  animation: spinSlow 6s linear infinite;
}

/* ── Roulette Table ── */
.table-frame {
  padding: 14px;
  background: linear-gradient(145deg, var(--felt) 0%, #0a2818 50%, #061a0f 100%);
  border-radius: 14px;
  border: 2px solid rgba(240, 192, 64, 0.35);
  box-shadow:
    inset 0 2px 20px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.3);
  position: relative;
  container-type: inline-size;
}

.table-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(240, 192, 64, 0.12);
  border-radius: 10px;
  pointer-events: none;
}

.roulette-table {
  display: grid;
  grid-template-columns: repeat(13, minmax(0, 1fr));
  gap: clamp(2px, 0.5cqi, 4px);
  width: 100%;
  position: relative;
}

.table-cell {
  aspect-ratio: 1;
  border: none;
  border-radius: clamp(3px, 0.55cqi, 6px);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  cursor: pointer;
  font-size: clamp(0.5rem, 1.85cqi, 0.72rem);
  position: relative;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.table-cell.red {
  background: linear-gradient(145deg, var(--red-light), var(--red));
}

.table-cell.black {
  background: linear-gradient(145deg, #2a2a2a, var(--black));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-cell.green {
  background: linear-gradient(145deg, var(--green-light), var(--green));
}

.table-cell:hover {
  transform: translateY(-3px) scale(1.08);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 16px rgba(255, 255, 255, 0.1);
}

.table-cell.active {
  transform: scale(1.12);
  z-index: 3;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  box-shadow:
    0 0 0 4px rgba(240, 192, 64, 0.25),
    0 0 30px var(--gold-glow),
    0 8px 24px rgba(0, 0, 0, 0.5);
  animation: cellPulse 1.5s ease infinite;
}

@keyframes cellPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(240, 192, 64, 0.25), 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 0 6px rgba(240, 192, 64, 0.4), 0 0 40px var(--gold-glow); }
}

.table-cell.zero {
  grid-column: 1;
  grid-row: span 3;
  aspect-ratio: auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: clamp(3px, 0.55cqi, 6px);
  font-size: clamp(0.58rem, 2.15cqi, 0.82rem);
  padding: 0;
  letter-spacing: 0;
}

.table-cell.ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.4);
  animation: ripple 0.5s ease forwards;
}

@keyframes ripple {
  from { opacity: 1; transform: scale(0.5); }
  to { opacity: 0; transform: scale(1.5); }
}

/* ── Responsive ── */
@media (min-width: 901px) {
  html {
    height: 100%;
    zoom: 1.25;
  }

  body {
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    overflow-x: hidden;
  }

  .site-center {
    height: 100vh;
    height: 100dvh;
    min-height: 0;
    overflow: hidden;
    align-items: center;
  }

  .page {
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px 24px 12px;
  }

  .hero-header {
    padding: 8px 0 10px;
    flex-shrink: 0;
  }

  .hero-badge {
    margin-bottom: 8px;
    padding: 4px 12px;
    font-size: 0.65rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 5.2vh, 3.6rem);
  }

  .hero-sub {
    margin-top: 4px;
    font-size: 0.78rem;
  }

  .hero-divider {
    margin-top: 8px;
    gap: 10px;
  }

  .hero-divider span:not(.diamond) {
    width: 56px;
  }

  .social-bar {
    margin-top: 10px;
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .main-panel {
    gap: 12px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .sponsors-panel {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    border-radius: 14px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .sponsors-section {
    flex: 1 1 auto;
    gap: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
  }

  .sponsor-card {
    min-height: 74px;
    padding: 13px 20px 13px 16px;
    border-radius: 13px;
  }

  .sponsor-cta-btn {
    font-size: 0.5rem;
    padding: 5px 11px;
    min-height: 28px;
    letter-spacing: 0.1em;
  }

  .sponsor-name {
    font-size: 1.12rem;
  }

  .sponsor-tag {
    font-size: 0.7rem;
  }

  .sponsor-divider {
    height: 42px;
    margin: 0 18px;
  }

  .bonus-amount {
    font-size: 1.28rem;
  }

  .bonus-label {
    font-size: 0.52rem;
    margin-top: 3px;
  }

  .rulet-section {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    padding: 8px 10px 10px;
    border-radius: 14px;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
  }

  .rulet-header {
    margin-bottom: 4px;
    flex-shrink: 0;
  }

  .rulet-icon {
    font-size: 0.85rem;
    margin-bottom: 0;
  }

  .section-title {
    font-size: 1.05rem;
  }

  .section-desc {
    font-size: 0.6rem;
  }

  .analysis-slot {
    min-height: auto;
    margin-bottom: 6px;
    padding: 6px 10px;
    flex-shrink: 0;
    overflow: visible;
  }

  .empty-state {
    font-size: 0.65rem;
  }

  .table-frame {
    padding: 6px;
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }

  .roulette-table {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .top-ticker-item {
    font-size: 0.62rem;
    padding: 0 1.75rem;
  }

  .side-rail {
    display: none;
  }

  .site-center {
    padding-left: 0;
    padding-right: 0;
  }

  .page {
    max-width: 100%;
    padding: 16px 14px 40px;
  }

  .hero-header {
    padding: 22px 0 26px;
  }

  .hero-badge {
    margin-bottom: 12px;
    font-size: 0.68rem;
  }

  .hero-divider {
    margin-top: 14px;
  }

  .social-bar {
    margin-top: 16px;
    gap: 10px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }

  .main-panel {
    gap: 14px;
  }

  .sponsors-section {
    gap: 10px;
  }

  .sponsors-panel {
    padding: 14px 12px;
  }

  .sponsor-card {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 14px 16px;
    gap: 12px;
  }

  .sponsor-brand {
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .sponsor-cta {
    position: static;
    transform: none;
    width: 100%;
    padding: 2px 0;
    display: flex;
    justify-content: center;
  }

  .sponsor-cta-btn {
    width: 100%;
    max-width: 240px;
    font-size: 0.56rem;
  }

  .sponsor-offers {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .sponsor-divider {
    height: 36px;
    margin: 0 14px;
  }

  .rulet-section {
    padding: 16px 12px 18px;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .analysis-slot {
    min-height: auto;
    margin-bottom: 12px;
    overflow: visible;
  }

  .analysis-row {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    padding: 7px 10px;
  }

  .analysis-row .group-label {
    min-width: 72px;
    white-space: nowrap;
  }

  .analysis-row .group-values {
    font-size: 0.8rem;
    line-height: 1.3;
  }
}

@media (max-width: 900px) and (hover: none) {
  .sponsor-card:hover,
  .table-cell:hover,
  .social-link:hover {
    transform: none;
    box-shadow: inherit;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 12px 10px 32px;
  }

  .hero-header {
    padding: 18px 0 22px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 2.8rem);
    letter-spacing: 0.05em;
  }

  .hero-sub {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
  }

  .social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .sponsor-card {
    padding: 12px;
    gap: 12px;
  }

  .sponsor-name {
    font-size: 1rem;
  }

  .sponsor-offers {
    justify-content: space-between;
    gap: 6px;
  }

  .sponsor-bonus {
    min-width: 0;
    flex: 1;
  }

  .bonus-amount {
    font-size: 1rem;
  }

  .bonus-label {
    font-size: 0.48rem;
    letter-spacing: 0.04em;
  }

  .sponsor-divider {
    height: 32px;
    margin: 0 6px;
    flex-shrink: 0;
  }

  .rulet-section {
    padding: 12px 8px 14px;
    border-radius: 12px;
  }

  .rulet-header {
    margin-bottom: 10px;
  }

  .rulet-icon {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.15rem;
    letter-spacing: 0.08em;
  }

  .section-desc {
    font-size: 0.72rem;
  }

  .analysis-slot {
    padding: 10px 12px;
    min-height: auto;
    overflow: visible;
  }

  .analysis-row {
    padding: 6px 8px;
  }

  .analysis-row .group-label {
    min-width: 64px;
    font-size: 0.75rem;
  }

  .analysis-row .group-values {
    font-size: 0.76rem;
    letter-spacing: 0.04em;
  }

  .roulette-table {
    grid-template-columns: repeat(13, minmax(0, 1fr));
    gap: 2px;
  }

  .table-frame {
    padding: 8px;
    border-radius: 10px;
  }

  .table-cell:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Banner Themes: STAKE / XSLOT ── */
.theme-stake.mars-side-banner {
  box-shadow:
    0 0 28px rgba(37, 99, 235, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.theme-stake.mars-side-banner:hover {
  box-shadow: 0 0 34px rgba(37, 99, 235, 0.48);
}

.theme-stake .mars-foot::before {
  background: linear-gradient(0deg, rgba(37, 99, 235, 0.14) 0%, transparent 55%);
}

.theme-stake .mars-anniv-vert,
.theme-stake .mars-tag-vert {
  text-shadow: 0 0 12px rgba(59, 130, 246, 0.45);
}

.theme-stake .mars-pct {
  text-shadow: 0 0 18px rgba(96, 165, 250, 0.5);
}

.theme-stake .mars-promo-line.mars-promo-accent {
  text-shadow: 0 0 14px rgba(59, 130, 246, 0.55);
}

.theme-stake .mars-gem {
  background:
    conic-gradient(
      from 210deg at 50% 50%,
      #0a1628 0deg,
      #1e3a8a 35deg,
      #3b82f6 70deg,
      #2563eb 110deg,
      #0f172a 155deg,
      #60a5fa 200deg,
      #1d4ed8 250deg,
      #0c1929 310deg,
      #2563eb 360deg
    );
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 0.22),
    inset 0 -6px 14px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(37, 99, 235, 0.42);
}

.theme-stake .mars-gem-tm {
  color: #60a5fa;
}

.theme-xslot.mars-side-banner {
  box-shadow:
    0 0 28px rgba(249, 115, 22, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.theme-xslot.mars-side-banner:hover {
  box-shadow: 0 0 34px rgba(249, 115, 22, 0.46);
}

.theme-xslot .mars-foot::before {
  background: linear-gradient(
    0deg,
    rgba(249, 115, 22, 0.12) 0%,
    rgba(59, 130, 246, 0.07) 45%,
    transparent 70%
  );
}

.theme-xslot .mars-anniv-vert,
.theme-xslot .mars-tag-vert {
  text-shadow: 0 0 12px rgba(251, 146, 60, 0.45);
}

.theme-xslot .mars-pct {
  text-shadow: 0 0 18px rgba(251, 146, 60, 0.48);
}

.theme-xslot .mars-promo-line.mars-promo-accent {
  text-shadow: 0 0 14px rgba(249, 115, 22, 0.5);
}

.theme-xslot .mars-gem {
  background:
    conic-gradient(
      from 210deg at 50% 50%,
      #1e3a8a 0deg,
      #2563eb 40deg,
      #fb923c 90deg,
      #f97316 130deg,
      #1d4ed8 180deg,
      #f59e0b 230deg,
      #3b82f6 290deg,
      #ea580c 330deg,
      #2563eb 360deg
    );
  box-shadow:
    inset 0 3px 10px rgba(255, 255, 255, 0.22),
    inset 0 -6px 14px rgba(0, 0, 0, 0.45),
    0 0 20px rgba(249, 115, 22, 0.38);
}

.theme-xslot .mars-gem-tm {
  color: #fb923c;
}

/* ── Site-wide Themes: STAKE / XSLOT ── */
body.site-theme-stake {
  --accent: #3b82f6;
  --accent-2: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.5);
  --border: rgba(59, 130, 246, 0.24);
}

body.site-theme-stake .bg-glow-1 {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
}

body.site-theme-stake .bg-glow-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

body.site-theme-stake .top-ticker {
  border-bottom-color: rgba(59, 130, 246, 0.28);
}

body.site-theme-stake .hero-badge {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.35);
}

body.site-theme-stake .hero-title {
  background: linear-gradient(135deg, #fff 0%, #93c5fd 35%, #2563eb 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.site-theme-stake .social-link:hover {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.25);
}

body.site-theme-xslot {
  --accent: #f97316;
  --accent-2: #3b82f6;
  --accent-glow: rgba(249, 115, 22, 0.45);
  --border: rgba(249, 115, 22, 0.22);
}

body.site-theme-xslot .bg-glow-1 {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.16) 0%, transparent 70%);
}

body.site-theme-xslot .bg-glow-2 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

body.site-theme-xslot .top-ticker {
  border-bottom-color: rgba(249, 115, 22, 0.26);
}

body.site-theme-xslot .hero-badge {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.35);
}

body.site-theme-xslot .hero-title {
  background: linear-gradient(135deg, #fff 0%, #fb923c 35%, #3b82f6 70%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.site-theme-xslot .social-link:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.22);
}

/* ── Basit giriş captcha ── */
body.gate-open {
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}

.human-gate {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 5, 8, 0.88);
  backdrop-filter: blur(8px);
}

.human-gate-card {
  width: min(100%, 340px);
  padding: 24px 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 45, 85, 0.28);
  background: linear-gradient(160deg, rgba(22, 22, 28, 0.98) 0%, rgba(10, 10, 14, 0.98) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.human-gate-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.human-gate-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.human-gate-question {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 14px;
}

.human-gate-input {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  outline: none;
  margin-bottom: 10px;
}

.human-gate-input:focus {
  border-color: rgba(255, 45, 85, 0.45);
  box-shadow: 0 0 0 2px rgba(255, 45, 85, 0.15);
}

.human-gate-error {
  font-size: 0.78rem;
  color: #f87171;
  margin-bottom: 8px;
}

.human-gate-btn {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff2d55 0%, #e53935 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.human-gate-btn:hover {
  filter: brightness(1.06);
}

.human-gate.is-done {
  opacity: 0;
  transition: opacity 0.18s ease;
}

/* Site yüklenirken boş/bozuk görünümü engelle */
html.site-booting #site-boot-screen {
  opacity: 1;
  visibility: visible;
}

html.site-ready #site-boot-screen {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html.site-ready.site-booting .site-center,
html.site-ready .site-center,
html.site-ready .side-rail,
html.site-ready #particles,
html.site-ready .bg-glow,
html.site-ready .bg-grid {
  visibility: visible;
}

/* ═══════════════════════════════════════════
   SLOT SABRİ — 14 bar orta alan düzeni
   ═══════════════════════════════════════════ */
.site-slot-sabri .page {
  display: flex;
  flex-direction: column;
}

.site-slot-sabri .sites-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-slot-sabri .hero-header {
  padding-bottom: 20px;
}

.site-slot-sabri .hero-divider {
  margin-top: 12px;
}

.site-slot-sabri .site-footer {
  flex-shrink: 0;
  width: 100%;
  padding: 8px 0 4px;
  margin-top: 4px;
}

.site-slot-sabri .site-footer .social-bar {
  margin-top: 0;
  margin-bottom: 0;
  animation: fadeUp 0.7s ease 0.5s both;
}

.site-slot-sabri .sponsors-panel {
  flex: none;
  width: 100%;
  overflow: visible;
}

.site-slot-sabri .sponsors-section {
  justify-content: flex-start;
  flex: none;
}

.site-slot-sabri .sponsor-card {
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .site-slot-sabri .site-center {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
    align-items: flex-start;
  }

  .site-slot-sabri .page {
    max-height: none;
    overflow: visible;
    padding-bottom: 28px;
  }

  .site-slot-sabri .hero-header {
    padding: 8px 0 6px;
  }

  .site-slot-sabri .hero-divider {
    margin-top: 8px;
  }

  .site-slot-sabri .site-footer {
    padding: 6px 0 8px;
    margin-top: 8px;
  }

  .site-slot-sabri .site-footer .social-bar {
    gap: 10px;
  }

  .site-slot-sabri .main-panel {
    overflow: visible;
    flex: none;
    min-height: 0;
  }

  .site-slot-sabri .sponsors-panel {
    flex: none;
    min-height: 0;
    max-width: none;
  }

  .site-slot-sabri .sponsors-section {
    flex: none;
    min-height: 0;
    justify-content: flex-start;
  }
}
