/* ══════════════════════════════════════════════════════════════════
   KikiWebs Gaming Platform — Main CSS Design System
   Fonts: Russo One (headings) · Chakra Petch (body)
   Theme: Premium Blue + Green Neon / Dark Gaming
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Russo+One&family=Chakra+Petch:wght@300;400;500;600;700&display=swap');
@import 'chat.css';

/* ── CSS Custom Properties ──────────────────────────────────────── */
:root {
  --bg-primary:        #070B14;
  --bg-secondary:      #0D1526;
  --bg-card:           #0F1A2E;
  --bg-card-hover:     #142038;
  --bg-glass:          rgba(13, 21, 38, 0.85);
  --bg-nav:            rgba(7, 11, 20, 0.92);

  --accent-blue:       #00C2FF;
  --accent-green:      #00FF88;
  --accent-blue-dim:   rgba(0, 194, 255, 0.12);
  --accent-green-dim:  rgba(0, 255, 136, 0.12);
  --accent-purple:     #8B5CF6;

  --gradient-primary:  linear-gradient(135deg, #00C2FF 0%, #00FF88 100%);
  --gradient-hero:     linear-gradient(135deg, #00C2FF 0%, #00FF88 50%, #0099CC 100%);
  --gradient-card:     linear-gradient(145deg, #0F1A2E, #142038);
  --gradient-dark:     linear-gradient(180deg, #070B14 0%, #0D1526 100%);

  --text-primary:      #F0F6FF;
  --text-secondary:    #8BA3C0;
  --text-muted:        #4A6080;
  --text-on-accent:    #070B14;

  --border-blue:       rgba(0, 194, 255, 0.2);
  --border-green:      rgba(0, 255, 136, 0.2);
  --border-card:       rgba(0, 194, 255, 0.08);

  --shadow-blue:       0 0 24px rgba(0, 194, 255, 0.25);
  --shadow-green:      0 0 24px rgba(0, 255, 136, 0.25);
  --shadow-card:       0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-nav:        0 4px 30px rgba(0, 0, 0, 0.6);

  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         20px;
  --radius-xl:         32px;
  --radius-full:       9999px;

  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-mid:    250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading:      'Russo One', sans-serif;
  --font-body:         'Chakra Petch', sans-serif;

  --nav-height:        72px;
  --max-width:         1400px;
  --section-gap:       96px;
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary:        #F0F4F8;
  --bg-secondary:      #E2EAF4;
  --bg-card:           #FFFFFF;
  --bg-card-hover:     #F7FAFF;
  --bg-glass:          rgba(255, 255, 255, 0.9);
  --bg-nav:            rgba(240, 244, 248, 0.95);
  --text-primary:      #0A1628;
  --text-secondary:    #2D4A6B;
  --text-muted:        #6B85A0;
  --border-card:       rgba(0, 194, 255, 0.15);
  --shadow-card:       0 8px 40px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background var(--transition-slow), color var(--transition-slow);
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── Scrollbar ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-blue); }

/* ── Selection ──────────────────────────────────────────────────── */
::selection { background: rgba(0, 194, 255, 0.25); color: var(--accent-blue); }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-gap) 0; }
.section-sm { padding: 48px 0; }

/* ── Section Header ─────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text-primary);
}

.section-title span { color: var(--accent-green); }

.view-all-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.5px;
  transition: gap var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.view-all-btn:hover { color: var(--accent-green); gap: 10px; }

/* ── NAVBAR ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-blue);
  box-shadow: var(--shadow-nav);
  transition: background var(--transition-slow), border-color var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(7, 11, 20, 0.98);
  border-bottom-color: rgba(0, 194, 255, 0.3);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(0, 194, 255, 0.45);
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.35);
  background: #070B14;
  flex-shrink: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.06);
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(0, 194, 255, 0.6);
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links Wrapper with < and > controls */
.nav-links-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  gap: 4px;
}

.nav-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(13, 21, 38, 0.95);
  border: 1px solid var(--border-blue);
  color: var(--accent-blue);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 5;
  padding: 0;
  user-select: none;
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.25);
  line-height: 1;
}

.nav-scroll-btn:hover {
  background: var(--accent-blue);
  color: #070B14;
  border-color: var(--accent-blue);
  box-shadow: 0 0 14px rgba(0, 194, 255, 0.6);
  transform: scale(1.12);
}

.nav-scroll-btn:active {
  transform: scale(0.92);
}

/* Generic Pill / Tab Bar Scroll Wrapper */
.pill-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 6px;
  margin-bottom: 20px;
}

.pill-scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pill-scroll-btn:hover {
  color: var(--accent-blue);
  border-color: var(--border-blue);
  background: var(--bg-card-hover);
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.3);
  transform: scale(1.08);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding: 6px 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  flex-shrink: 0;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link.active {
  color: var(--accent-blue);
  background: rgba(0, 194, 255, 0.12);
  border-color: rgba(0, 194, 255, 0.25);
  font-weight: 600;
}

/* Sleek Live Streaming Taskbar Badge */
.nav-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(255, 60, 90, 0.15);
  border: 1px solid rgba(255, 60, 90, 0.35);
  color: #FF3B5C;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF3B5C;
  box-shadow: 0 0 8px #FF3B5C;
  animation: livePulse 1.6s infinite ease-in-out;
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-icon-btn:hover { color: var(--accent-blue); background: var(--accent-blue-dim); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-hamburger:hover { background: var(--accent-blue-dim); }

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform var(--transition-mid), opacity var(--transition-mid), background var(--transition-fast);
}

.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent-blue); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent-blue); }

/* Mobile Menu */
.nav-mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-blue);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--transition-mid), opacity var(--transition-mid);
  z-index: 999;
}

.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile-link {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-mobile-link:hover { color: var(--text-primary); background: var(--accent-blue-dim); }

.nav-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--bg-card);
  padding: 4px 12px 4px 4px;
  border-radius: 20px;
  border: 1px solid var(--border-card);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.nav-profile-btn:hover {
  border-color: var(--accent-blue);
  background: rgba(0, 194, 255, 0.08);
}
.nav-ghost-btn {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(123, 44, 191, 0.12)) !important;
  border: 1px solid rgba(0, 194, 255, 0.4) !important;
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.15);
}
.nav-ghost-btn:hover {
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.2), rgba(123, 44, 191, 0.22)) !important;
  border-color: #00c2ff !important;
  box-shadow: 0 0 22px rgba(0, 194, 255, 0.35);
}

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-mid);
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-on-accent);
  box-shadow: 0 4px 20px rgba(0, 194, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 194, 255, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--border-blue);
}

.btn-secondary:hover {
  background: var(--accent-blue-dim);
  border-color: var(--accent-blue);
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
}

.btn-ghost:hover { background: var(--bg-card-hover); border-color: var(--border-blue); }

.btn-green {
  background: var(--accent-green);
  color: #070B14;
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.45);
}

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-icon { padding: 10px; }
.btn-full { width: 100%; }

/* Google / Steam auth buttons */
.btn-google {
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #e0e0e0;
  gap: 10px;
}

.btn-google:hover { background: #f8f8f8; box-shadow: 0 4px 16px rgba(0,0,0,0.15); transform: translateY(-1px); }

.btn-steam {
  background: #1b2838;
  color: #c6d4df;
  border: 1px solid #2a3d52;
}

.btn-steam:hover { background: #2a475e; box-shadow: 0 4px 16px rgba(27,40,56,0.5); transform: translateY(-1px); }

.btn-microsoft {
  background: #1e222b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  gap: 10px;
}

.btn-microsoft:hover {
  background: #2a2f3d;
  border-color: rgba(0, 164, 239, 0.5);
  box-shadow: 0 4px 18px rgba(0, 164, 239, 0.25);
  transform: translateY(-1px);
}

/* ── Cards ───────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-card), var(--shadow-blue);
}

/* ── Game Card ───────────────────────────────────────────────────── */
.game-card { position: relative; display: flex; flex-direction: column; }

.game-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.game-card:hover .game-card-image img { transform: scale(1.05); }

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.95) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-mid);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.game-card:hover .game-card-overlay { opacity: 1; }

.game-card-tags {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.game-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(7, 11, 20, 0.7);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
  z-index: 2;
}

.game-card-wishlist:hover { background: rgba(255, 80, 100, 0.2); border-color: #ff5064; }
.game-card-wishlist.active { background: rgba(255, 80, 100, 0.25); border-color: #ff5064; }
.game-card-wishlist.active svg { color: #ff5064; }

.game-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-card-title {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.game-card-genre {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.game-card-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-blue);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.game-card-price.g2a-price-link, .game-card-price.g2a-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(243, 91, 4, 0.15), rgba(241, 135, 1, 0.15));
  border: 1px solid rgba(243, 91, 4, 0.4);
  color: #ff9e42;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.game-card-price.g2a-price-link:hover, .game-card-price.g2a-price-tag:hover {
  background: linear-gradient(135deg, #f35b04, #f18701);
  color: #fff;
  border-color: #f18701;
  box-shadow: 0 0 12px rgba(243, 91, 4, 0.5);
  transform: translateY(-1px);
}

.discount-badge.g2a-badge {
  background: linear-gradient(135deg, #f35b04, #f18701);
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 10px rgba(243, 91, 4, 0.4);
}

.game-card-price.free { color: var(--accent-blue); }

.game-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #FFD700;
}

/* ── Tags / Badges ───────────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tag-blue  { background: rgba(0,194,255,0.15); color: var(--accent-blue);  border: 1px solid rgba(0,194,255,0.3); }
.tag-green { background: rgba(0,255,136,0.15); color: var(--accent-green); border: 1px solid rgba(0,255,136,0.3); }
.tag-red   { background: rgba(255,80,100,0.15); color: #FF5064; border: 1px solid rgba(255,80,100,0.3); }
.tag-gold  { background: rgba(255,215,0,0.12); color: #FFD700; border: 1px solid rgba(255,215,0,0.3); }

/* ── Rating Stars ────────────────────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 2px;
}

/* ── Platform Icons ──────────────────────────────────────────────── */
.platform-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 600;
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border-card);
  letter-spacing: 0.3px;
}

/* ── Hero Section ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  z-index: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(2px);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,11,20,0.95) 0%,
    rgba(7,11,20,0.7) 50%,
    rgba(0,194,255,0.05) 100%
  );
}

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-blue {
  width: 600px; height: 600px;
  background: rgba(0, 194, 255, 0.06);
  top: -100px; right: -100px;
}

.hero-glow-green {
  width: 400px; height: 400px;
  background: rgba(0, 255, 136, 0.05);
  bottom: 50px; left: 10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}

.hero-text {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-blue-dim);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

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

.hero-title {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-title .gradient-word {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Hero visual - featured game card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-game-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), var(--shadow-blue);
  border: 1px solid var(--border-blue);
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-game-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.hero-game-info {
  padding: 20px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-game-title { font-size: 18px; margin-bottom: 4px; }

.hero-badge-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(30px);
}

/* ── Swiper Overrides ────────────────────────────────────────────── */
.swiper-button-next,
.swiper-button-prev {
  width: 44px !important;
  height: 44px !important;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-blue) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--accent-blue) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px !important; font-weight: 700 !important; }

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--accent-blue-dim) !important;
  border-color: var(--accent-blue) !important;
}

.swiper-pagination-bullet {
  background: var(--text-muted) !important;
  opacity: 1 !important;
  width: 6px !important;
  height: 6px !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent-blue) !important;
  width: 20px !important;
  border-radius: var(--radius-full) !important;
  transition: width var(--transition-mid) !important;
}

/* ── News Card ───────────────────────────────────────────────────── */
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-card), var(--shadow-blue);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.news-card:hover .news-card-image img { transform: scale(1.05); }

.news-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }

.news-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-green);
}

.news-card-title {
  font-size: 15px;
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-summary {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-card);
  margin-top: auto;
}

.news-card-date { font-size: 11px; color: var(--text-muted); }

/* ── Trailer Card ────────────────────────────────────────────────── */
.trailer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  border: 1px solid var(--border-card);
  transition: border-color var(--transition-mid), box-shadow var(--transition-mid);
}

.trailer-card:hover {
  border-color: var(--border-blue);
  box-shadow: var(--shadow-card), var(--shadow-blue);
}

.trailer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.trailer-card:hover img { transform: scale(1.05); }

.trailer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,20,0.85) 0%, rgba(7,11,20,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.trailer-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px;
  height: 60px;
  background: rgba(0, 194, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-mid), background var(--transition-fast);
}

.trailer-card:hover .trailer-play-btn { transform: translate(-50%, -50%) scale(1); background: var(--accent-blue); }

.trailer-title { font-size: 14px; font-family: var(--font-heading); color: #fff; }
.trailer-game  { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── Modal ───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-mid);
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), var(--shadow-blue);
  transform: scale(0.95);
  transition: transform var(--transition-mid);
  overflow: hidden;
}

.modal-overlay.open .modal { transform: scale(1); }

.modal-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title { font-size: 20px; }

.modal-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.modal-close:hover { color: var(--text-primary); background: var(--bg-secondary); }

.modal-body { padding: 24px; }

.modal-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: var(--text-muted);
  font-size: 12px;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-card);
}

/* ── Forms ───────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

.form-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
  background: var(--bg-card);
}

.form-input::placeholder { color: var(--text-muted); }

/* ── Glitch Text Effect ──────────────────────────────────────────── */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glitch::before {
  animation: glitch-1 3.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch::after {
  animation: glitch-2 3.5s infinite;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%,94%,100% { transform: translate(0); }
  95% { transform: translate(-2px, 1px); }
  97% { transform: translate(2px, -1px); }
}

@keyframes glitch-2 {
  0%,94%,100% { transform: translate(0); }
  95% { transform: translate(2px, -1px); }
  97% { transform: translate(-2px, 1px); }
}

/* ── Neon Glow Card Border ───────────────────────────────────────── */
.neon-border {
  position: relative;
}

.neon-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none !important;
  transition: opacity var(--transition-mid);
}

.neon-border:hover::before { opacity: 1; }

/* ── Skeleton / Loading ──────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

/* ── Toast Notifications ─────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card), var(--shadow-blue);
  font-size: 13px;
  color: var(--text-primary);
  max-width: 320px;
  pointer-events: all;
  animation: toast-in 0.3s ease;
}

.toast.success { border-color: var(--border-green); }
.toast.error   { border-color: rgba(255,80,100,0.3); }

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── QR Code section ─────────────────────────────────────────────── */
.qr-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-blue);
}

.qr-code-img {
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-blue);
}

/* ── Game Grid ───────────────────────────────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.games-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* ── Filters Bar ─────────────────────────────────────────────────── */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  transition: all var(--transition-fast);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.filter-btn:hover { border-color: var(--border-blue); color: var(--text-primary); }
.filter-btn.active { background: var(--accent-blue-dim); border-color: var(--accent-blue); color: var(--accent-blue); }

/* ── Search Bar ──────────────────────────────────────────────────── */
.search-bar {
  position: relative;
  flex: 1;
  min-width: 220px;
  max-width: 360px;
}

.search-bar input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  padding: 9px 16px 9px 42px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-bar input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-bar-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

/* ── Profile Avatar ──────────────────────────────────────────────── */
.avatar {
  border-radius: 50%;
  border: 2px solid var(--border-blue);
  object-fit: cover;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--text-on-accent);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-card);
  padding: 60px 0 24px;
  margin-top: var(--section-gap);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 280px; }

.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover { color: var(--accent-blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-card);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-socials { display: flex; gap: 8px; }

.social-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-btn:hover { border-color: var(--border-blue); color: var(--accent-blue); background: var(--accent-blue-dim); }

/* ── Scroll Animations ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger-children > * { transition-delay: calc(var(--stagger-i, 0) * 80ms); }

/* ── Reduced Motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-game-card { animation: none; }
  .glitch::before, .glitch::after { animation: none; }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { max-width: 100%; }
  .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .hero-stats { gap: 20px; }
  .hero-stat-value { font-size: 22px; }
  .btn-lg { padding: 12px 24px; font-size: 15px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
}

/* ── Page Header Banner ──────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-height) + 48px) 0 48px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-card);
  position: relative;
  overflow: hidden;
}

.page-header-glow {
  position: absolute;
  width: 400px; height: 200px;
  background: var(--gradient-primary);
  filter: blur(80px);
  opacity: 0.05;
  top: -50px; right: 10%;
  border-radius: 50%;
  pointer-events: none;
}

/* ── Tabs ────────────────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-card);
  margin-bottom: 32px;
}

.tab-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--accent-blue); border-bottom-color: var(--accent-blue); }

/* ── Profile Card ────────────────────────────────────────────────── */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 32px;
}

/* ── Stat cards ──────────────────────────────────────────────────── */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: border-color var(--transition-mid), transform var(--transition-mid);
}

.stat-card:hover { border-color: var(--border-blue); transform: translateY(-2px); }

.stat-card-value {
  font-family: var(--font-heading);
  font-size: 32px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ── Wishlist empty state ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.empty-state-icon {
  width: 80px; height: 80px;
  background: var(--accent-blue-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
}

.empty-state-title { font-size: 22px; }
.empty-state-desc  { font-size: 14px; color: var(--text-secondary); max-width: 320px; }

/* ── Divider ─────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border-card);
  margin: 32px 0;
}

/* ── Gradient border on section ──────────────────────────────────── */
.gradient-line {
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  opacity: 0.4;
}

/* ── KikiWebsCoin badge ─────────────────────────────────────────── */
.kikiwebscoin-badge,
.kacoin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #FFD700;
}

/* ── Coming Soon Banner ──────────────────────────────────────────── */
.coming-soon-banner {
  text-align: center;
  padding: 48px 24px;
  background: var(--accent-blue-dim);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.coming-soon-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 194, 255, 0.03) 10px,
    rgba(0, 194, 255, 0.03) 20px
  );
}

/* ══════════════════════════════════════════════════════════════════
   NEW LIVE FEATURES DESIGN SYSTEM (Features 1 - 14)
   ══════════════════════════════════════════════════════════════════ */

/* ── 🔔 Notification Bell & Inbox Dropdown ───────────────────────── */
.nav-notif-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-notif-btn:hover {
  color: var(--accent-blue);
  border-color: var(--border-blue);
  box-shadow: 0 0 16px rgba(0, 194, 255, 0.2);
  transform: translateY(-1px);
}

.notif-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #FF5064;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(255, 80, 100, 0.5);
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); box-shadow: 0 0 14px rgba(255, 80, 100, 0.8); }
}

.notif-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  width: 360px;
  max-width: 90vw;
  background: var(--bg-card);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 194, 255, 0.15);
  backdrop-filter: blur(20px);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fade-in-down 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fade-in-down {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-card);
  background: rgba(255, 255, 255, 0.02);
}

.notif-list {
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-card);
  text-decoration: none;
  transition: background var(--transition-fast);
  cursor: pointer;
}

.notif-item:hover {
  background: rgba(0, 194, 255, 0.05);
}

.notif-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.notif-icon-deal { background: rgba(255, 180, 0, 0.15); color: #FFB400; }
.notif-icon-release { background: rgba(0, 194, 255, 0.15); color: var(--accent-blue); }
.notif-icon-free { background: rgba(0, 255, 136, 0.15); color: var(--accent-green); }
.notif-icon-trending { background: rgba(255, 80, 100, 0.15); color: #FF5064; }

.notif-content { flex: 1; }
.notif-title { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.notif-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.4; margin-bottom: 4px; }
.notif-time { font-size: 10px; color: var(--text-muted); }

/* ── 🏷️ Deals, Discounts & Badges ────────────────────────────────── */
.deal-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  overflow: hidden;
  transition: all var(--transition-mid);
  display: flex;
  flex-direction: column;
}

.deal-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 194, 255, 0.2);
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: linear-gradient(135deg, #FF5064 0%, #FF2A4B 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(255, 42, 75, 0.4);
}

.discount-badge.free-badge {
  background: linear-gradient(135deg, #00FF88 0%, #00C2FF 100%);
  color: #070B14;
}

.deal-timer-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFD700;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
}

.price-strikethrough {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 6px;
}

.price-discounted {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent-green);
  font-weight: 700;
}

/* ── 🔥 Trending Rank Badges & Momentum ──────────────────────────── */
.rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
}

.rank-badge-1 {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  color: #070B14;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.rank-badge-2 {
  background: linear-gradient(135deg, #E0E0E0 0%, #9E9E9E 100%);
  color: #070B14;
}

.rank-badge-3 {
  background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
  color: #fff;
}

.rank-badge-default {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.momentum-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-green);
  background: var(--accent-green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}

/* ── 📊 Game Activity Statistics Pill ────────────────────────────── */
.activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 194, 255, 0.08);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
}

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

@keyframes pulse-live {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

/* ── 🕹️ Platform Filter Pills ────────────────────────────────────── */
.platform-pills-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.platform-pill:hover {
  border-color: var(--border-blue);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.platform-pill.active {
  background: var(--gradient-primary);
  color: #070B14;
  border-color: transparent;
  font-weight: 700;
  box-shadow: var(--shadow-blue);
}

.platform-pill-count {
  font-size: 11px;
  opacity: 0.75;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 1px 6px;
}

/* ── ⚔️ Game Comparison Matrix ───────────────────────────────────── */
.compare-container {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 850px) {
  .compare-container {
    grid-template-columns: 1fr;
  }
}

.compare-col {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.compare-vs-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C2FF, #00FF88);
  color: #070B14;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.4);
  margin: 0 auto;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-card);
  font-size: 13px;
}

.compare-row:last-child { border-bottom: none; }
.compare-row-label { color: var(--text-muted); }
.compare-row-val { color: var(--text-primary); font-weight: 600; text-align: right; }

.winner-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 255, 136, 0.15);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

/* ── 🖥️ PC System Requirements Checker ───────────────────────────── */
.specs-checker-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}

.specs-gauge-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(0, 194, 255, 0.05);
  border: 1px solid rgba(0, 194, 255, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.specs-pass { color: var(--accent-green); }
.specs-warn { color: #FFB400; }
.specs-fail { color: #FF5064; }

.hardware-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-card);
  font-size: 13px;
}

.hardware-row:last-child { border-bottom: none; }

/* ── 📅 Upcoming Games Calendar ──────────────────────────────────── */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.calendar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-mid);
  display: flex;
  flex-direction: column;
}

.calendar-card:hover {
  border-color: var(--border-blue);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.calendar-month-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 36px 0 20px;
}

.calendar-month-title {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--accent-blue);
  white-space: nowrap;
}

.calendar-month-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border-blue), transparent);
}

/* ── 👥 Community Discussion Teaser Box ──────────────────────────── */
.community-quotes-box {
  background: linear-gradient(145deg, rgba(15, 26, 46, 0.9), rgba(20, 32, 56, 0.9));
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.quote-bubble {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.quote-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── 🎥 Gameplay Clips Selector ──────────────────────────────────── */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.clip-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: #0A0E1A;
  transition: all var(--transition-fast);
}

.clip-card:hover {
  transform: scale(1.03);
  border-color: rgba(0, 194, 255, 0.5);
}

.clip-card.active {
  border-color: var(--accent-blue);
  box-shadow: 0 0 16px rgba(0, 194, 255, 0.4);
}

.clip-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(7, 11, 20, 0.95), transparent);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── ⚠️ Outdated Old Games & Legacy Offer Styles ─────────────────── */
.badge-outdated {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: rgba(255, 180, 0, 0.16);
  color: #FFB400;
  border: 1px solid rgba(255, 180, 0, 0.4);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.badge-outdated-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  background: rgba(255, 170, 0, 0.92);
  color: #070B14;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 4px;
}

.store-btn-outdated {
  background: rgba(255, 180, 0, 0.06) !important;
  border: 1px dashed rgba(255, 180, 0, 0.4) !important;
  color: var(--text-primary) !important;
  transition: all var(--transition-fast);
}

.store-btn-outdated:hover {
  background: rgba(255, 180, 0, 0.15) !important;
  border-color: rgba(255, 180, 0, 0.8) !important;
  transform: translateY(-1px);
}

.outdated-notice {
  font-size: 11px;
  color: #FFB400;
  margin-top: 6px;
  padding: 6px 10px;
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

/* ── 🌍 Global Country & Currency Modal & Pill ─────────────────────── */
.currency-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.currency-pill-btn:hover {
  background: var(--accent-blue-dim);
  border-color: var(--border-blue);
  color: var(--accent-blue);
  transform: translateY(-1px);
}

.currency-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: pointer;
}

.currency-modal-backdrop.open {
  display: flex !important;
}

.currency-modal-card {
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-modal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default;
  position: relative;
  z-index: 100000;
  pointer-events: auto;
}

.currency-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.modal-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto !important;
  z-index: 20;
}

.modal-close-btn:hover {
  color: #fff;
  background: rgba(255, 80, 100, 0.2);
  border-color: #ff5064;
  transform: scale(1.05);
}

.currency-modal-search {
  padding: 12px 24px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-card);
  display: flex;
  align-items: center;
  gap: 10px;
}

.currency-modal-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.currency-countries-grid {
  padding: 16px 20px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 8px;
  max-height: 55vh;
}

.country-choice-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-card);
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  text-align: left;
  transition: all var(--transition-fast);
}

.country-choice-item:hover {
  background: rgba(0, 194, 255, 0.08);
  border-color: rgba(0, 194, 255, 0.35);
  transform: translateX(2px);
}

.country-choice-item.selected {
  background: rgba(0, 194, 255, 0.15);
  border-color: var(--accent-blue);
}

.country-flag-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.country-name-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.country-sub-text {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.currency-symbol-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-blue);
  background: rgba(0, 194, 255, 0.1);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.currency-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 4px 10px;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.currency-pill-btn:hover {
  border-color: var(--border-blue);
  background: rgba(0, 194, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.2);
  transform: translateY(-1px);
}

.curr-flag {
  font-size: 15px;
  line-height: 1;
}

.curr-code {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 0.5px;
}

/* ── 🎬 Community Video Clips & Social Feed Styles ────────────────────────── */
.community-feed-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 992px) {
  .community-feed-layout {
    grid-template-columns: 1fr;
  }
}

.community-post-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  position: relative;
}
.community-post-card:hover {
  border-color: rgba(0, 194, 255, 0.35);
  box-shadow: var(--shadow-hover);
}

.community-post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.community-post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.community-post-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-secondary);
  border: 2px solid var(--border-card);
}
.community-post-meta {
  display: flex;
  flex-direction: column;
}
.community-post-username {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.community-post-time {
  font-size: 12px;
  color: var(--text-muted);
}

.community-post-title {
  font-size: 18px;
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.community-post-content {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  word-break: break-word;
}

.community-post-game-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 194, 255, 0.1);
  border: 1px solid rgba(0, 194, 255, 0.25);
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.community-post-game-tag:hover {
  background: rgba(0, 194, 255, 0.2);
  border-color: var(--accent-blue);
}

/* Video Player Wrapper (16:9 responsive) */
.community-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border-card);
}
.community-video-wrapper iframe,
.community-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.community-post-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  border: 1px solid var(--border-card);
}

.community-post-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-card);
  flex-wrap: wrap;
  gap: 10px;
}
.community-reactions-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.reaction-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.reaction-pill-btn:hover {
  border-color: var(--accent-blue);
  color: var(--text-primary);
  transform: translateY(-1px);
}
.reaction-pill-btn.reacted {
  background: rgba(0, 194, 255, 0.15);
  border-color: var(--accent-blue);
  color: var(--accent-blue);
}

.community-comments-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-card);
}
.community-comment-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}
.community-comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.community-comment-body {
  flex: 1;
}
.community-comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.community-comment-author {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.community-comment-time {
  font-size: 11px;
  color: var(--text-muted);
}
.community-comment-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════
   GLOBAL SHOPPING CART DRAWER & CHECKOUT STYLES
   ══════════════════════════════════════════════════════════════════ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-primary);
  border-left: 1px solid var(--border-card);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-card);
}
.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.cart-pill-count {
  background: var(--accent-blue);
  color: #070B14;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 12px;
}
.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}
.cart-close-btn:hover {
  color: #FF5064;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.cart-empty-icon {
  font-size: 54px;
  margin-bottom: 14px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-item-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 12px;
  position: relative;
  transition: border-color var(--transition-fast);
}
.cart-item-card:hover {
  border-color: var(--border-blue);
}
.cart-item-thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-3d-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: linear-gradient(135deg, #00C2FF, #00FF88);
  color: #070B14;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
}
.cart-item-details {
  flex: 1;
  min-width: 0;
}
.cart-item-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}
.cart-item-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.cart-item-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-blue);
}
.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  border-radius: 4px;
  padding: 2px 6px;
}
.cart-qty-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  padding: 0 4px;
}
.cart-qty-btn:hover {
  color: var(--accent-blue);
}
.cart-qty-num {
  font-size: 12px;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  align-self: flex-start;
}
.cart-remove-btn:hover {
  color: #FF5064;
}

.cart-footer {
  padding: 20px 24px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-card);
}
.cart-coupon-box {
  margin-bottom: 16px;
}
.cart-coupon-form {
  display: flex;
  gap: 8px;
}
.cart-coupon-input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}
.cart-coupon-input:focus {
  border-color: var(--accent-blue);
  outline: none;
}
.cart-applied-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--accent-green);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.cart-remove-coupon-btn {
  background: none;
  border: none;
  color: #FF5064;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}
.cart-summary-row.discount {
  color: var(--accent-green);
  font-weight: 700;
}
.cart-summary-row.total {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  border-top: 1px solid var(--border-card);
  padding-top: 10px;
  margin-top: 2px;
}
.cart-total-value {
  color: var(--accent-blue);
}
.cart-checkout-btn {
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
}
.cart-guarantee-note {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

/* ── 🔒 Locked Feature & Nav States for Guests ────────────────────────── */
.nav-link.nav-locked, .nav-mobile-link.nav-locked {
  position: relative;
  cursor: pointer;
}

.nav-link.nav-locked::after {
  content: ' 🔒';
  font-size: 10px;
  margin-left: 3px;
  vertical-align: middle;
  opacity: 0.85;
}

.nav-mobile-link.nav-locked::after {
  content: ' 🔒';
  font-size: 12px;
  float: right;
  margin-right: 6px;
  opacity: 0.85;
}

/* ── 🤖 AI Gaming Assistant & AI Matchup Suite Styles ─────────────────────── */
.ai-assistant-container {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(10, 16, 30, 0.95));
  border: 1px solid rgba(0, 194, 255, 0.35);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 194, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.ai-assistant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.ai-bot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00c2ff, #7928ca);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 15px rgba(0, 194, 255, 0.4);
}

.ai-lang-select {
  background: rgba(7, 11, 20, 0.85);
  border: 1px solid rgba(0, 194, 255, 0.4);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.ai-lang-select:hover, .ai-lang-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.3);
}

.ai-quick-prompts-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ai-pill-prompt {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.ai-pill-prompt:hover {
  background: rgba(0, 194, 255, 0.15);
  border-color: var(--accent-blue);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 10px rgba(0, 194, 255, 0.25);
}

.ai-chat-stream {
  min-height: 240px;
  max-height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 6px;
  margin-bottom: 18px;
  scroll-behavior: smooth;
}

.ai-msg-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: fadeIn 0.3s ease;
}

.ai-msg-row.user {
  flex-direction: row-reverse;
}

.ai-bubble {
  max-width: 82%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.6;
}

.ai-bubble.bot {
  background: rgba(18, 28, 48, 0.85);
  border: 1px solid rgba(0, 194, 255, 0.25);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.ai-bubble.bot a {
  color: var(--accent-blue);
  font-weight: 700;
  text-decoration: underline;
}

.ai-bubble.user {
  background: linear-gradient(135deg, #00c2ff, #0070f3);
  color: #fff;
  border-bottom-right-radius: 4px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 194, 255, 0.3);
}

.ai-chat-input-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  background: rgba(7, 11, 20, 0.9);
  border: 1px solid rgba(0, 194, 255, 0.35);
  border-radius: 14px;
  padding: 6px 8px 6px 16px;
}

.ai-chat-input-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.ai-typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
}

.ai-typing-indicator span {
  width: 7px;
  height: 7px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: aiPulse 1.4s infinite ease-in-out both;
}

.ai-typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.ai-typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes aiPulse {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* ── 🏆 AI Matchup Verdict Suite Styles (Compare Page) ────────────────────── */
.ai-verdict-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(20, 32, 56, 0.98));
  border: 2px solid rgba(255, 215, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: 30px;
  margin-top: 36px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.ai-winner-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.ai-winner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffd700, #ff8800);
  color: #070b14;
  font-weight: 800;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.ai-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.ai-pillar-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.2s ease;
}

.ai-pillar-card:hover {
  border-color: var(--border-blue);
  background: rgba(0, 194, 255, 0.04);
}

.ai-pillar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.ai-score-bar-bg {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  display: flex;
  margin-top: 4px;
}

.ai-score-bar-fill-1 {
  background: linear-gradient(90deg, #00c2ff, #0070f3);
  height: 100%;
  transition: width 0.6s ease;
}

.ai-score-bar-fill-2 {
  background: linear-gradient(90deg, #00ff88, #10b981);
  height: 100%;
  transition: width 0.6s ease;
}

.ai-profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  .ai-profiles-grid {
    grid-template-columns: 1fr;
  }
}

.ai-profile-box {
  background: rgba(18, 28, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
}

/* ── 🌐 Inline Hero Live Sources & User Origins Explorer (On This Page) ── */
.hero-stat-item.is-interactive {
  cursor: pointer;
  padding: 6px 12px;
  margin: -6px -12px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}

.hero-stat-item.is-interactive:hover {
  background: rgba(0, 255, 136, 0.06);
  border-color: rgba(0, 255, 136, 0.25);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

.hero-live-sources-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.35);
  color: #00ff88;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 4px;
  width: fit-content;
}

.hero-live-sources-btn:hover,
.hero-live-sources-btn.is-active {
  background: rgba(0, 255, 136, 0.22);
  border-color: #00ff88;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.35);
  transform: scale(1.04);
}

.hero-inline-sources-container {
  margin-top: 20px;
  width: 100%;
  max-width: 760px;
  animation: hero-fade-slide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hero-fade-slide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-inline-sources-card {
  background: linear-gradient(180deg, rgba(14, 23, 42, 0.96) 0%, rgba(7, 12, 24, 0.98) 100%);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 136, 0.08);
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-inline-sources-head {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 28, 48, 0.5);
}

.hero-inline-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-inline-desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero-inline-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-inline-close-btn:hover {
  background: rgba(255, 68, 68, 0.2);
  border-color: rgba(255, 68, 68, 0.4);
  color: #ff4444;
}

.live-sources-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(0, 255, 136, 0.12);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-inline-sources-body {
  padding: 16px 20px;
  max-height: 320px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-inline-sources-body::-webkit-scrollbar {
  width: 6px;
}
.hero-inline-sources-body::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.25);
  border-radius: 3px;
}

.live-sources-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 16px;
}

.live-sources-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.2s ease;
}

.live-sources-tab-btn:hover {
  background: rgba(0, 194, 255, 0.12);
  border-color: rgba(0, 194, 255, 0.35);
  color: #fff;
}

.live-sources-tab-btn.is-active {
  background: rgba(0, 255, 136, 0.15);
  border-color: #00ff88;
  color: #00ff88;
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.2);
}

.live-user-entry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 10px 14px;
  gap: 12px;
  transition: all 0.2s ease;
}

.live-user-entry-card:hover {
  background: rgba(0, 255, 136, 0.03);
  border-color: rgba(0, 255, 136, 0.3);
  transform: translateY(-1px);
}

.live-user-entry-avatar-wrap {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.live-user-entry-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 136, 0.4);
}

.live-user-entry-avatar-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 2px solid rgba(0, 255, 136, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #00ff88;
}

.live-user-entry-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background: #00ff88;
  border: 2px solid #070c18;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
}

.live-user-entry-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.live-user-entry-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-user-entry-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.live-user-entry-role-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 5px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.35);
  color: #818cf8;
  text-transform: uppercase;
}

.live-user-entry-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.live-user-entry-source-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  color: #00ff88;
}

.live-sources-progress-item {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.live-sources-progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-sources-progress-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-sources-progress-stat {
  font-size: 12px;
  font-weight: 700;
  color: #00ff88;
}

.live-sources-progress-track {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.live-sources-progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #00ff88, #00b4d8);
  transition: width 0.5s ease;
}

.live-sources-empty-state {
  text-align: center;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.live-sources-empty-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ── 👥 Real Signed-Up Users & Live Options (Hero Section) ── */
.hero-options-showcase,
.hero-real-users-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(14, 23, 42, 0.85);
  border: 1px solid rgba(0, 194, 255, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 620px;
}

.hero-options-showcase:hover,
.hero-real-users-showcase:hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.hero-options-header,
.hero-real-users-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-options-title,
.hero-real-users-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.hero-options-pulse,
.hero-real-users-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse 1.5s infinite;
}

.hero-options-badge,
.hero-real-users-count {
  font-size: 10px;
  font-weight: 700;
  color: #00ff88;
  background: rgba(0, 255, 136, 0.12);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.hero-options-buttons-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-opt-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.hero-opt-btn:hover {
  background: rgba(0, 194, 255, 0.15);
  border-color: rgba(0, 194, 255, 0.4);
  color: #fff;
  transform: translateY(-1px);
}

.hero-opt-btn.is-active {
  background: rgba(0, 255, 136, 0.18);
  border-color: #00ff88;
  color: #00ff88;
  box-shadow: 0 0 14px rgba(0, 255, 136, 0.25);
}

.hero-real-users-avatars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 3px 10px 3px 3px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero-user-chip:hover {
  background: rgba(0, 194, 255, 0.15);
  border-color: rgba(0, 194, 255, 0.4);
}

.hero-user-chip-avatar-wrap {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.hero-user-chip-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hero-user-chip-avatar.is-online {
  border-color: #00ff88;
}

.hero-user-chip-initials {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00C2FF, #7928CA);
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  line-height: 1;
  text-transform: uppercase;
  flex-shrink: 0;
}

.hero-user-chip-initials.is-online {
  border-color: #00ff88;
}

.hero-user-chip-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #888;
  border: 1px solid #070B14;
}

.hero-user-chip-dot.is-online {
  background: #00ff88;
  box-shadow: 0 0 6px #00ff88;
}

.hero-user-chip-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-user-chip-role {
  font-size: 9px;
  font-weight: 700;
  color: #00c2ff;
  background: rgba(0, 194, 255, 0.12);
  padding: 1px 5px;
  border-radius: 6px;
}

.hero-user-chip-more {
  font-size: 11px;
  font-weight: 700;
  color: #8C9EBA;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3px 9px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.hero-user-chip-more:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(0, 255, 136, 0.3);
}




