/* ──────────────────────────────────────────
   RESET & ROOT
────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #07070a;
  --bg2:     #0c0c10;
  --gold:    #f5a623;
  --gold2:   #e8920a;
  --gold3:   #ffd166;
  --red:     #c0392b;
  --red2:    #e74c3c;
  --text:    #f0ece4;
  --muted:   #7a7468;
  --border:  rgba(245,166,35,0.18);
  --glow:    rgba(245,166,35,0.35);
  --font-b:  'Orbitron', sans-serif;
  --font-r:  'Rajdhani', sans-serif;
  --font-m:  'Space Mono', monospace;
  --ease:    cubic-bezier(0.76, 0, 0.24, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 32px rgba(245, 166, 35, 0.12);
  --shadow-lg: 0 12px 48px rgba(245, 166, 35, 0.16);
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 0.6rem 1rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 4px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
.skip-link:focus-visible {
  outline: 3px solid #0a0a0a;
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}
.nav-btn:focus-visible,
.mob-btn:focus-visible,
.btn:focus-visible,
.nav-discord:focus-visible,
.nav-logo:focus-visible,
.hero-discord-link:focus-visible {
  outline: 2px solid var(--gold3);
  outline-offset: 3px;
}

html, body { width: 100%; height: 100%; overflow: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-r);
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

/* ──────────────────────────────────────────
   NOISE TEXTURE OVERLAY
────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  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)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
}

/* ──────────────────────────────────────────
   GRID BACKGROUND
────────────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ──────────────────────────────────────────
   CORNER DECORATIONS
────────────────────────────────────────── */
.corner { position: fixed; z-index: 10; pointer-events: none; }
.corner-tl { top: 16px; left: 16px; }
.corner-tr { top: 16px; right: 16px; }
.corner-bl { bottom: 16px; left: 16px; }
.corner-br { bottom: 16px; right: 16px; }
.corner svg { display: block; }

/* ──────────────────────────────────────────
   NAV — SIDEBAR
────────────────────────────────────────── */
#nav {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 72px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  border-right: 1px solid var(--border);
  background: rgba(7,7,10,0.85);
  backdrop-filter: blur(20px);
  gap: 0.5rem;
}

.nav-logo {
  font-family: var(--font-b);
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-decoration: none;
  margin-bottom: auto;
  opacity: 0.85;
  padding: 0.5rem 0;
}

.nav-items {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: center;
  margin-bottom: auto;
}

.nav-btn {
  width: 48px; height: 48px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  background: none; border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  color: var(--muted);
}
.nav-btn:hover { background: rgba(245,166,35,0.08); color: var(--gold3); }
.nav-btn.active { background: rgba(245,166,35,0.12); color: var(--gold); }
.nav-btn.active::after {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 28px;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px var(--gold);
}

.nav-icon { font-size: 1.1rem; line-height: 1; }
.nav-label { font-family: var(--font-m); font-size: 0.42rem; letter-spacing: 0.1em; text-transform: uppercase; }

.nav-discord {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(88,101,242,0.15);
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: 10px;
  color: #7289da;
  transition: all 0.2s;
  text-decoration: none;
  margin-top: 0.5rem;
}
.nav-discord:hover {
  background: rgba(88,101,242,0.3);
  box-shadow: 0 0 16px rgba(88,101,242,0.4);
}

    /* ──────────────────────────────────────────
       VIEWS WRAPPER
    ────────────────────────────────────────── */
#main {
  position: fixed;
  left: 72px; top: 0; right: 0; bottom: 0;
  overflow: hidden;
}

.view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  overflow-y: auto;
  overflow-x: hidden;
}
.view.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
.view.exit {
  opacity: 0;
  transform: translateY(-20px) scale(1.01);
}

/* ──────────────────────────────────────────
   STATUS BAR (TOP RIGHT)
────────────────────────────────────────── */
#statusbar {
  position: fixed;
  top: 0; right: 0;
  height: 44px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-family: var(--font-m);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

/* ──────────────────────────────────────────
   VIEW: HOME
────────────────────────────────────────── */
#view-home {
  flex-direction: column;
  text-align: center;
}

.home-wrap {
  max-width: 860px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container {
  position: relative;
  margin-bottom: 1.2rem;
}

.logo-img {
  width: min(460px, 80vw);
  height: auto;
  filter:
    drop-shadow(0 0 40px rgba(245,166,35,0.5))
    drop-shadow(0 0 100px rgba(245,166,35,0.2));
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes float {
  0%,100%{ transform: translateY(0) rotate(0deg); }
  33%    { transform: translateY(-10px) rotate(0.3deg); }
  66%    { transform: translateY(-4px) rotate(-0.2deg); }
}

.hero-tagline {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.9;
}
.hero-tagline span { color: var(--muted); margin: 0 0.5em; }

.hero-desc {
  font-family: var(--font-r);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.hero-discord-link {
  font-family: var(--font-m);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7289da;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.hero-discord-link:hover {
  color: #a5b4fc;
  background: rgba(88, 101, 242, 0.12);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-transform: uppercase;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #0a0a0a;
  box-shadow: 0 4px 24px rgba(245,166,35,0.35), 0 1px 0 rgba(255,255,255,0.2) inset;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.5);
}
.btn-ghost {
  background: rgba(245,166,35,0.05);
  color: var(--gold);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.5);
  transform: translateY(-2px);
}
.btn-discord-main {
  background: linear-gradient(135deg,#5865F2,#4752c4);
  color: white;
  box-shadow: 0 4px 20px rgba(88,101,242,0.45);
  font-size: 0.75rem;
  padding: 1rem 2.5rem;
}
.btn-discord-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(88,101,242,0.65);
}

.btn-discord-main--center {
  margin: 0 auto;
  display: inline-flex;
}

/* STATS ROW */
.stats-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.stat-item { text-align: center; }
.stat-val {
  font-family: var(--font-b);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245,166,35,0.4);
}
.stat-val sup { font-size: 1rem; }
.stat-lbl {
  font-family: var(--font-m);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ──────────────────────────────────────────
   VIEW: FEATURES
────────────────────────────────────────── */
#view-features { align-items: flex-start; padding-top: 3rem; }

.view-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.view-header {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.view-header-desc {
  color: var(--muted);
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  max-width: 340px;
  text-align: right;
  font-weight: 500;
  line-height: 1.55;
}

.view-header-desc--narrow {
  max-width: 300px;
}
.view-tag {
  font-family: var(--font-m);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}
.view-title {
  font-family: var(--font-b);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
}
.view-title .hl {
  background: linear-gradient(90deg, var(--gold), var(--gold3));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feat-card {
  background: rgba(245,166,35,0.03);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 12px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-card:hover {
  border-color: rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.06);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feat-card:hover::before { opacity: 1; }

.feat-num {
  font-family: var(--font-m);
  font-size: 0.6rem;
  color: rgba(245,166,35,0.3);
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}
.feat-icon { font-size: 2rem; margin-bottom: 0.8rem; display: block; }
.feat-card h3 {
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  letter-spacing: 0.05em;
}
.feat-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; font-weight: 500; }

/* ──────────────────────────────────────────
   VIEW: PRICING
────────────────────────────────────────── */
#view-pricing { align-items: flex-start; padding-top: 3rem; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.price-card {
  background: rgba(245,166,35,0.03);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.price-card-featured {
  border-color: rgba(245,166,35,0.4);
  background: rgba(245,166,35,0.07);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245,166,35,0.2);
}
.price-card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245,166,35,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.popular-ribbon {
  position: absolute;
  top: 14px; right: -22px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-b);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 0.3rem 2.5rem;
  transform: rotate(30deg);
}

.price-tier {
  font-family: var(--font-m);
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.price-name {
  font-family: var(--font-b);
  font-size: 1.3rem;
  font-weight: 900;
}
.price-icon { font-size: 2.2rem; }

.price-amount-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  border-top: 1px solid rgba(245,166,35,0.1);
  border-bottom: 1px solid rgba(245,166,35,0.1);
  padding: 0.8rem 0;
}
.price-num {
  font-family: var(--font-b);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.price-currency-lbl {
  font-family: var(--font-b);
  font-size: 0.9rem;
  color: var(--muted);
}
.price-period {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: 0.2rem;
}

.price-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.price-features-list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.3rem 0;
}
.price-features-list li.yes { color: #c9bfa8; }
.price-features-list li.yes::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px var(--gold);
  flex-shrink: 0;
}
.price-features-list li.no { color: #3a3a3a; text-decoration: line-through; }
.price-features-list li.no::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #333;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-family: var(--font-m);
  font-size: 0.65rem;
  color: var(--muted);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

/* ──────────────────────────────────────────
   VIEW: ABOUT
────────────────────────────────────────── */
#view-about { align-items: flex-start; padding-top: 3rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-text p strong { color: var(--gold); font-weight: 700; }

/* DEV CARDS */
.dev-cards {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.6rem 0 1.4rem;
}
.dev-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(245,166,35,0.04);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  transition: all 0.25s;
}
.dev-card:hover {
  background: rgba(245,166,35,0.08);
  border-color: rgba(245,166,35,0.3);
  transform: translateX(4px);
}
.dev-avatar {
  font-size: 1.8rem;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(245,166,35,0.08);
  border-radius: 8px;
  flex-shrink: 0;
}
.dev-info { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.dev-role {
  font-family: var(--font-b);
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.dev-desc { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.dev-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.3rem; }
.dev-tag {
  font-family: var(--font-m);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: rgba(245,166,35,0.7);
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-family: var(--font-r);
  font-size: 0.85rem;
  font-weight: 600;
  color: #b0a898;
  transition: all 0.2s;
}
.trust-chip:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.35);
  color: var(--text);
}
.trust-chip-icon { font-size: 1.1rem; }

.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card {
  background: rgba(245,166,35,0.04);
  border: 1px solid rgba(245,166,35,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  transition: all 0.2s;
}
.review-card:hover {
  background: rgba(245,166,35,0.07);
  transform: translateX(4px);
}
.review-stars {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  filter: sepia(1) saturate(3) brightness(0.9);
}
.review-text {
  font-style: italic;
  color: #a09888;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.review-author {
  font-family: var(--font-m);
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.about-pixel-wrap {
  display: flex;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(245,166,35,0.03);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 16px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 30px rgba(245,166,35,0.12));
}

/* ──────────────────────────────────────────
   VIEW: ADS (Casino / sponsor görselleri)
────────────────────────────────────────── */
#view-ads {
  align-items: flex-start;
  padding-top: 2.5rem;
}

.scroll-view--ads {
  padding-bottom: 2rem;
}

.ads-code {
  font-family: var(--font-m);
  font-size: 0.85em;
  color: var(--gold3);
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.ads-lead {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.65;
  max-width: 720px;
}

.ads-filename {
  font-family: var(--font-m);
  font-size: 0.82rem;
  color: rgba(245, 166, 35, 0.85);
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.ads-card {
  background: rgba(245, 166, 35, 0.03);
  border: 1px solid rgba(245, 166, 35, 0.12);
  border-radius: 14px;
  padding: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.ads-card:hover {
  border-color: rgba(245, 166, 35, 0.28);
  box-shadow: var(--shadow-md);
}

.ads-img-box {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px dashed rgba(245, 166, 35, 0.22);
}

.ads-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.ads-caption {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b0a898;
  text-align: center;
  font-family: var(--font-r);
}

.ads-cta {
  margin-top: auto;
  padding-top: 0.5rem;
}

.ads-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: rgba(88, 101, 242, 0.06);
  border: 1px solid rgba(88, 101, 242, 0.22);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.08);
}

.ads-cta-kicker {
  font-family: var(--font-m);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7289da;
  margin-bottom: 0.5rem;
}

.ads-cta-title {
  font-family: var(--font-b);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.ads-cta-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.ads-cta-btn {
  width: 100%;
  max-width: 380px;
  justify-content: center;
}

.btn-discord-main.ads-cta-btn:focus-visible {
  outline-color: #a5b4fc;
}

@media (max-width: 700px) {
  .ads-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────────────────────────────────
   VIEW: DISCORD
────────────────────────────────────────── */
#view-discord { flex-direction: column; text-align: center; }

.discord-wrap { max-width: 680px; width: 100%; }

.discord-icon-big {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 20px;
  color: #7289da;
  box-shadow: 0 0 40px rgba(88,101,242,0.2);
  animation: glow-disc 3s ease-in-out infinite;
}
@keyframes glow-disc {
  0%,100%{ box-shadow: 0 0 40px rgba(88,101,242,0.2); }
  50%    { box-shadow: 0 0 60px rgba(88,101,242,0.4); }
}

.discord-title {
  font-family: var(--font-b);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.discord-title .hl {
  background: linear-gradient(90deg, #7289da, #b0b8ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.discord-desc {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.discord-features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.disc-feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-m);
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.disc-feat::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.4rem;
}

/* ──────────────────────────────────────────
   FLOATING PARTICLES (canvas)
────────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ──────────────────────────────────────────
   MOBILE NAV (bottom)
────────────────────────────────────────── */
#mob-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(7,7,10,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 200;
  align-items: center;
  justify-content: space-around;
  padding: 0 0.5rem;
}
.mob-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: none; border: none; cursor: pointer;
  color: var(--muted); padding: 0.5rem;
  transition: color 0.2s;
  flex: 1;
}
.mob-btn.active { color: var(--gold); }
.mob-btn-icon { font-size: 1.2rem; }
.mob-btn-lbl { font-family: var(--font-m); font-size: 0.45rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ──────────────────────────────────────────
   REVEAL ANIMATION ON VIEW ENTER
────────────────────────────────────────── */
.reveal-child {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.view.active .reveal-child { opacity: 1; transform: translateY(0); }
.view.active .reveal-child:nth-child(1) { transition-delay: 0.05s; }
.view.active .reveal-child:nth-child(2) { transition-delay: 0.1s; }
.view.active .reveal-child:nth-child(3) { transition-delay: 0.15s; }
.view.active .reveal-child:nth-child(4) { transition-delay: 0.2s; }
.view.active .reveal-child:nth-child(5) { transition-delay: 0.25s; }
.view.active .reveal-child:nth-child(6) { transition-delay: 0.3s; }

/* ──────────────────────────────────────────
   SCROLLABLE VIEW CONTENT
────────────────────────────────────────── */
.scroll-view {
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  padding: 3rem 3rem 3rem;
  display: flex;
  flex-direction: column;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 900px) {
  #nav { display: none; }
  #mob-nav { display: flex; }
  #main { left: 0; bottom: 64px; }
  .view { padding: 1.5rem 1.2rem; }
  .scroll-view { padding: 1.5rem 1.2rem; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  #statusbar { display: none; }
  .corner { display: none; }
  .view-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .view-header-desc,
  .view-header-desc--narrow {
    text-align: left;
    max-width: none;
  }
  .mob-btn-lbl {
    font-size: 0.38rem;
  }
  .mob-btn {
    padding: 0.35rem 0.15rem;
  }
}
@media (max-width: 600px) {
  .feat-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .logo-img,
  .status-dot,
  .discord-icon-big {
    animation: none !important;
  }
  .view {
    transition-duration: 0.01ms;
  }
  .reveal-child {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .view.active .reveal-child {
    transition-delay: 0s !important;
  }
  .feat-card:hover,
  .price-card:hover,
  .ads-card:hover,
  .dev-card:hover,
  .trust-chip:hover,
  .review-card:hover {
    transform: none;
  }
}
/* ──────────────────────────────────────────
   VIEW: FAQ
────────────────────────────────────────── */
#view-faq { align-items: flex-start; padding-top: 2.5rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.faq-item {
  background: rgba(245,166,35,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] {
  border-color: rgba(245,166,35,0.35);
}

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--font-r);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '▸';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item[open] .faq-q::after { transform: rotate(90deg); }
.faq-item[open] .faq-q { color: var(--gold3); }

.faq-a {
  padding: 0 1.25rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}
.faq-a strong { color: var(--text); }

.faq-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 760px;
  padding: 1.5rem;
  background: rgba(88,101,242,0.06);
  border: 1px solid rgba(88,101,242,0.22);
  border-radius: 14px;
}
.faq-cta > p {
  font-family: var(--font-r);
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  flex: 1;
  min-width: 140px;
}

/* ──────────────────────────────────────────
   ADS: missing image placeholder
────────────────────────────────────────── */
.ads-img-missing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px dashed rgba(245,166,35,0.3);
  background: rgba(245,166,35,0.03);
}
.ads-img-missing::after {
  content: 'Görsel yüklenmedi — reklam/casino-X.jpg ekle';
  font-family: var(--font-m);
  font-size: 0.6rem;
  color: rgba(245,166,35,0.45);
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1.5rem 1rem;
}

/* ──────────────────────────────────────────
   SPLASH SCREEN
────────────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#splash.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
#splash-canvas {
  image-rendering: pixelated;
  width: 96px;
  height: 96px;
  animation: splash-pulse 1.2s ease-in-out infinite;
}
@keyframes splash-pulse {
  0%,100% { filter: drop-shadow(0 0 12px rgba(245,166,35,0.6)); }
  50%      { filter: drop-shadow(0 0 28px rgba(245,166,35,1)); }
}
.splash-wordmark {
  font-family: var(--font-b);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.splash-bar {
  width: 180px;
  height: 2px;
  background: rgba(245,166,35,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.splash-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px var(--gold);
}
.splash-sub {
  font-family: var(--font-m);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ──────────────────────────────────────────
   TOAST NOTIFICATIONS
────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}
.toast {
  background: #0f0f14;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--font-r);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  max-width: 280px;
  pointer-events: all;
  animation: toast-in 0.3s ease forwards;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.toast.toast-success { border-left-color: #22c55e; }
.toast.toast-info    { border-left-color: #7289da; }
.toast.toast-out     { animation: toast-out 0.3s ease forwards; }

@keyframes toast-in  { from { opacity:0; transform: translateX(20px); } to { opacity:1; transform: translateX(0); } }
@keyframes toast-out { from { opacity:1; transform: translateX(0); } to { opacity:0; transform: translateX(20px); } }

@media (max-width: 900px) {
  #toast-container { bottom: 80px; right: 1rem; left: 1rem; }
  .toast { max-width: none; }
}

/* ──────────────────────────────────────────
   PURCHASE MODAL
────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 7000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modal-bg-in 0.25s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes modal-bg-in { from { opacity:0; } to { opacity:1; } }

.modal-box {
  background: #0e0e14;
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 60px rgba(245,166,35,0.12), 0 24px 64px rgba(0,0,0,0.6);
  animation: modal-in 0.3s var(--ease);
}
@keyframes modal-in { from { opacity:0; transform: scale(0.94) translateY(12px); } to { opacity:1; transform: scale(1) translateY(0); } }

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  font-size: 1rem; line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--text); background: rgba(255,255,255,0.06); }

.modal-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.75rem;
}
.modal-title {
  font-family: var(--font-b);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
}
.modal-desc {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.modal-copy-box {
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.modal-code {
  font-family: var(--font-m);
  font-size: 0.8rem;
  color: var(--gold3);
  flex: 1;
  word-break: break-all;
  line-height: 1.5;
}
.modal-copy-btn {
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  color: var(--gold);
  font-family: var(--font-m);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.modal-copy-btn:hover { background: rgba(245,166,35,0.2); border-color: rgba(245,166,35,0.4); }
.modal-copy-btn.copied { color: #22c55e; border-color: #22c55e; background: rgba(34,197,94,0.08); }

.modal-go-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.modal-note {
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

/* ──────────────────────────────────────────
   RECENT SALES BANNER
────────────────────────────────────────── */
.recent-sales-banner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-r);
  font-size: 0.82rem;
  color: #86efac;
  font-weight: 500;
  margin-bottom: 1rem;
}
.rsb-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ──────────────────────────────────────────
   REVIEW CARD UPDATES
────────────────────────────────────────── */
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.review-avatar {
  image-rendering: pixelated;
  border-radius: 6px;
  flex-shrink: 0;
}
.review-author {
  font-family: var(--font-m);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}
