/* ============================================================
   SEKTOR SMP — brand palette from the in-game TAB scoreboard
   gold  #E0B11E   ·  red #FF0000 (gradient partner, used sparingly)
   base  warm near-black · white text · muted gray secondary
   ============================================================ */

:root {
  --gold: #E0B11E;
  --gold-soft: #edc55a;
  --red: #ff3b1f;
  --bg: #0e0d0b;
  --bg-raised: #16140f;
  --bg-card: #1a1712;
  --line: rgba(224, 177, 30, 0.14);
  --line-strong: rgba(224, 177, 30, 0.32);
  --text: #f4f0e6;
  --text-dim: #a89f8d;
  --text-mute: #6f695c;
  --grad: linear-gradient(100deg, #f2c94c 0%, var(--gold) 35%, #f07a1d 72%, var(--red) 100%);
  --radius: 0px; /* editorial: sharp corners, hairline borders */
  --font-display: "Unbounded", sans-serif;
  --font-body: "Hanken Grotesk", sans-serif;
}

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

/* hidden <svg><defs> container (inline styles blocked by CSP) */
.svg-defs { position: absolute; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  /* ambient glows + faint blueprint grid that persist while scrolling */
  background:
    radial-gradient(ellipse 52% 36% at 10% 22%, rgba(224, 177, 30, 0.05), transparent 70%),
    radial-gradient(ellipse 46% 32% at 90% 58%, rgba(255, 59, 31, 0.035), transparent 70%),
    radial-gradient(ellipse 50% 30% at 30% 95%, rgba(224, 177, 30, 0.04), transparent 70%),
    linear-gradient(rgba(224, 177, 30, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 177, 30, 0.02) 1px, transparent 1px),
    var(--bg);
  background-size: 100% 100%, 100% 100%, 100% 100%, 56px 56px, 56px 56px, auto;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* grain overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

::selection { background: var(--gold); color: #14120d; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.02rem; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code { font-family: "Consolas", "Menlo", monospace; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-soft { color: var(--gold-soft); }
.glyph { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.78rem 1.5rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--grad);
  color: #191104;
  box-shadow: 0 4px 24px rgba(224, 177, 30, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224, 177, 30, 0.42);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(224, 177, 30, 0.04);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(224, 177, 30, 0.1); }

.btn-discord {
  background: #5865F2;
  color: #fff;
}
.btn-discord:hover { background: #6a76f5; transform: translateY(-2px); }
.btn-lg { font-size: 1.05rem; padding: 0.95rem 2rem; }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.65rem; }
.nav-logo {
  width: 34px; height: 34px;
  border-radius: 8px;
  image-rendering: pixelated;
  border: 1px solid var(--line-strong);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.nav-wordmark em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold);
  margin-left: 0.3rem;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.nav-links a { transition: color 0.15s ease; }
.nav-links a:hover { color: var(--gold-soft); }
.nav .btn-discord { padding: 0.55rem 1.1rem; font-size: 0.88rem; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% -5%, rgba(224, 177, 30, 0.16), transparent 65%),
    radial-gradient(ellipse 40% 30% at 82% 15%, rgba(255, 59, 31, 0.06), transparent 70%),
    linear-gradient(rgba(224, 177, 30, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 177, 30, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}
.hero-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
}

.hero-inner { position: relative; max-width: 900px; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(22, 20, 15, 0.7);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 2.2rem;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
}
.status-pill[data-state="online"] .status-dot {
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.8);
  animation: pulse 2s ease-in-out infinite;
}
.status-pill[data-state="online"] { color: var(--text); border-color: rgba(74, 222, 128, 0.3); }
.status-pill[data-state="offline"] .status-dot { background: #f87171; }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero-title {
  font-size: clamp(3rem, 11vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
}
.hero-title .grad { display: block; filter: drop-shadow(0 6px 40px rgba(224, 177, 30, 0.25)); }
.hero-title-sub {
  display: block;
  font-size: clamp(1rem, 2.6vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.55em;
  margin-top: 1rem;
  padding-left: 0.55em; /* optical centering vs letter-spacing */
  color: var(--text-dim);
}

.hero-tagline {
  margin: 1.8rem auto 2.4rem;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 4rem;
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(22, 20, 15, 0.55);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.hstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1.1rem 2rem;
  min-width: 150px;
}
.hstat-sep { width: 1px; background: var(--line); }
.hstat-glyph { color: var(--gold); font-size: 1rem; }
.hstat-value { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.hstat-label { font-size: 0.75rem; color: var(--text-mute); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

/* ============ SECTIONS ============ */
.section { padding: 4.5rem 1.5rem; }
.section-alt {
  /* semi-transparent so the fixed grid + glows stay visible while scrolling */
  background: rgba(22, 20, 15, 0.55);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-narrow { max-width: 720px; }

.section-head { margin-bottom: 2.2rem; max-width: 640px; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.section-head p { color: var(--text-dim); margin-top: 0.7rem; }

/* ============ JOIN — one address, every platform ============ */
.join-panel { border: 1px solid var(--line); position: relative; }
.join-panel::after {
  content: "+";
  position: absolute;
  right: -7px; bottom: -11px;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--line-strong);
  pointer-events: none;
}
.join-main { padding: 2.4rem 2.2rem 2.2rem; }
.join-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.1rem;
}
.addr-main-row { max-width: 640px; }
.addr-big {
  font-size: clamp(1.05rem, 2.6vw, 1.5rem);
  padding: 0.85rem 1.2rem;
  color: var(--gold-soft);
}
.addr-main-row .btn-copy { font-size: 0.95rem; padding: 0 1.5rem; }
.join-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.join-cell {
  padding: 1.6rem 2.2rem 1.8rem;
  transition: background 0.35s ease;
}
.join-cell + .join-cell { border-left: 1px solid var(--line); }
.join-cell:hover { background: rgba(224, 177, 30, 0.045); }
.join-cell .port { color: var(--gold-soft); }
.join-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}
.join-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(224, 177, 30, 0.1);
  border: 1px solid var(--line);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.join-desc { color: var(--text-dim); font-size: 0.95rem; }

.addr-row {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
}
.addr {
  flex: 1;
  display: flex;
  align-items: center;
  background: #0b0a08;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  font-size: 0.98rem;
  color: var(--gold-soft);
  letter-spacing: 0.02em;
  overflow-x: auto;
  white-space: nowrap;
}
.btn-copy {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(224, 177, 30, 0.12);
  color: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  padding: 0 1.1rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-copy:hover { background: rgba(224, 177, 30, 0.22); }
.btn-copy.copied { background: var(--gold); color: #191104; border-color: var(--gold); }

/* ============ FEATURES — flush editorial grid, hairline dividers ============ */
.feat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feat {
  position: relative;
  padding: 1.8rem 1.8rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s ease;
}
.feat:hover { background: rgba(224, 177, 30, 0.045); }
/* crosshair tick at each cell corner — quiet blueprint detail */
.feat::after {
  content: "+";
  position: absolute;
  right: -7px; bottom: -11px;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--line-strong);
  pointer-events: none;
}
.feat-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.feat-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  transition: color 0.3s ease;
}
.feat-glyph {
  color: var(--text-mute);
  font-size: 1.05rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.feat:hover .feat-num { color: var(--gold); }
.feat:hover .feat-glyph {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(224, 177, 30, 0.55);
}
.feat h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.feat p { color: var(--text-dim); font-size: 0.93rem; max-width: 30ch; }

/* ============ STORE ============ */
.store-banner {
  position: relative;
  border-radius: 0;
  padding: 3.5rem 3rem;
  background:
    radial-gradient(ellipse 70% 90% at 85% 10%, rgba(255, 59, 31, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(224, 177, 30, 0.12), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--line-strong);
  overflow: hidden;
}
.store-banner::after {
  content: "$";
  position: absolute;
  right: 4%;
  bottom: -18%;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16rem;
  line-height: 1;
  color: rgba(224, 177, 30, 0.05);
  pointer-events: none;
}
.store-content { max-width: 520px; }
.store-content p { color: var(--text-dim); margin: 0.8rem 0 1.6rem; }
.store-soon { font-size: 0.85rem !important; color: var(--text-mute) !important; margin-top: 0.9rem !important; }

/* ============ RULES — hairline ledger ============ */
.rules-list {
  counter-reset: rule;
  list-style: none;
  border-top: 1px solid var(--line);
}
.rules-list li {
  counter-increment: rule;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 0.5rem;
  color: var(--text-dim);
  font-size: 0.97rem;
  transition: background 0.3s ease;
}
.rules-list li:hover { background: rgba(224, 177, 30, 0.035); }
.rules-list li strong { color: var(--text); }
.rules-list li::before {
  content: counter(rule, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============ COMMUNITY ============ */
.community-banner {
  text-align: center;
  padding: 4rem 2rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(88, 101, 242, 0.12), transparent 65%),
    var(--bg-card);
}
.community-glyph {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.community-banner p { color: var(--text-dim); margin: 0.9rem 0 1.8rem; }

/* ============ FOOTER ============ */
.footer { border-top: 1px solid var(--line); padding: 2.2rem 1.5rem; }
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 0.65rem; }
.footer-note { color: var(--text-mute); font-size: 0.85rem; margin-left: auto; }
.footer-links { display: flex; gap: 1.4rem; font-size: 0.88rem; font-weight: 600; color: var(--text-dim); }
.footer-links a:hover { color: var(--gold-soft); }

/* ============ SCROLL ANIMATIONS ============ */
/* Reveal: plays in on scroll down, reverses when scrolled back out */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s; /* leave instantly */
}
.reveal.visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--d, 0s); /* stagger only on the way in */
}

/* Scrub: elements whose --p (0→1 viewport progress) is driven by JS each frame,
   so the motion is tied to the scrollbar and runs backwards when you scroll up */
.hero-inner {
  transform: translateY(calc(var(--sy, 0) * 90px)) scale(calc(1 - var(--sy, 0) * 0.06));
  opacity: calc(1 - var(--sy, 0) * 1.15);
}
.hero-bg { opacity: calc(1 - var(--sy, 0) * 0.9); }
.section-head h2 {
  transform: translateX(calc((1 - var(--p, 1)) * -32px));
  opacity: calc(0.2 + var(--p, 1) * 0.8);
}
.feat-glyph { display: inline-block; translate: 0 calc((1 - var(--p, 1)) * 14px); }
.store-banner::after {
  transform: rotate(calc((var(--p, 0.5) - 0.5) * 14deg))
             translateY(calc((1 - var(--p, 0.5)) * 40px));
}
.community-glyph { transform: translateY(calc((1 - var(--p, 1)) * 22px)); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .status-pill[data-state="online"] .status-dot { animation: none; }
  .hero-inner, .hero-bg, .section-head h2, .store-banner::after, .community-glyph {
    transform: none; opacity: 1; translate: none;
  }
  .feat-glyph { translate: none; }
}

/* ============ VOTE ============ */
.vote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.vote-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.7rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.vote-card:hover { background: rgba(224, 177, 30, 0.05); }
.vote-card::after {
  content: "+";
  position: absolute;
  right: -7px; bottom: -11px;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--line-strong);
  pointer-events: none;
}
.vote-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  font-size: 1.1rem;
}
.vote-card h3 { margin-bottom: 0.15rem; }
.vote-card p { color: var(--text-dim); font-size: 0.9rem; }
.vote-arrow {
  margin-left: auto;
  color: var(--text-mute);
  transition: color 0.2s ease, transform 0.2s ease;
}
.vote-card:hover .vote-arrow { color: var(--gold); transform: translateX(4px); }

/* ============ MAĞAZA SAYFASI ============ */
.store-hero { padding: 9rem 1.5rem 3rem; }
.store-hero .section-head { margin-bottom: 0; }
.store-note { color: var(--text-mute) !important; font-size: 0.88rem !important; margin-top: 0.9rem; }
.nav-links a.active { color: var(--gold); }

/* mağaza duyuru şeridi */
.store-announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.4rem;
  margin-bottom: 2.2rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-soft);
  background: rgba(224, 177, 30, 0.08);
  border: 1px solid var(--line-strong);
}
.store-announce .announce-glyph { color: var(--gold); font-size: 1.05rem; }

.cat { padding: 3rem 1.5rem; }
.cat:last-of-type { padding-bottom: 5rem; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.6rem;
  transition: background 0.3s ease;
}
.product-card:hover { background: rgba(224, 177, 30, 0.04); }
.product-card::after {
  content: "+";
  position: absolute;
  right: -7px; bottom: -11px;
  z-index: 1;
  font-size: 0.9rem;
  color: var(--line-strong);
  pointer-events: none;
}
.product-art {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin-bottom: 1.4rem;
}
.product-art img {
  max-height: 100%;
  max-width: 150px;
  image-rendering: pixelated;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
  transition: transform 0.25s ease;
}
.product-card:hover .product-art img { transform: translateY(-4px) scale(1.04); }
.product-card h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.product-desc { color: var(--text-dim); font-size: 0.88rem; flex: 1; margin-bottom: 1.2rem; }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.product-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-soft);
}
.btn-buy {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.2rem;
  border-radius: 3px;
  border: 1px solid var(--line-strong);
  background: rgba(224, 177, 30, 0.1);
  color: var(--gold-soft);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-buy:hover { background: var(--grad); color: #191104; transform: translateY(-2px); }
.btn-buy.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none; /* tıklanamaz, hover efekti yok */
}

.product-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px; height: 130px;
  border: 1px solid var(--line-strong);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 0.6rem;
  background: rgba(224, 177, 30, 0.05);
}

/* rütbe logoları (inline SVG) */
.rank-logo { width: 130px; height: 130px; overflow: visible; }
.rank-logo .rl-shield {
  fill: rgba(0, 0, 0, 0.25);
  stroke: var(--rank);
  stroke-width: 2.5;
}
.rank-logo .rl-inner { fill: none; stroke: var(--rank); stroke-width: 1; opacity: 0.45; }
.rank-logo .rl-text {
  font-family: var(--font-display);
  font-weight: 900;
  fill: var(--rank);
  letter-spacing: 0.04em;
}
.rank-logo .rl-wing { fill: var(--rank); opacity: 0.85; }
.rank-logo .rl-crown { fill: var(--rank); }
.rank--vip  { --rank: #f5c518; }
.rank--mvp  { --rank: #4da6ff; }
.rank--svip { --rank: #ff5a1f; }
.rank--vip  .product-art { filter: drop-shadow(0 0 16px rgba(245, 197, 24, 0.25)); }
.rank--mvp  .product-art { filter: drop-shadow(0 0 16px rgba(77, 166, 255, 0.25)); }
.rank--svip .product-art { filter: drop-shadow(0 0 20px rgba(255, 90, 31, 0.35)); }
/* SVIP: alev degradesi + hafif parıltı animasyonu — bir tık daha havalı */
.rank--svip .rl-shield { stroke: url(#svipGrad); }
.rank--svip .rl-text { fill: url(#svipGrad); }
.rank--svip .rl-crown { fill: url(#svipGrad); animation: svip-glow 2.6s ease-in-out infinite; }
@keyframes svip-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .feat-list { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .join-split, .feat-list, .vote-grid { grid-template-columns: 1fr; }
  .join-cell + .join-cell { border-left: none; border-top: 1px solid var(--line); }
  .join-main, .join-cell { padding-left: 1.4rem; padding-right: 1.4rem; }
  .hero { min-height: auto; padding-top: 8rem; }
  .hero-stats { flex-direction: column; width: 100%; }
  .hstat-sep { width: auto; height: 1px; }
  .hstat { padding: 0.9rem 1.5rem; }
  .store-banner { padding: 2.5rem 1.6rem; }
  .footer-note { margin-left: 0; }
  .store-hero { padding-top: 7rem; }
}
