/* ================================================================
   HANÇER GAMING — OYUN LİSTESİ — MAIN STYLES
   Dark Gaming Theme | Red + Gold Accents | TR / EN Support
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── CSS CUSTOM PROPERTIES ───────────────────────────────────────── */
:root {
  /* Dark Theme Defaults */
  --bg-root:        #07070f;
  --bg-primary:     #0d0d1a;
  --bg-secondary:   #12122a;
  --bg-card:        #161628;
  --bg-card-hover:  #1c1c36;
  --bg-input:       #0f0f22;
  --bg-overlay:     rgba(7, 7, 15, 0.92);

  /* Accent */
  --red:            #e63946;
  --red-dark:       #b52535;
  --red-light:      #ff6b78;
  --gold:           #ffd60a;
  --gold-dark:      #c8a800;

  /* Text */
  --text-100:       #f0f0ff;
  --text-200:       #b0b0d0;
  --text-300:       #606090;

  /* Borders */
  --border:         rgba(255,255,255,0.06);
  --border-md:      rgba(255,255,255,0.10);
  --border-red:     rgba(230,57,70,0.28);

  /* Shadows / Glow */
  --shadow-sm:      0 2px 10px rgba(0,0,0,0.45);
  --shadow-md:      0 6px 28px rgba(0,0,0,0.55);
  --shadow-lg:      0 12px 48px rgba(0,0,0,0.65);
  --glow-red:       0 0 28px rgba(230,57,70,0.38);
  --glow-gold:      0 0 28px rgba(255,214,10,0.35);

  /* Status palette */
  --s-playing:      #22c55e;
  --s-maybe:        #f59e0b;
  --s-no:           #ef4444;
  --s-soon:         #3b82f6;
  --s-full:         #8b5cf6;
  --s-done:         #06b6d4;
  --s-boring:       #6b7280;
  --s-custom:       #ec4899;

  /* Layout */
  --nav-h:          68px;
  --max-w:          1380px;
  --r-sm:           8px;
  --r-md:           14px;
  --r-lg:           22px;
  --r-xl:           32px;

  /* Transition */
  --tr:             0.28s cubic-bezier(0.4,0,0.2,1);
}

/* Light theme overrides */
[data-theme="light"] {
  --bg-root:        #f0f0ff;
  --bg-primary:     #f6f6ff;
  --bg-secondary:   #eaeaff;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f4f4ff;
  --bg-input:       #ffffff;
  --bg-overlay:     rgba(240,240,255,0.94);
  --text-100:       #12122e;
  --text-200:       #4a4a70;
  --text-300:       #9090b0;
  --border:         rgba(0,0,0,0.07);
  --border-md:      rgba(0,0,0,0.12);
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-root);
  color: var(--text-100);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background var(--tr), color var(--tr);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ── NAVBAR ──────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(7,7,15,0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
  transition: background var(--tr);
}
[data-theme="light"] #navbar {
  background: rgba(240,240,255,0.86);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity var(--tr);
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(230,57,70,0.5));
}
.nav-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-100);
}
.nav-logo-text em {
  color: var(--red);
  font-style: normal;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 1.5rem;
}
.nav-link {
  color: var(--text-200);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: all var(--tr);
}
.nav-link:hover {
  color: var(--text-100);
  background: var(--border);
}
.nav-spacer { flex: 1; }
.nav-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-200);
  font-size: 1rem;
  background: transparent;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-icon:hover {
  border-color: var(--border-md);
  color: var(--text-100);
  background: var(--border);
}
.lang-toggle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  min-width: 48px;
}

/* ── HERO ────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%,  rgba(230,57,70,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 55% 40% at 85% 60%,   rgba(255,214,10,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 70%,   rgba(139,92,246,0.07) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-root) 100%);
}
/* Scanlines texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0,0,0,0.06) 2px, rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.09);
  border: 1px solid rgba(230,57,70,0.22);
  color: var(--red-light);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeInDown 0.7s ease;
}
.hero-badge .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: livePulse 2s ease infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.7); }
  50%      { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin-bottom: 1.8rem;
  filter: drop-shadow(0 0 36px rgba(230,57,70,0.5))
          drop-shadow(0 0 16px rgba(255,214,10,0.2));
  animation: logoBounce 0.9s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes logoBounce {
  0%   { transform: scale(0.5) rotate(-8deg); opacity: 0; }
  100% { transform: scale(1)   rotate(0deg);  opacity: 1; }
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 0.9rem;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-200);
  max-width: 580px;
  margin-bottom: 2.8rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 4rem;
  animation: fadeInUp 0.8s ease 0.45s both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red);
  text-shadow: var(--glow-red);
}
.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── FILTER BAR ──────────────────────────────────────────────────── */
#filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 800;
  background: var(--bg-overlay);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.filter-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.filter-suggest-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 1px solid rgba(230,57,70,0.5);
  color: #fff5f5;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(181,37,53,0.18);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  white-space: nowrap;
}
.filter-suggest-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(181,37,53,0.24);
  border-color: rgba(255,107,120,0.65);
}
.filter-suggest-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230,57,70,0.18), 0 14px 28px rgba(181,37,53,0.24);
}
.filter-suggest-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 0.9rem;
  line-height: 1;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 380px;
}
.search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-300);
  font-size: 0.9rem;
  pointer-events: none;
}
#search-input {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  color: var(--text-100);
  font-size: 0.875rem;
  padding: 9px 12px 9px 34px;
  outline: none;
  transition: all var(--tr);
}
#search-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.12);
}
#search-input::placeholder { color: var(--text-300); }

#status-filter, #sort-select {
  background: var(--bg-input);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  color: var(--text-100);
  font-size: 0.875rem;
  padding: 9px 36px 9px 12px;
  outline: none;
  cursor: pointer;
  transition: all var(--tr);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23606090' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
}
#status-filter:focus, #sort-select:focus {
  border-color: var(--red);
}
#filter-count {
  font-size: 0.82rem;
  color: var(--text-300);
  white-space: nowrap;
}

/* ── MAIN CONTENT ─────────────────────────────────────────────────── */
#main-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

/* ── GAME LIST — 2-column compact rows ──────────────────────────── */
#games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 5rem;
}

/* Skeleton loading rows */
.skeleton-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  animation: skeletonPulse 1.6s ease infinite;
}
.sk-img {
  width: 72px;
  height: 34px;
  border-radius: 4px;
  background: var(--bg-secondary);
  flex-shrink: 0;
}
.sk-body { flex: 1; }
.sk-line {
  height: 10px;
  background: var(--bg-secondary);
  border-radius: 6px;
  margin-bottom: 8px;
}
.sk-line.s50 { width: 50%; }
.sk-line.s30 { width: 30%; }
@keyframes skeletonPulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

/* ── GAME ROW ─────────────────────────────────────────────────────── */
.game-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 14px;
  transition: all var(--tr);
  animation: rowIn 0.4s ease both;
  min-width: 0;
  cursor: default;
  position: relative;
}
.game-row:hover {
  border-color: var(--border-red);
  background: var(--bg-card-hover);
  transform: translateX(3px);
  box-shadow: var(--shadow-sm);
}
@keyframes rowIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Thumbnail */
.game-row-thumb {
  width: 58px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-secondary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.game-row:hover .game-row-thumb { transform: scale(1.04); }
.game-row-thumb-placeholder {
  width: 58px;
  height: 84px;
  border-radius: 8px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--text-300);
  position: relative;
  z-index: 1;
}
/* Gradient palette for no-image games (c0–c7) */
.game-row-thumb-placeholder.c0 { background: linear-gradient(135deg,#e63946,#9e1b28); }
.game-row-thumb-placeholder.c1 { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.game-row-thumb-placeholder.c2 { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.game-row-thumb-placeholder.c3 { background: linear-gradient(135deg,#22c55e,#15803d); }
.game-row-thumb-placeholder.c4 { background: linear-gradient(135deg,#f59e0b,#b45309); }
.game-row-thumb-placeholder.c5 { background: linear-gradient(135deg,#06b6d4,#0e7490); }
.game-row-thumb-placeholder.c6 { background: linear-gradient(135deg,#ec4899,#be185d); }
.game-row-thumb-placeholder.c7 { background: linear-gradient(135deg,#f97316,#c2410c); }
.game-row-thumb-placeholder .grt-init {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  line-height: 1;
  user-select: none;
}

/* Name + notes stacked */
.game-row-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.game-row-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-100);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.game-row-notes {
  font-size: 0.92rem;
  color: var(--text-200);
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4;
}
.game-row-notes.muted {
  color: var(--text-300);
  font-style: italic;
}

/* Vote Button */
.game-vote-btn {
  position: absolute;
  bottom: 6px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-300);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  flex-shrink: 0;
}
.game-vote-btn:hover {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: var(--s-playing);
  transform: scale(1.05);
}
.game-vote-btn.voted {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.4);
  color: var(--s-playing);
}
.game-vote-btn.voted .vote-icon {
  animation: heartBeat 0.5s ease;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1.1); }
}
.vote-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.vote-count {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  min-width: 16px;
  text-align: center;
}

/* Status Badge */
.badge {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid;
}
.badge-playing      { background: rgba(34,197,94,0.1);   color: var(--s-playing);  border-color: rgba(34,197,94,0.22); }
.badge-maybe        { background: rgba(245,158,11,0.1);  color: var(--s-maybe);    border-color: rgba(245,158,11,0.22); }
.badge-no           { background: rgba(239,68,68,0.1);   color: var(--s-no);       border-color: rgba(239,68,68,0.22); }
.badge-soon         { background: rgba(59,130,246,0.1);  color: var(--s-soon);     border-color: rgba(59,130,246,0.22); }
.badge-fullrelease  { background: rgba(139,92,246,0.1);  color: var(--s-full);     border-color: rgba(139,92,246,0.22); }
.badge-done         { background: rgba(6,182,212,0.1);   color: var(--s-done);     border-color: rgba(6,182,212,0.22); }
.badge-notinterested{ background: rgba(107,114,128,0.1); color: var(--s-boring);   border-color: rgba(107,114,128,0.22); }
.badge-custom       { background: rgba(236,72,153,0.1);  color: var(--s-custom);   border-color: rgba(236,72,153,0.22); }

/* ── EMPTY STATE ─────────────────────────────────────────────────── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-300);
}
.empty-state-icon { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.6; }
.empty-state-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-200); }

/* ── SUGGEST SECTION ─────────────────────────────────────────────── */
#suggest-section {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-red);
  border-radius: var(--r-xl);
  padding: 3.5rem 3rem;
  margin-bottom: 3rem;
  overflow: hidden;
}
#suggest-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
  background-size: 200%;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0%; }
  100% { background-position: 200%; }
}
#suggest-section::after {
  content: '🎮';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
}
.suggest-header { text-align: center; margin-bottom: 2rem; }
.suggest-header h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.suggest-header p { color: var(--text-200); font-size: 0.95rem; }

.suggest-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.steam-search-wrap { position: relative; }
.steam-search-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 2px solid var(--border-md);
  border-radius: var(--r-md);
  color: var(--text-100);
  font-size: 1rem;
  padding: 13px 16px;
  outline: none;
  transition: all var(--tr);
}
.steam-search-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(230,57,70,0.1);
}
.steam-search-input::placeholder { color: var(--text-300); }

.steam-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  max-height: 280px;
  overflow-y: auto;
  z-index: 300;
}
.steam-dropdown.open { display: block; }
.steam-dd-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background var(--tr);
  border-bottom: 1px solid var(--border);
}
.steam-dd-item:last-child { border-bottom: none; }
.steam-dd-item:hover { background: var(--bg-card-hover); }
.steam-dd-item img {
  width: 58px;
  height: 27px;
  object-fit: cover;
  border-radius: 4px;
  background: var(--bg-secondary);
  flex-shrink: 0;
}
.steam-dd-name { font-size: 0.88rem; color: var(--text-100); }
.dd-loading, .dd-empty {
  padding: 14px;
  text-align: center;
  color: var(--text-300);
  font-size: 0.85rem;
}

.selected-game-card {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: 10px 14px;
}
.selected-game-card.show { display: flex; }
.selected-game-card img {
  width: 56px;
  height: 84px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.selected-game-card-name { font-weight: 600; font-size: 0.9rem; flex: 1; padding-top: 3px; }
.selected-game-card-remove {
  color: var(--text-300);
  font-size: 1.1rem;
  cursor: pointer;
  transition: color var(--tr);
  background: none;
  border: none;
}
.selected-game-card-remove:hover { color: var(--red); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grp { display: flex; flex-direction: column; gap: 5px; }
.form-grp label { font-size: 0.82rem; font-weight: 500; color: var(--text-200); }
.form-input, .form-textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  color: var(--text-100);
  font-size: 0.88rem;
  padding: 10px 13px;
  outline: none;
  transition: all var(--tr);
  resize: vertical;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.09);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-300); }
.form-textarea { min-height: 78px; }

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all var(--tr);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-red);
}
.btn-primary:active { transform: translateY(0); }

.suggest-feedback {
  display: none;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.suggest-feedback.success {
  display: block;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.24);
  color: #22c55e;
}
.suggest-feedback.error {
  display: block;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.24);
  color: #ef4444;
}

/* ── RATE LIMIT NOTICE ──────────────────────────────────────────── */
.suggest-ratelimit-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #f59e0b;
  font-weight: 500;
  margin-bottom: 1rem;
  animation: fadeSlideIn 0.3s ease;
}
.suggest-ratelimit-notice .rl-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.suggest-ratelimit-notice strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

#suggest-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

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

/* ── HUMAN CHECK CHECKBOX ───────────────────────────────────────── */
.human-check-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 1rem;
  user-select: none;
  width: fit-content;
}
.human-check-wrap:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}
.human-check-wrap input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.human-check-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.human-check-box svg {
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #fff;
}
.human-check-wrap input:checked ~ .human-check-box {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(230, 57, 70, 0.4);
}
.human-check-wrap input:checked ~ .human-check-box svg {
  opacity: 1;
  transform: scale(1);
}
.human-check-wrap input:checked ~ .human-check-text {
  color: var(--text-100);
}
.human-check-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-200);
  transition: color 0.2s;
}

/* Light theme */
[data-theme="light"] .human-check-wrap {
  border-color: rgba(0,0,0,0.1);
  background: rgba(0,0,0,0.02);
}
[data-theme="light"] .human-check-wrap:hover {
  border-color: rgba(0,0,0,0.18);
}
[data-theme="light"] .human-check-box {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.03);
}
[data-theme="light"] .human-check-box svg { color: #fff; }

/* ── TOAST ───────────────────────────────────────────────────────── */
#toast-zone {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  padding: 12px 18px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
  animation: toastSlide 0.4s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 320px;
  pointer-events: auto;
}
.toast.success { border-color: rgba(34,197,94,0.3);  color: #22c55e; }
.toast.error   { border-color: rgba(239,68,68,0.3);   color: #ef4444; }
@keyframes toastSlide {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

.scroll-top-btn {
  position: fixed;
  right: 2rem;
  bottom: 6.4rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border: 1px solid rgba(230,57,70,0.5);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(181,37,53,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr), box-shadow var(--tr);
  z-index: 8900;
}
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top-btn:hover {
  box-shadow: 0 18px 34px rgba(181,37,53,0.24);
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
#footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  color: var(--text-300);
  font-size: 0.82rem;
}
#footer a { 
  color: var(--red); 
  transition: all 0.2s ease;
  text-decoration: none;
}
#footer a:hover { 
  color: var(--red-light);
  text-decoration: underline;
}

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HERO PREMIUM SUPPORT INTEGRATION ───────────────────────────── */
.hero-support-wrapper {
  width: 100%;
  max-width: 1140px;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.support-header {
  text-align: center;
  margin-bottom: 3rem;
}

.support-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,57,70,0.1);
  border: 1px solid rgba(230,57,70,0.2);
  color: var(--red-light);
  padding: 5px 15px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.support-heart-pulse {
  display: inline-block;
  animation: heartBeat 1.5s ease infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.support-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-100);
}

.support-subtitle {
  color: var(--text-200);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Cards Grid */
.support-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Premium Card Base */
.support-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--tr);
  text-align: left;
  overflow: hidden;
}

.support-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.support-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.support-card:hover .support-card-glow { opacity: 1; }

.support-card-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: transform 0.4s ease;
}

.support-card:hover .support-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.support-card-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.support-card-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-100);
}

.support-card-desc {
  font-size: 0.82rem;
  color: var(--text-200);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.support-card-perks {
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-300);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.support-card-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.perk-icon { font-size: 0.9rem; }

/* Epic Code Showcase */
.epic-code-showcase {
  margin-bottom: 1.5rem;
  flex: 1;
}

.epic-code-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-300);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.epic-code-display {
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(49,186,170,0.4);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.epic-code-text {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #31baaa;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.epic-copy-btn {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-300);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all var(--tr);
}

.epic-copy-btn:hover {
  background: rgba(49,186,170,0.1);
  color: #31baaa;
  border-color: #31baaa;
}

.epic-copy-btn.copied {
  background: #22c55e !important;
  color: #fff !important;
  border-color: #22c55e !important;
}

/* Coffee Chips Fix */
.coffee-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
  flex: none; /* Taşmayı önlemek için */
}

.coffee-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 214, 10, 0.1);
  padding: 6px 12px;
  border-radius: 50px; /* Hap şekli için */
  color: var(--text-200);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.coffee-chip--gold {
  background: rgba(255, 214, 10, 0.1);
  border-color: rgba(255, 214, 10, 0.3);
  color: var(--gold);
}

.coffee-chip:hover {
  background: rgba(255, 214, 10, 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* --- MEMBERS PAGE STYLES --- */
.members-hero {
  min-height: auto;
}

.members-hero-content {
  gap: 0;
}

.members-hero-sub {
  max-width: 680px;
}

.members-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.members-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border-md);
  color: var(--text-100);
  background: rgba(255,255,255,0.04);
  font-weight: 600;
  transition: all var(--tr);
}

.members-secondary-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
}

.member-tier-overview {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 auto 2.25rem;
}

.member-tier-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.member-tier-card.tier-base {
  box-shadow: inset 0 0 0 1px rgba(230,57,70,0.08);
}

.member-tier-card.tier-plus {
  box-shadow: inset 0 0 0 1px rgba(255,214,10,0.08);
}

.member-tier-card.tier-ultra {
  box-shadow: inset 0 0 0 1px rgba(59,130,246,0.08);
}

.member-tier-title-row {
  position: relative;
  display: inline-block;
}

.member-tier-icon {
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 6px;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
}

.member-tier-copy {
  width: 100%;
}

.member-tier-copy strong {
  display: inline;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
}

.member-tier-count {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red-light);
  margin-top: 4px;
  margin-bottom: 6px;
}

.member-tier-copy p {
  color: var(--text-200);
  font-size: 0.76rem;
  line-height: 1.35;
  margin: 0;
}

.member-tier-cta {
  width: 100%;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.member-tier-cta-text {
  font-size: 0.8rem;
  color: var(--text-200);
  margin-bottom: 8px;
  text-align: center;
}

.member-tier-join-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid rgba(255,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.member-tier-join-btn:hover {
  background: linear-gradient(135deg, #ff2020, #dd0000);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,0,0,0.3);
}

.member-tier-join-btn svg {
  flex-shrink: 0;
}

.members-support-wrapper {
  padding-top: 1.8rem;
  margin-top: 0;
}

.members-page {
  padding-top: 2.4rem;
}

.members-collection {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.members-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.2rem;
  align-items: end;
}

.members-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: var(--red-light);
  margin-bottom: 0.9rem;
}

.members-section-copy h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  line-height: 1.05;
  margin-bottom: 0.6rem;
}

.members-section-copy p {
  max-width: 700px;
  color: var(--text-200);
}

.members-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.members-stat-card {
  padding: 0.85rem 1rem;
  border-radius: 15px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.members-stat-card strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: 8px;
}

.members-stat-card span {
  font-size: 0.8rem;
  color: var(--text-200);
}

.members-grid-container {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.membership-group {
  padding: 1.3rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    var(--bg-card);
}

.membership-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.group-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
}

.group-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(230,57,70,0.09);
  border: 1px solid rgba(230,57,70,0.2);
  color: var(--red-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.group-description {
  color: var(--text-200);
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

.series-card-premium {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  transition: all var(--tr);
  padding: 12px;
  gap: 16px;
}

.series-card-premium:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.sc-image-wrap {
  width: 85px;
  height: 120px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.28));
}

.sc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.series-card-premium:hover .sc-image {
  transform: scale(1.08);
}

.series-poster-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.series-poster-placeholder.c0 { background: linear-gradient(135deg,#e63946,#9e1b28); }
.series-poster-placeholder.c1 { background: linear-gradient(135deg,#3b82f6,#1d4ed8); }
.series-poster-placeholder.c2 { background: linear-gradient(135deg,#8b5cf6,#6d28d9); }
.series-poster-placeholder.c3 { background: linear-gradient(135deg,#22c55e,#15803d); }
.series-poster-placeholder.c4 { background: linear-gradient(135deg,#f59e0b,#b45309); }
.series-poster-placeholder.c5 { background: linear-gradient(135deg,#06b6d4,#0e7490); }
.series-poster-placeholder.c6 { background: linear-gradient(135deg,#ec4899,#be185d); }
.series-poster-placeholder.c7 { background: linear-gradient(135deg,#f97316,#c2410c); }

.series-poster-initials {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.94);
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.sc-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 32px;
}

.status-completed { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.25); }
.status-ongoing { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.25); }
.status-break { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.status-default { background: rgba(107, 114, 128, 0.15); color: #9ca3af; border: 1px solid rgba(107, 114, 128, 0.25); }

.sc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.sc-header {
  margin-bottom: 6px;
}

.sc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text-100);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-300);
  font-size: 0.8rem;
}

.sc-episodes {
  font-weight: 600;
  color: var(--text-200);
}

.series-card-actions {
  margin-top: 0.85rem;
}

.series-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.85rem;
}

.series-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(230,57,70,0.95), rgba(181,37,53,0.95));
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(230,57,70,0.45);
  transition: transform var(--tr), box-shadow var(--tr), opacity var(--tr);
}

.series-link-btn svg {
  flex-shrink: 0;
}

.series-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(181,37,53,0.24);
}

.series-link-btn.is-disabled {
  background: rgba(255,255,255,0.05);
  color: var(--text-300);
  border-color: rgba(255,255,255,0.08);
  cursor: default;
  box-shadow: none;
}

.series-empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  border-radius: 18px;
  border: 1px dashed rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  color: var(--text-300);
}

/* Navbar Active State for Members */
.nav-link.active {
  box-shadow: 0 0 15px rgba(255,255,255,0.08);
  border-bottom: 2px solid rgba(255,255,255,0.95);
}

.support-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--tr);
  width: 100%;
}

.support-btn:hover { transform: scale(1.02); }

.support-btn--yt { background: #ff0000; color: #fff; box-shadow: 0 10px 20px rgba(255,0,0,0.15); }
.support-btn--epic { background: #31baaa; color: #fff; box-shadow: 0 10px 20px rgba(49,186,170,0.15); }
.support-btn--coffee { background: var(--gold); color: #000; box-shadow: 0 10px 20px rgba(255,214,10,0.15); }

/* Theme Styles */
.support-card--yt .support-card-badge { background: rgba(255,0,0,0.1); color: #ff6b6b; }
.support-card--yt .support-card-icon { color: #ff0000; }
.support-card--yt .support-card-glow { background: radial-gradient(circle at top right, rgba(255,0,0,0.1), transparent); }

.support-card--epic .support-card-badge { background: rgba(49,186,170,0.1); color: #31baaa; }
.support-card--epic .support-card-icon { color: #31baaa; }
.support-card--epic .support-card-glow { background: radial-gradient(circle at top right, rgba(49,186,170,0.1), transparent); }

.support-card--coffee .support-card-badge { background: rgba(255,214,10,0.1); color: var(--gold); }
.support-card--coffee .support-card-icon { color: var(--gold); }
.support-card--coffee .support-card-glow { background: radial-gradient(circle at top right, rgba(255,214,10,0.1), transparent); }

.support-thanks {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-300);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .support-cards { grid-template-columns: repeat(2, 1fr); }
  .support-card--coffee { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; width: 100%; }
  .member-tier-overview { grid-template-columns: 1fr; }
  .members-section-head { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero-stats { gap: 2.5rem; }
  #suggest-section { padding: 2.5rem 1.8rem; }
  #support-section { padding: 3.5rem 1.5rem; }
  .members-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  /* Collapse to single column list on tablets */
  #games-grid { grid-template-columns: 1fr; }
  .support-cards { grid-template-columns: 1fr; }
  .support-card--coffee { grid-column: auto; max-width: 100%; }
  .membership-group { padding: 1.35rem; }
  .series-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  #main-content { padding: 2rem 1rem 3rem; }
  .filter-inner { flex-direction: column; align-items: stretch; }
  .search-wrap { max-width: 100%; }
  .filter-actions {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }
  #suggest-section { padding: 2rem 1.2rem; }
  #suggest-section::after { display: none; }
  .game-row-thumb, .game-row-thumb-placeholder { width: 46px; height: 68px; }
  .selected-game-card img { width: 46px; height: 68px; }
  .scroll-top-btn {
    right: 1rem;
    bottom: 5.8rem;
    width: 40px;
    height: 40px;
  }
  #support-section { padding: 3rem 1rem; }
  .support-card { padding: 1.8rem 1.4rem; }
  .epic-code-text { font-size: 1.3rem; letter-spacing: 2px; }
  .members-hero-actions { flex-direction: column; width: 100%; }
  .members-hero-actions .btn-primary,
  .members-secondary-btn { width: 100%; }
  .member-tier-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .members-stats { grid-template-columns: 1fr; }
  .membership-group-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .series-grid { grid-template-columns: 1fr; }
}
@media (max-width: 440px) {
  .hero-title { font-size: 2.3rem; }
  .nav-inner { padding: 0 1rem; }
  .support-title { font-size: 1.7rem; }
}

/* ── LIGHT MODE VISIBILITY FIXES ─────────────────────────────────── */
[data-theme="light"] .support-card,
[data-theme="light"] .series-card-premium,
[data-theme="light"] .membership-group,
[data-theme="light"] .eq-card {
  background: rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .support-card:hover,
[data-theme="light"] .series-card-premium:hover,
[data-theme="light"] .eq-card:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .support-card-glow,
[data-theme="light"] .eq-card::before {
  background: radial-gradient(circle at 50% 0%, rgba(0,0,0,0.04), transparent 70%) !important;
}

[data-theme="light"] .hero-badge,
[data-theme="light"] .eq-dandik,
[data-theme="light"] .epic-code-display,
[data-theme="light"] .coffee-chip {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.05);
  color: var(--text-200);
}

[data-theme="light"] .coffee-chip--gold {
  background: rgba(255, 214, 10, 0.15);
  color: #b45309;
}

[data-theme="light"] .epic-copy-btn {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--text-100);
}

[data-theme="light"] .epic-copy-btn:hover {
  background: #f0f0f0;
}

[data-theme="light"] .support-card-badge {
  background: rgba(0,0,0,0.08);
  color: var(--text-100);
}

[data-theme="light"] .eq-category-title,
[data-theme="light"] .membership-group .group-title {
  color: var(--text-100) !important;
}

[data-theme="light"] .group-count {
  color: var(--red) !important;
  background: rgba(230,57,70,0.15) !important;
}

[data-theme="light"] .sc-status-badge {
  color: var(--text-100);
}
/* ── MODAL SYSTEM ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--bg-card);
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}
.modal-overlay.show .modal-content {
  transform: translateY(0);
}
.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  color: var(--text-200);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--red); }
.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}
.modal-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.modal-field { margin-bottom: 20px; }
.modal-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-200);
  margin-bottom: 8px;
}
.modal-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  color: var(--text-100);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.modal-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
}
.btn-primary-sm {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}
.btn-primary-sm:hover { transform: translateY(-2px); opacity: 0.95; }
.btn-secondary-sm {
  background: var(--bg-secondary);
  color: var(--text-200);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

[data-theme="light"] .modal-content {
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
[data-theme="light"] .modal-footer { background: #f9f9ff; }
[data-theme="light"] .modal-input { background: #fff; border-color: rgba(0,0,0,0.1); }

/* ── INLINE STYLES MOVED TO CSS ─────────────────────────────────── */

/* Admin panel link in navbar */
.nav-controls .btn-icon.admin-link {
  font-size: 0.85rem;
}

/* List anchor scroll offset */
#list-anchor {
  scroll-margin-top: 100px;
}

/* Hero title spacing */
.hero-title-main {
  margin-top: 4rem;
}

/* Hero badge spacing */
.hero-badge.hero-badge-spaced {
  margin: 1.5rem auto 2.5rem;
}

/* Modal subtitle */
.modal-subtitle {
  margin-bottom: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Suggest manual container (hidden by default) */
#suggest-manual-container {
  display: none;
}

/* Toggle manual button */
#toggle-manual-btn {
  background: none;
  border: none;
  color: var(--red);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  margin-bottom: 15px;
  text-decoration: underline;
}

#toggle-manual-btn:hover {
  color: var(--red-light);
}

/* Selected game card spacing */
#suggest-selected {
  margin-top: 5px;
}

/* Modal field spacing */
.modal-field.mt-20 {
  margin-top: 20px;
}

.modal-field.mt-15 {
  margin-top: 15px;
}

/* Honeypot field (hidden) */
#suggest-hp {
  display: none;
}

/* Rate limit notice (hidden by default) */
#suggest-ratelimit {
  display: none;
  margin-top: 15px;
}

/* Human check label spacing */
#human-check-label {
  margin-top: 15px;
}

/* Suggest feedback spacing */
#suggest-feedback {
  margin-top: 15px;
}


/* ── TOAST ANIMATIONS ────────────────────────────────────────────── */
@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}
