/* ═══════════════════════════════════════ */
/* GROUPSMIX DESIGN SYSTEM — shared.css   */
/* Premium Redesign                        */
/* ═══════════════════════════════════════ */

/* ═══════════════════════════════════════ */
/* DARK THEME (default)                    */
/* ═══════════════════════════════════════ */
:root {
  --bg-primary: #0d0d14;
  --bg-secondary: #141420;
  --bg-tertiary: #1c1c30;
  --bg-card: #181824;
  --bg-card-hover: #1f1f2f;
  --bg-input: #1c1c2a;
  --bg-modal: #181824;
  --border-primary: #2a2a3d;
  --border-secondary: #383850;
  --text-primary: #e4e4ed;
  --text-secondary: #a8a8be;
  --text-tertiary: #72728a;
  --text-muted: #585870;
  --accent-primary: #6366F1;
  --accent-primary-hover: #4F46E5;
  --accent-primary-light: rgba(99,102,241,0.12);
  --accent-tertiary: #8B5CF6;
  --accent-secondary: #00cec9;
  --accent-gold: #ffd700;
  --accent-diamond: #b9f2ff;
  --success: #10B981;
  --success-light: rgba(16,185,129,0.12);
  --warning: #fdcb6e;
  --warning-light: rgba(253,203,110,0.12);
  --error: #e17055;
  --error-light: rgba(225,112,85,0.12);
  --info: #74b9ff;
  --info-light: rgba(116,185,255,0.12);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.2);
  --shadow-md: 0 2px 10px rgba(0,0,0,0.25);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 16px rgba(99,102,241,0.2);
  --gradient-accent: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-wide: 1440px;
}

/* ═══════════════════════════════════════ */
/* LIGHT THEME                             */
/* ═══════════════════════════════════════ */
[data-theme="light"] {
  --bg-primary: #F8FAFC;
  --bg-secondary: #ffffff;
  --bg-tertiary: #F1F5F9;
  --bg-card: #ffffff;
  --bg-card-hover: #F8FAFC;
  --bg-input: #F1F5F9;
  --bg-modal: #ffffff;
  --border-primary: #E2E8F0;
  --border-secondary: #CBD5E1;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-tertiary: #94A3B8;
  --text-muted: #CBD5E1;
  --accent-primary: #6366F1;
  --accent-primary-hover: #4F46E5;
  --accent-primary-light: rgba(99,102,241,0.1);
  --accent-tertiary: #8B5CF6;
  --accent-secondary: #00b5ad;
  --accent-gold: #f0c800;
  --accent-diamond: #7ee8fa;
  --success: #10B981;
  --success-light: rgba(16,185,129,0.1);
  --warning: #e8b500;
  --warning-light: rgba(232,181,0,0.1);
  --error: #d63031;
  --error-light: rgba(214,48,49,0.1);
  --info: #0984e3;
  --info-light: rgba(9,132,227,0.1);
  --shadow-sm: 0 1px 4px rgba(15,23,42,0.05);
  --shadow-md: 0 2px 10px rgba(15,23,42,0.06);
  --shadow-lg: 0 4px 20px rgba(15,23,42,0.08);
  --shadow-glow: 0 0 12px rgba(99,102,241,0.1);
  --gradient-accent: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

/* ═══════════════════════════════════════ */
/* RESET                                   */
/* ═══════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-regular);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 94px; /* Space for fixed header (52px) + subnav (42px) */
  padding-bottom: 60px; /* Space for mobile nav */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-primary-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

/* ═══════════════════════════════════════ */
/* LAYOUT                                  */
/* ═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--accent-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  z-index: 100000;
  font-weight: var(--font-semibold);
}

.skip-link:focus {
  top: var(--space-2);
}

.grid {
  display: grid;
  gap: var(--space-4);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.text-center { text-align: center; }
.hidden { display: none !important; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ═══════════════════════════════════════ */
/* BUTTONS                                 */
/* ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
  border: 1px solid transparent;
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97); }
.btn:disabled, .btn.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,0.2);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99,102,241,0.25);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--accent-primary);
  border: 2px solid var(--border-primary);
}
.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline { background: transparent; color: var(--accent-primary); border-color: var(--accent-primary); }
.btn-outline:hover { background: var(--accent-primary-light); transform: translateY(-2px); }

.btn-danger { background: var(--error); color: #fff; }
.btn-danger:hover { opacity: 0.9; }

.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { opacity: 0.9; }

.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { background: var(--bg-tertiary); color: var(--text-primary); }

.btn-sm { height: 36px; padding: 0 14px; font-size: var(--text-sm); border-radius: 10px; }
.btn-lg { height: 52px; padding: 0 32px; font-size: var(--text-lg); border-radius: 14px; }
.btn-icon { width: 44px; height: 44px; padding: 0; flex-shrink: 0; }
.btn-icon.btn-sm { width: 36px; height: 36px; }
.btn-full { width: 100%; }

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ═══════════════════════════════════════ */
/* CARDS                                   */
/* ═══════════════════════════════════════ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99,102,241,0.2);
}

.card:hover::before {
  opacity: 1;
}

.card__header { padding: var(--space-4); border-bottom: 1px solid var(--border-primary); }
.card__body { padding: var(--space-4); }
.card__footer { padding: var(--space-4); border-top: 1px solid var(--border-primary); }
.card--clickable { cursor: pointer; }

/* ═══════════════════════════════════════ */
/* FORMS                                   */
/* ═══════════════════════════════════════ */
.form-group { margin-bottom: var(--space-4); }

.form-label {
  display: block;
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0.875rem 1rem;
  background: var(--bg-input);
  border: 2px solid var(--border-primary);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all 0.3s ease;
}

.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 4px rgba(99,102,241,0.1); }
.form-input--error { border-color: var(--error) !important; }

.form-textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-base);
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-primary);
}

.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea:focus { border-color: var(--accent-primary); box-shadow: var(--shadow-glow); }

.form-select {
  width: 100%;
  height: 44px;
  padding: 10px 36px 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--text-base);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a6a82' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.form-select:focus { border-color: var(--accent-primary); }

.form-checkbox {
  width: 20px;
  height: 20px;
  accent-color: var(--accent-primary);
  cursor: pointer;
}

.form-error-text { color: var(--error); font-size: var(--text-sm); margin-top: var(--space-1); }
.form-help { color: var(--text-tertiary); font-size: var(--text-sm); margin-top: var(--space-1); }

.form-row {
  display: flex;
  gap: var(--space-4);
}

/* ═══════════════════════════════════════ */
/* HEADER                                  */
/* ═══════════════════════════════════════ */
/* ═══════════════════════════════════════ */
/* SITE HEADER — Facebook-Style Redesign  */
/* ═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 52px;
  transition: all 0.3s ease;
}

[data-theme="light"] .site-header {
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header.scrolled {
  background: #000000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

[data-theme="light"] .site-header.scrolled {
  background: #000000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* ── Left section: Hamburger ── */
.site-header__left {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.site-header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s ease, color 0.2s ease;
}
.site-header__hamburger:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.site-header__hamburger svg {
  width: 22px;
  height: 22px;
}

/* ── Center section ── */
.site-header__center {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* ── Right section: + Button + Logo ── */
.site-header__right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-extrabold);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.site-header__logo:hover { color: #fff; transform: scale(1.02); }

.site-header__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: contain;
}

.site-header__logo-text {
  color: #fff;
  font-size: var(--text-lg);
  font-weight: var(--font-extrabold);
}

/* ── Magic + Button ── */
.magic-plus-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.magic-plus-btn:hover {
  background: var(--accent-primary);
  color: #fff;
  transform: scale(1.05);
}
.magic-plus-btn:active {
  transform: scale(0.95);
}

/* ── Magic + Dropdown ── */
.magic-plus-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 1001;
  animation: dropdownFadeIn 0.15s ease;
  overflow: hidden;
  padding: var(--space-2) 0;
}

.magic-plus-dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  transition: background 0.15s ease, color 0.15s ease;
}
.magic-plus-dropdown__item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.magic-plus-dropdown__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════ */
/* HORIZONTAL SUB-NAVIGATION BAR          */
/* Facebook Marketplace style             */
/* ═══════════════════════════════════════ */
.subnav {
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 999;
  background: #000000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 42px;
}

.subnav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar { display: none; }

.subnav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-4);
  height: 100%;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  white-space: nowrap;
  position: relative;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.subnav__item:hover {
  color: rgba(255,255,255,0.85);
}

.subnav__item--active {
  color: #fff;
}

.subnav__item--active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--space-4);
  right: var(--space-4);
  height: 3px;
  background: var(--accent-primary);
  border-radius: 3px 3px 0 0;
}

/* ── Notification Bell ── */
.header-notification__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.header-notification__btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.header-notification__btn svg { display: block; }

/* Pulsing dot for unread notifications */
.header-notification__dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
  border: 2px solid #000000;
  animation: notificationPulse 2s ease-in-out infinite;
}
[data-theme="light"] .header-notification__dot {
  border-color: #000000;
}

@keyframes notificationPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

/* ── User profile link (avatar + name → dashboard) ── */
.header-user-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--text-primary);
  padding: 4px 8px;
  border-radius: var(--radius-lg);
  transition: background 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}
.header-user-link:hover {
  background: rgba(255,255,255,0.1);
}

.header-user-link__chevron {
  color: var(--text-tertiary);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.header-user-link:hover .header-user-link__chevron {
  color: var(--text-secondary);
}
.header-user-link__name {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  white-space: nowrap;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── User Avatar ── */
.header-avatar {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  border: 2px solid #6200ea;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-tertiary);
}
.header-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
}
.header-avatar__initials {
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: #6200ea;
  text-transform: uppercase;
}

/* ── Dropdown trigger (chevron) ── */
.header-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  color: var(--text-tertiary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
}
.header-menu-btn:hover { color: var(--text-primary); }

/* ── Login Button (unauthenticated) ── */
.header-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 20px;
  background: #6200ea;
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  font-family: inherit;
}
.header-login-btn:hover {
  background: #5000c9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(98, 0, 234, 0.35);
}
.header-login-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Legacy compatibility */
.notification-badge {
  position: relative;
}

.notification-badge__count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #6200ea;
  color: #fff;
  font-size: 10px;
  font-weight: var(--font-bold);
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.notification-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1001;
  animation: slideDown 0.2s ease;
  overflow: hidden;
}

.notification-dropdown__item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-primary);
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.notification-dropdown__item:hover { background: var(--bg-card-hover); }
.notification-dropdown__item:last-child { border-bottom: none; }
.notification-dropdown__item--unread { background: var(--accent-primary-light); }

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1001;
  animation: dropdownFadeIn 0.15s ease;
  overflow: hidden;
  padding: var(--space-2) 0;
}
[data-theme="light"] .user-dropdown {
  background: #fff;
  border-color: #e2e8f0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
}

/* User dropdown header with avatar and user info */
.user-dropdown__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
}
.user-dropdown__header-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg-tertiary);
}
.user-dropdown__header-info {
  flex: 1;
  min-width: 0;
}
.user-dropdown__header-name {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-dropdown__header-email {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.user-dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  color: var(--text-secondary);
  transition: background-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
  cursor: pointer;
  font-size: var(--text-sm);
}
.user-dropdown__icon {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  font-size: var(--text-base);
}

.user-dropdown__item:hover { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
[data-theme="light"] .user-dropdown__item:hover { background: rgba(98, 0, 234, 0.08); color: #6200ea; }
.user-dropdown__item--danger:hover { background: rgba(225, 112, 85, 0.1); color: var(--error); }
.user-dropdown__divider { height: 1px; background: var(--border-primary); margin: var(--space-2) 0; }

/* Mobile: ensure dropdown doesn't overflow screen */
@media (max-width: 767px) {
  .user-dropdown { right: -8px; width: 220px; }
}

/* ═══════════════════════════════════════ */
/* MOBILE DRAWER                           */
/* ═══════════════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  animation: fadeIn 0.2s ease;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-secondary);
  z-index: 9999;
  overflow-y: auto;
  animation: slideInLeft 0.25s ease;
  border-right: 1px solid var(--border-primary);
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-primary);
}

.drawer__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--text-secondary);
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
  font-size: var(--text-sm);
}

.drawer__item:hover { background: var(--bg-tertiary); color: var(--text-primary); }
.drawer__divider { height: 1px; background: var(--border-primary); margin: var(--space-2) var(--space-4); }

/* ═══════════════════════════════════════ */
/* BOTTOM MOBILE NAV                       */
/* ═══════════════════════════════════════ */
.mobile-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 10px;
  width: 20%;
  height: 100%;
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.mobile-nav__item:hover, .mobile-nav__item.active {
  color: var(--accent-primary);
}

.mobile-nav__icon {
  font-size: 20px;
  margin-bottom: 2px;
}

.mobile-nav__item--primary {
  color: var(--accent-primary);
}

.mobile-nav__item--primary .mobile-nav__icon {
  background: var(--accent-primary);
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 2px;
  box-shadow: 0 2px 8px rgba(108, 92, 231, 0.4);
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}


/* ═══════════════════════════════════════ */
/* ANNOUNCEMENT BAR                        */
/* ═══════════════════════════════════════ */
.announcement-bar {
  z-index: 1001;
  min-height: 36px;
  padding: 8px 16px;
  text-align: center;
  font-size: var(--text-sm);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.announcement-bar--info { background: var(--info); }
.announcement-bar--success { background: var(--success); }
.announcement-bar--warning { background: var(--warning); }
.announcement-bar--error { background: var(--error); }

.announcement-bar__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: var(--text-lg);
  opacity: 0.8;
  padding: 0 var(--space-2);
}

.announcement-bar__close:hover { opacity: 1; }

/* ═══════════════════════════════════════ */
/* FOOTER — Master Footer                  */
/* ═══════════════════════════════════════ */
.site-footer {
  background: #0f0f1a;
  color: #cbd5e1;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 0;
  margin-top: var(--space-16);
}

[data-theme="light"] .site-footer {
  background: #1e1b4b;
  color: #c7d2fe;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-4);
  align-items: start;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
}

.site-footer__heading {
  font-size: var(--text-base, 1rem);
  font-weight: var(--font-bold);
  color: #fff;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.site-footer__link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: var(--text-sm);
  padding: 6px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
}

.site-footer__link:hover {
  color: #fff;
  padding-left: 4px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 40px;
  padding: 20px var(--space-4);
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: var(--text-xs);
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
}

/* Footer mobile: stacked columns */
@media (max-width: 767px) {
  .site-footer__grid {
    gap: 0;
  }

  .site-footer__column {
    margin-bottom: 30px;
  }
}

/* ═══════════════════════════════════════ */
/* TOASTS                                  */
/* ═══════════════════════════════════════ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-left: 4px solid var(--info);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 300px;
  max-width: 420px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: slideInRight 0.25s ease;
  pointer-events: all;
}

.toast--success { border-left-color: var(--success); }
.toast--error { border-left-color: var(--error); }
.toast--warning { border-left-color: var(--warning); }
.toast--info { border-left-color: var(--info); }

.toast__icon { flex-shrink: 0; font-size: var(--text-lg); }
.toast__content { flex: 1; min-width: 0; }
.toast__title { font-weight: var(--font-semibold); font-size: var(--text-sm); }
.toast__message { color: var(--text-secondary); font-size: var(--text-sm); margin-top: 2px; }

.toast__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease;
  font-size: var(--text-base);
}

.toast__close:hover { color: var(--text-primary); }

.toast--exit { animation: slideOutRight 0.2s ease forwards; }

/* ═══════════════════════════════════════ */
/* MODAL                                   */
/* ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  animation: fadeIn 0.2s ease;
}

.modal {
  background: var(--bg-modal);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.2s ease;
  border: 1px solid var(--border-primary);
}

.modal--small { max-width: 400px; }
.modal--large { max-width: 760px; }

.modal__header {
  padding: var(--space-4) var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-primary);
}

.modal__title { font-size: var(--text-xl); font-weight: var(--font-bold); }

.modal__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  border-radius: var(--radius-md);
  font-size: var(--text-xl);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.modal__close:hover { color: var(--text-primary); background: var(--bg-tertiary); }

.modal__body { padding: var(--space-6); overflow-y: auto; flex: 1; }

.modal__footer {
  padding: var(--space-4) var(--space-6);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
  border-top: 1px solid var(--border-primary);
}

/* ═══════════════════════════════════════ */
/* AUTH MODAL                              */
/* ═══════════════════════════════════════ */
.auth-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.auth-tab {
  flex: 1;
  padding: var(--space-2) var(--space-4);
  text-align: center;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab--active {
  background: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
}

.auth-form__error {
  background: var(--error-light);
  color: var(--error);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  font-size: var(--text-base);
  padding: 4px;
}

.auth-footer {
  text-align: center;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.auth-footer a { color: var(--accent-primary); font-weight: var(--font-semibold); cursor: pointer; }

/* ═══════════════════════════════════════ */
/* SKELETON                                */
/* ═══════════════════════════════════════ */
.skeleton {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 1.5s infinite;
}

.skeleton-text { height: 16px; margin-bottom: 8px; border-radius: var(--radius-sm); }
.skeleton-title { height: 24px; width: 60%; margin-bottom: 12px; }
.skeleton-card { height: 280px; border-radius: var(--radius-lg); }
.skeleton-avatar { width: 40px; height: 40px; border-radius: var(--radius-full); }
.skeleton-btn { height: 44px; width: 120px; border-radius: var(--radius-md); }

/* ═══════════════════════════════════════ */
/* GROUP CARD                              */
/* ═══════════════════════════════════════ */
.group-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.group-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.group-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99,102,241,0.2);
}

.group-card:hover::before { opacity: 1; }

.group-card__header { display: flex; justify-content: space-between; align-items: center; padding: var(--space-4) var(--space-4) 0; }
.group-card__platform { font-size: var(--text-sm); color: var(--text-secondary); display: flex; align-items: center; gap: var(--space-1); }
.group-card__body { padding: var(--space-3) var(--space-4); flex: 1; }
.group-card__name { font-weight: var(--font-semibold); font-size: var(--text-lg); color: var(--text-primary); margin-bottom: var(--space-1); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.group-card__description { color: var(--text-secondary); font-size: var(--text-sm); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: var(--space-3); }

.group-card__tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: var(--space-3); }
.group-card__tag { background: var(--bg-tertiary); color: var(--text-tertiary); font-size: var(--text-xs); padding: 2px 8px; border-radius: var(--radius-full); }

.group-card__stats { display: flex; gap: 12px; font-size: var(--text-sm); color: var(--text-tertiary); }
.group-card__stat { display: flex; align-items: center; gap: 4px; }

/* ─── Live Stats Bar (Minimalist) ─── */
.group-card__live-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 6px 0 2px;
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.live-stat {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s ease;
  user-select: none;
}

.live-stat:hover {
  color: var(--text-secondary);
}

.live-stat__icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.live-stat:hover .live-stat__icon {
  opacity: 1;
}

.live-stat__count {
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* Heart animation */
.live-stat--likes:hover .live-stat__heart,
.live-stat--active .live-stat__heart {
  color: #c084fc;
  opacity: 1;
}

.live-stat--active .live-stat__heart {
  fill: #c084fc;
  stroke: #c084fc;
}

.live-stat--active .live-stat__count {
  color: #c084fc;
}

.live-stat__heart--pop {
  animation: heartPop 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

@keyframes heartPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.4); }
  60% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

/* Star (rating) highlight */
.live-stat--rating:hover .live-stat__star {
  color: #a78bfa;
  opacity: 1;
}

/* Comments highlight */
.live-stat--comments:hover .live-stat__icon {
  color: var(--accent-primary);
}

/* ─── Live Rating Modal Stars ─── */
.live-rating-modal {
  text-align: center;
  padding: var(--space-4) 0;
}

.live-rating-stars {
  display: inline-flex;
  gap: 8px;
}

.live-rating-star {
  cursor: pointer;
  color: var(--text-tertiary);
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.live-rating-star svg {
  width: 28px;
  height: 28px;
}

.live-rating-star:hover {
  transform: scale(1.2);
  color: #a78bfa;
}

.live-rating-star--filled {
  color: #a78bfa;
}

.live-rating-star--filled svg {
  fill: currentColor;
}

/* Share menu SVG icons */
.share-menu__svg {
  width: 18px;
  height: 18px;
}

.group-card__footer {
  margin-top: auto;
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border-primary);
  display: flex;
  gap: var(--space-2);
}

.group-card__btn-visit { flex: 1; }
.group-card__btn-save { flex-shrink: 0; }

/* ═══════════════════════════════════════ */
/* VIP BADGES                              */
/* ═══════════════════════════════════════ */
.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  white-space: nowrap;
}

.vip-badge--verified { background: var(--success-light); color: var(--success); }
.vip-badge--niche { background: var(--info-light); color: var(--info); }
.vip-badge--global { background: var(--warning-light); color: var(--accent-gold); }
.vip-badge--diamond { background: rgba(185,242,255,0.15); color: var(--accent-diamond); animation: diamondGlow 3s ease infinite; }

/* ═══════════════════════════════════════ */
/* TRUST SCORE                             */
/* ═══════════════════════════════════════ */
.trust-score { display: flex; align-items: center; gap: 8px; }
.trust-score__bar { height: 6px; background: var(--bg-tertiary); border-radius: var(--radius-full); flex: 1; overflow: hidden; }
.trust-score__fill { height: 100%; border-radius: var(--radius-full); transform-origin: left; transition: transform 0.8s ease; }
.trust-score__value { font-weight: var(--font-bold); font-size: var(--text-sm); min-width: 36px; text-align: right; }

/* ═══════════════════════════════════════ */
/* STAR RATING                             */
/* ═══════════════════════════════════════ */
.star-rating { display: flex; gap: 2px; }
.star-rating__star { font-size: var(--text-lg); cursor: default; }
.star-rating__star--filled { color: var(--accent-gold); }
.star-rating__star--empty { color: var(--text-muted); }
.star-rating--interactive .star-rating__star { cursor: pointer; transition: transform 0.1s ease; }
.star-rating--interactive .star-rating__star:hover { transform: scale(1.2); }

/* ═══════════════════════════════════════ */
/* REVIEW CARD                             */
/* ═══════════════════════════════════════ */
.review-card {
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-primary);
}

.review-card:last-child { border-bottom: none; }
.review-card__header { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-2); }
.review-card__avatar { width: 36px; height: 36px; border-radius: var(--radius-full); background: var(--bg-tertiary); display: flex; align-items: center; justify-content: center; font-size: var(--text-sm); flex-shrink: 0; }
.review-card__name { font-weight: var(--font-semibold); font-size: var(--text-sm); }
.review-card__date { font-size: var(--text-xs); color: var(--text-tertiary); }
.review-card__text { color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-relaxed); margin-top: var(--space-2); }

/* ═══════════════════════════════════════ */
/* PAGINATION                              */
/* ═══════════════════════════════════════ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: var(--space-8); }

.pagination__btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-primary);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}

.pagination__btn:hover { background: var(--bg-card-hover); color: var(--text-primary); }
.pagination__btn--active { background: var(--accent-primary); color: #fff; border-color: var(--accent-primary); }
.pagination__btn:disabled { opacity: 0.4; cursor: not-allowed; }
.pagination__ellipsis { padding: 0 8px; color: var(--text-tertiary); }

/* ═══════════════════════════════════════ */
/* TAGS                                    */
/* ═══════════════════════════════════════ */
.tag { background: var(--bg-tertiary); color: var(--text-secondary); font-size: var(--text-xs); padding: 4px 10px; border-radius: var(--radius-full); display: inline-block; }
.tag--category { background: var(--accent-primary-light); color: var(--accent-primary); }
.tag--country { background: var(--success-light); color: var(--success); }
.tag--platform { background: var(--info-light); color: var(--info); }

/* ═══════════════════════════════════════ */
/* EMPTY & ERROR STATES                    */
/* ═══════════════════════════════════════ */
.empty-state { text-align: center; padding: var(--space-16) var(--space-4); }
.empty-state__icon { font-size: var(--text-4xl); margin-bottom: var(--space-4); }
.empty-state__title { font-size: var(--text-xl); font-weight: var(--font-semibold); margin-bottom: var(--space-2); }
.empty-state__text { color: var(--text-secondary); margin-bottom: var(--space-6); max-width: 400px; margin-left: auto; margin-right: auto; }

.error-state { text-align: center; padding: var(--space-16) var(--space-4); }
.error-state__icon { font-size: var(--text-4xl); margin-bottom: var(--space-4); }
.error-state__title { font-size: var(--text-xl); font-weight: var(--font-semibold); margin-bottom: var(--space-2); }
.error-state__text { color: var(--text-secondary); margin-bottom: var(--space-6); }

/* ═══════════════════════════════════════ */
/* ARTICLE CARD                            */
/* ═══════════════════════════════════════ */
.article-card { display: flex; flex-direction: column; }
.article-card__image { height: 180px; background: var(--bg-tertiary); border-radius: var(--radius-lg) var(--radius-lg) 0 0; object-fit: cover; width: 100%; }
.article-card__body { padding: var(--space-4); flex: 1; }
.article-card__title { font-weight: var(--font-semibold); font-size: var(--text-lg); margin-bottom: var(--space-2); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-card__excerpt { color: var(--text-secondary); font-size: var(--text-sm); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: var(--space-3); }
.article-card__meta { display: flex; justify-content: space-between; font-size: var(--text-xs); color: var(--text-tertiary); }

/* ═══════════════════════════════════════ */
/* AD CARD                                 */
/* ═══════════════════════════════════════ */
.ad-card { border: 1px solid var(--border-secondary); border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.ad-card__label { position: absolute; top: var(--space-2); right: var(--space-2); background: var(--bg-tertiary); color: var(--text-muted); font-size: 10px; padding: 2px 6px; border-radius: var(--radius-sm); }
.ad-card__image { width: 100%; height: 120px; object-fit: cover; background: var(--bg-tertiary); }
.ad-card__body { padding: var(--space-3); }
.ad-card__title { font-weight: var(--font-semibold); font-size: var(--text-sm); margin-bottom: var(--space-1); }
.ad-card__desc { color: var(--text-secondary); font-size: var(--text-xs); }

/* ═══════════════════════════════════════ */
/* SECTION HELPERS                         */
/* ═══════════════════════════════════════ */
.section { padding: var(--space-12) 0; }
.section__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-6); }
.section__title { font-size: var(--text-2xl); font-weight: var(--font-bold); }
.section__link { color: var(--accent-primary); font-size: var(--text-sm); font-weight: var(--font-medium); text-decoration: none; }
.section__link:hover { text-decoration: underline; }

/* ═══════════════════════════════════════ */
/* HORIZONTAL SCROLL                       */
/* ═══════════════════════════════════════ */
.hscroll { display: flex; gap: var(--space-4); overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding-bottom: var(--space-2); scrollbar-width: none; }
.hscroll::-webkit-scrollbar { display: none; }
.hscroll > * { scroll-snap-align: start; flex-shrink: 0; width: 300px; }

/* ═══════════════════════════════════════ */
/* FILTER BAR                              */
/* ═══════════════════════════════════════ */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); align-items: flex-end; }
.filter-bar .form-group { margin-bottom: 0; flex: 1; min-width: 150px; }

/* ═══════════════════════════════════════ */
/* STAT CARDS                              */
/* ═══════════════════════════════════════ */
.stat-card { background: var(--bg-card); border: 1px solid var(--border-primary); border-radius: var(--radius-lg); padding: var(--space-4); text-align: center; }
.stat-card__value { font-size: var(--text-3xl); font-weight: var(--font-bold); color: var(--accent-primary); }
.stat-card__label { font-size: var(--text-sm); color: var(--text-secondary); margin-top: var(--space-1); }

/* ═══════════════════════════════════════ */
/* LEADERBOARD                             */
/* ═══════════════════════════════════════ */
.leaderboard-item { display: flex; align-items: center; gap: var(--space-3); padding: var(--space-3) var(--space-4); border-bottom: 1px solid var(--border-primary); transition: background-color 0.15s ease; }
.leaderboard-item:hover { background: var(--bg-card-hover); }
.leaderboard-item--current { border: 1px solid var(--accent-primary); border-radius: var(--radius-md); background: var(--accent-primary-light); }
.leaderboard-item__rank { font-weight: var(--font-bold); min-width: 32px; color: var(--text-tertiary); font-size: var(--text-sm); }
.leaderboard-item__name { flex: 1; font-weight: var(--font-semibold); }
.leaderboard-item__level { font-size: var(--text-sm); color: var(--text-secondary); }
.leaderboard-item__gxp { font-weight: var(--font-bold); color: var(--accent-primary); font-size: var(--text-sm); }

/* ═══════════════════════════════════════ */
/* ACCORDION (FAQ)                         */
/* ═══════════════════════════════════════ */
.accordion-item { border-bottom: 1px solid var(--border-primary); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  cursor: pointer;
  text-align: left;
}

.accordion-trigger::after { content: '+'; font-size: var(--text-xl); color: var(--text-tertiary); transition: transform 0.2s ease; flex-shrink: 0; margin-left: var(--space-4); }
.accordion-trigger[aria-expanded="true"]::after { content: '−'; }

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-content__inner { padding: 0 0 var(--space-4); color: var(--text-secondary); font-size: var(--text-sm); line-height: var(--leading-relaxed); }

/* ═══════════════════════════════════════ */
/* TAG INPUT                               */
/* ═══════════════════════════════════════ */
.tag-input { display: flex; flex-wrap: wrap; gap: var(--space-2); padding: 8px 12px; background: var(--bg-input); border: 1px solid var(--border-primary); border-radius: var(--radius-md); min-height: 44px; align-items: center; cursor: text; }
.tag-input:focus-within { border-color: var(--accent-primary); box-shadow: var(--shadow-glow); }
.tag-input__tag { display: inline-flex; align-items: center; gap: 4px; background: var(--accent-primary-light); color: var(--accent-primary); padding: 2px 8px; border-radius: var(--radius-full); font-size: var(--text-sm); }
.tag-input__remove { background: none; border: none; color: var(--accent-primary); cursor: pointer; font-size: var(--text-sm); padding: 0 2px; }
.tag-input__field { border: none; background: none; outline: none; flex: 1; min-width: 80px; color: var(--text-primary); font-size: var(--text-sm); }

/* ═══════════════════════════════════════ */
/* ADMIN PANEL                             */
/* ═══════════════════════════════════════ */
.admin-tabs { display: flex; flex-wrap: wrap; gap: var(--space-1); border-bottom: 1px solid var(--border-primary); margin-bottom: var(--space-6); padding-bottom: var(--space-1); overflow-x: auto; }

.admin-tab {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-tertiary);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.admin-tab:hover { color: var(--text-primary); }
.admin-tab--active { color: var(--accent-primary); border-bottom-color: var(--accent-primary); }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: var(--space-3) var(--space-4); font-size: var(--text-sm); font-weight: var(--font-semibold); color: var(--text-secondary); border-bottom: 1px solid var(--border-primary); white-space: nowrap; }
.admin-table td { padding: var(--space-3) var(--space-4); font-size: var(--text-sm); border-bottom: 1px solid var(--border-primary); }
.admin-table tr:hover { background: var(--bg-card-hover); }

.admin-table-wrapper { overflow-x: auto; border: 1px solid var(--border-primary); border-radius: var(--radius-lg); }

.admin-status { display: inline-flex; padding: 2px 8px; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: var(--font-semibold); }
.admin-status--pending { background: var(--warning-light); color: var(--warning); }
.admin-status--verified, .admin-status--approved, .admin-status--active { background: var(--success-light); color: var(--success); }
.admin-status--rejected, .admin-status--removed { background: var(--error-light); color: var(--error); }
.admin-status--resolved { background: var(--info-light); color: var(--info); }

/* ═══════════════════════════════════════ */
/* TOGGLE SWITCH                           */
/* ═══════════════════════════════════════ */
.toggle { position: relative; width: 48px; height: 26px; display: inline-block; }
.toggle input { opacity: 0; width: 0; height: 0; }

.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.toggle__slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--text-tertiary);
  border-radius: 50%;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.toggle input:checked + .toggle__slider { background: var(--accent-primary-light); border-color: var(--accent-primary); }
.toggle input:checked + .toggle__slider::before { transform: translateX(22px); background: var(--accent-primary); }

/* ═══════════════════════════════════════ */
/* ANIMATIONS                              */
/* ═══════════════════════════════════════ */
/* ═══════════════════════════════════════ */
/* GROUP PREVIEW MODAL                    */
/* ═══════════════════════════════════════ */
.gpm-preview { text-align: center; padding: var(--space-2) 0; }
.gpm-preview__icon { font-size: 48px; margin-bottom: var(--space-3); }
.gpm-preview__name { font-size: var(--text-xl); font-weight: var(--font-bold); margin-bottom: var(--space-1); }
.gpm-preview__platform { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-4); }
.gpm-preview__badge { margin-bottom: var(--space-4); }
.gpm-preview__desc { font-size: var(--text-sm); color: var(--text-secondary); margin-bottom: var(--space-4); line-height: var(--leading-relaxed); max-height: 60px; overflow: hidden; text-overflow: ellipsis; }
.gpm-preview__stats { display: flex; justify-content: center; gap: var(--space-6); padding: var(--space-4) 0; border-top: 1px solid var(--border-primary); }
.gpm-preview__stat { text-align: center; }
.gpm-preview__stat-value { display: block; font-weight: var(--font-semibold); font-size: var(--text-sm); }
.gpm-preview__stat-label { font-size: var(--text-xs); color: var(--text-tertiary); }
.gpm-preview__confirm { width: 100%; font-size: var(--text-base); padding: var(--space-3) var(--space-6); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; }

.gpm-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: var(--font-semibold); }
.gpm-badge--verified { background: var(--success-light); color: var(--success); }
.gpm-badge--niche { background: var(--info-light); color: var(--info); }
.gpm-badge--global { background: var(--warning-light); color: var(--warning); }
.gpm-badge--diamond { background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.15)); color: #8b5cf6; }
.gpm-badge--default { background: var(--bg-tertiary); color: var(--text-secondary); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOutRight { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(100%); } }
@keyframes scaleUp { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes diamondGlow { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════ */
/* GLASSMORPHISM & PREMIUM UTILITIES       */
/* ═══════════════════════════════════════ */
.glass {
  background: rgba(22, 22, 31, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="light"] .glass {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.glass-card {
  background: rgba(22, 22, 31, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="light"] .glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.glass-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.premium-gradient, .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-border {
  border-image: linear-gradient(135deg, #6366F1, #8B5CF6) 1;
}

.premium-glow {
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.2), 0 0 30px rgba(99, 102, 241, 0.06);
}

/* Fuel the Community glow animation */
@keyframes fuelGlow {
  0%, 80%, 100% { box-shadow: 0 0 6px rgba(99, 102, 241, 0.18), 0 0 16px rgba(99, 102, 241, 0.06); }
  90% { box-shadow: 0 0 12px rgba(99, 102, 241, 0.3), 0 0 28px rgba(139, 92, 246, 0.1); }
}

.fuel-mini-card {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.10));
  border: 1px solid rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  color: #c7d2fe;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease;
  animation: fuelGlow 5s ease-in-out infinite;
}

.fuel-mini-card:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(99, 102, 241, 0.5);
  color: #e0e7ff;
}

.fuel-mini-card__icon {
  font-size: var(--text-lg);
  line-height: 1;
}

[data-theme="light"] .fuel-mini-card {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.06));
  color: #4338ca;
}

[data-theme="light"] .fuel-mini-card:hover {
  color: #3730a3;
}

/* ═══════════════════════════════════════ */
/* SECTION BADGES & HEADERS (Premium)     */
/* ═══════════════════════════════════════ */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-primary-light);
  color: var(--accent-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-12);
}

.section-header-centered .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.section-header-centered .section-description {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════ */
/* FEATURE CARDS (Premium)                */
/* ═══════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-10);
  border: 1px solid var(--border-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99,102,241,0.2);
}

.feature-card:hover::before { opacity: 1; }

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.feature-card__description {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  font-size: var(--text-base);
}

/* ═══════════════════════════════════════ */
/* ANIMATE ON SCROLL                      */
/* ═══════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-container {
  padding-top: var(--space-6);
  padding-bottom: var(--space-10);
}

.content-wrapper {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.page-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

/* ═══════════════════════════════════════ */
/* HOMEPAGE PREVIEW SECTIONS               */
/* (Marketplace, Jobs, Store previews)     */
/* ═══════════════════════════════════════ */

/* ── Quick Access Bar (Facebook-style compact row) ── */
.quick-access-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  margin-top: var(--space-3);
  padding: var(--space-1) 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quick-access-bar::-webkit-scrollbar {
  display: none;
}

.quick-access__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: var(--space-2) var(--space-3);
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: var(--font-medium);
  transition: all 0.2s ease;
  flex-shrink: 0;
  min-width: 64px;
}

.quick-access__card:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.quick-access__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  transition: all 0.2s ease;
}

.quick-access__card:hover .quick-access__icon {
  transform: scale(1.08);
}

.quick-access__icon svg {
  width: 20px;
  height: 20px;
}

.quick-access__label {
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}

/* ── Preview Section shared layout ── */
.preview-section {
  margin-top: 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

@media (max-width: 1023px) {
  .preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 639px) {
  .preview-grid { grid-template-columns: 1fr; }
}

/* ── Marketplace Preview Card ── */
.mp-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--text-primary);
}

.mp-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.2);
}

.mp-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg-tertiary);
}

.mp-card__img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent-primary-light), var(--bg-tertiary));
  color: var(--accent-primary);
}

.mp-card__body {
  padding: var(--space-3) var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mp-card__type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mp-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mp-card__price {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--success);
}

.mp-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  margin-top: auto;
  padding-top: var(--space-2);
}

/* ── Jobs Preview Card ── */
.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--text-primary);
}

.job-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.2);
}

.job-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2);
}

.job-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card__badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  white-space: nowrap;
  flex-shrink: 0;
}

.job-card__badge--remote {
  background: var(--success-light);
  color: var(--success);
}

.job-card__badge--onsite {
  background: var(--info-light);
  color: var(--info);
}

.job-card__badge--hybrid {
  background: var(--warning-light);
  color: var(--warning);
}

.job-card__company {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.job-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-tertiary);
}

.job-card__detail {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.job-card__detail svg {
  width: 14px;
  height: 14px;
}

/* ── Store Preview Card ── */
.store-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--text-primary);
}

.store-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.2);
}

.store-card__img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: var(--bg-tertiary);
}

.store-card__img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--accent-primary-light), var(--bg-tertiary));
  color: var(--accent-primary);
}

.store-card__body {
  padding: var(--space-3) var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.store-card__category {
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.store-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-card__price {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--success);
}

.store-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  color: var(--accent-gold);
}

/* ── Marketplace Preview Card (homepage) ── */
.mp-card__image {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--accent-primary-light), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  opacity: 0.5;
}

.mp-card__image-placeholder svg {
  width: 40px;
  height: 40px;
}

.mp-card__type-badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
}

.mp-card__type-badge svg {
  width: 12px;
  height: 12px;
}

/* ── Jobs Preview Card (homepage) ── */
.job-prev-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--text-primary);
}

.job-prev-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.2);
}

.job-prev-card__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.job-prev__cat {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  background: var(--accent-primary-light);
  color: var(--accent-primary);
}

.job-prev__badge {
  display: inline-flex;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: var(--font-semibold);
  white-space: nowrap;
}

.job-prev__badge--remote {
  background: var(--success-light);
  color: var(--success);
}

.job-prev__badge--onsite {
  background: var(--info-light);
  color: var(--info);
}

.job-prev__badge--hybrid {
  background: var(--warning-light);
  color: var(--warning);
}

.job-prev__featured {
  font-size: 10px;
  font-weight: var(--font-semibold);
  color: var(--accent-gold);
}

.job-prev-card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  flex: 1;
}

.job-prev-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-prev-card__company {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.job-prev-card__salary {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--success);
}

.job-prev-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.job-prev__time {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
}

/* ── Store Preview Card (homepage) ── */
.store-prev-card {
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: var(--text-primary);
}

.store-prev-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.2);
}

.store-prev-card__image {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, var(--accent-primary-light), var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.store-prev-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-prev__placeholder {
  font-size: 3rem;
  opacity: 0.6;
}

.store-prev__badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
}

.store-prev-card__body {
  padding: var(--space-3) var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.store-prev-card__title {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-prev-card__desc {
  font-size: var(--text-sm);
  color: var(--text-tertiary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-prev-card__footer {
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-primary);
}

.store-prev__price {
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--success);
}

.store-prev__buy {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--accent-primary);
}

.store-prev__buy svg {
  width: 14px;
  height: 14px;
}

/* ── Section CTA link (See all →) ── */
.home-section__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-primary-light);
  color: var(--accent-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-section__cta:hover {
  background: var(--accent-primary);
  color: #fff;
  transform: translateX(2px);
}

/* ═══════════════════════════════════════ */
/* RESPONSIVE                              */
/* ═══════════════════════════════════════ */
@media (max-width: 767px) {
  h1 { font-size: var(--text-2xl); }
  h2 { font-size: var(--text-xl); }
  .site-header { height: 48px; }
  .subnav { top: 48px; height: 38px; }
  body { padding-top: 86px; } /* 48px header + 38px subnav */
  .site-header__logo-text { display: none; }
  .site-header__logo { gap: var(--space-1); }
  .site-header__logo-icon { width: 30px; height: 30px; border-radius: 8px; }
  .magic-plus-btn { width: 32px; height: 32px; }
  .subnav__item { padding: 0 var(--space-3); font-size: var(--text-xs); }
  /* Quick access bar: compact row on mobile */
  .quick-access-bar { justify-content: flex-start; gap: 0; padding: var(--space-1) 0; }
  .quick-access__card { padding: var(--space-1) var(--space-2); min-width: 56px; font-size: 10px; }
  .quick-access__icon { width: 36px; height: 36px; }
  .quick-access__icon svg { width: 18px; height: 18px; }
  /* Preview grid: single column on mobile */
  .preview-grid { grid-template-columns: 1fr; }
  /* Hide user name on mobile, keep avatar + bell */
  .header-user-link__name { display: none !important; }
  .header-user-link { gap: var(--space-1); padding: 2px 4px; }
  .header-avatar { width: 28px; height: 28px; }
  .header-notification__btn { width: 32px; height: 32px; }
  .site-header__hamburger { width: 34px; height: 34px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .toast-container { bottom: 16px; left: 16px; right: 16px; }
  .toast { min-width: auto; animation: slideUp 0.25s ease; }
  .toast--exit { animation: fadeOut 0.2s ease forwards; }
  .hscroll > * { width: 260px; }
  .filter-bar { flex-direction: column; }
  .filter-bar .form-group { min-width: 100%; }
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  body { padding-top: 94px; } /* 52px header + 42px subnav */
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: repeat(4, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════════════ */
/* COOKIE CONSENT BANNER                   */
/* ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: var(--bg-card);
  border-top: 1px solid var(--border-primary);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: slideUp 0.3s ease;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.cookie-banner__text a {
  color: var(--accent-primary);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-2);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-4);
    bottom: 60px; /* above mobile nav */
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════ */
/* INTERACTION TOOLBAR                     */
/* ═══════════════════════════════════════ */
.ix-toolbar {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  border-top: 1px solid var(--border-primary);
}

.ix-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 6px 8px;
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.15s ease, transform 0.15s ease;
  font-size: var(--text-sm);
  position: relative;
}

.ix-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.ix-btn:active {
  transform: scale(0.92);
}

.ix-btn--like.ix-btn--active {
  color: var(--success);
}

.ix-btn--dislike.ix-btn--active {
  color: var(--error);
}

.ix-btn--save.ix-btn--active {
  color: var(--accent-gold);
}

.ix-btn--comment:hover {
  color: var(--info);
}

.ix-btn--share:hover {
  color: var(--accent-primary);
}

.ix-count {
  font-size: var(--text-xs);
  color: var(--text-tertiary);
  min-width: 12px;
}

.ix-count:empty {
  display: none;
}

/* Group card adjustments for toolbar */
.group-card {
  display: flex;
  flex-direction: column;
}

.group-card .ix-toolbar {
  margin-top: auto;
}

/* Article card wrapper for toolbar */
.article-card-wrapper {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-card-wrapper:hover {
  border-color: var(--border-secondary);
  box-shadow: var(--shadow-sm);
}

.article-card-wrapper .article-card {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* ═══════════════════════════════════════ */
/* COMMENTS PANEL                          */
/* ═══════════════════════════════════════ */
.comments-panel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  justify-content: flex-end;
  animation: fadeIn 0.2s ease;
}

.comments-panel {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.comments-panel--sidebar {
  width: 420px;
  max-width: 90vw;
  height: 100%;
  border-left: 1px solid var(--border-primary);
  animation: slideInRight 0.3s ease;
}

.comments-panel--bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 80vh;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  animation: slideUp 0.3s ease;
}

.comments-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  border-bottom: 1px solid var(--border-primary);
  flex-shrink: 0;
}

.comments-panel__title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.comments-panel__close {
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-size: var(--text-lg);
  cursor: pointer;
  padding: var(--space-1);
  border-radius: var(--radius-md);
  transition: background 0.15s ease;
}

.comments-panel__close:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.comments-panel__list {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.comments-panel__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-6);
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

.comments-panel__empty {
  text-align: center;
  padding: var(--space-6);
  color: var(--text-tertiary);
  font-size: var(--text-sm);
}

.comments-panel__input {
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--border-primary);
  flex-shrink: 0;
}

.comments-panel__input-row {
  display: flex;
  gap: var(--space-2);
  align-items: flex-end;
}

.comments-panel__textarea {
  flex: 1;
  resize: none;
  min-height: 40px;
  max-height: 120px;
  font-size: var(--text-sm);
}

.comments-panel__submit {
  flex-shrink: 0;
  height: 40px;
}

.comments-panel__char-count {
  text-align: right;
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 4px;
}

/* Comment Item */
.comment-item {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-3);
  border-radius: var(--radius-md);
  transition: background 0.15s ease;
}

.comment-item:hover {
  background: var(--bg-tertiary);
}

.comment-item__avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--accent-primary-light);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.comment-item__body {
  flex: 1;
  min-width: 0;
}

.comment-item__header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 4px;
}

.comment-item__name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.comment-item__date {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.comment-item__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  word-break: break-word;
}

.comment-item__report {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  font-size: var(--text-xs);
  opacity: 0;
  transition: opacity 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
  align-self: flex-start;
}

.comment-item:hover .comment-item__report {
  opacity: 1;
}

.comment-item__report:hover {
  color: var(--error);
}

/* ═══════════════════════════════════════ */
/* SHARE MENU                              */
/* ═══════════════════════════════════════ */
.share-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.share-menu__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background 0.15s ease;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border-primary);
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.share-menu__item:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-secondary);
}

.share-menu__icon {
  font-size: var(--text-lg);
  width: 28px;
  text-align: center;
}

/* ═══════════════════════════════════════ */
/* SAVED LIBRARY PAGE                      */
/* ═══════════════════════════════════════ */
.saved-tabs {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-primary);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.saved-tab {
  padding: var(--space-3) var(--space-4);
  border: none;
  background: none;
  color: var(--text-tertiary);
  font-size: var(--text-sm);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.saved-tab:hover {
  color: var(--text-secondary);
}

.saved-tab--active {
  color: var(--accent-primary);
  border-bottom-color: var(--accent-primary);
}

/* ═══════════════════════════════════════ */
/* ROLE BADGES — RBAC Visual System       */
/* ═══════════════════════════════════════ */
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  line-height: 1.4;
  white-space: nowrap;
  vertical-align: middle;
}

.role-badge--admin {
  background: rgba(98, 0, 234, 0.15);
  color: #6200ea;
  border: 1px solid rgba(98, 0, 234, 0.3);
  font-weight: var(--font-bold);
}

[data-theme="dark"] .role-badge--admin,
:root .role-badge--admin {
  background: rgba(98, 0, 234, 0.2);
  color: #b388ff;
  border-color: rgba(98, 0, 234, 0.4);
}

[data-theme="light"] .role-badge--admin {
  background: rgba(98, 0, 234, 0.1);
  color: #6200ea;
  border-color: rgba(98, 0, 234, 0.25);
}

.role-badge--moderator {
  background: rgba(116, 185, 255, 0.15);
  color: var(--info);
  border: 1px solid rgba(116, 185, 255, 0.3);
}

.role-badge--editor {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.role-badge--user {
  background: transparent;
  color: var(--text-tertiary);
  border: 1px solid var(--border-primary);
}

/* ═══════════════════════════════════════ */
/* SVG ICON SYSTEM                         */
/* ═══════════════════════════════════════ */
.svg-icon {
  display: inline-block;
  vertical-align: -0.125em;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.svg-icon--sm { width: 0.875em; height: 0.875em; }
.svg-icon--lg { width: 1.25em; height: 1.25em; }
.svg-icon--xl { width: 1.5em; height: 1.5em; }

/* Platform brand colors (default state) */
.svg-icon--whatsapp { color: #25D366; }
.svg-icon--whatsapp-channel { color: #25D366; }
.svg-icon--telegram { color: #0088cc; }
.svg-icon--telegram-channel { color: #0088cc; }
.svg-icon--discord { color: #5865F2; }
.svg-icon--facebook { color: #1877F2; }

/* Purple hover effect on platform icons (#6200ea) */
.hero__platform-btn:hover .svg-icon,
.browse-ribbon__chip:hover .svg-icon,
.group-card:hover .group-card__platform .svg-icon,
.quick-access__card:hover .svg-icon,
.drawer__item:hover .svg-icon,
.user-dropdown__item:hover .svg-icon {
  color: #6200ea;
}

/* Section title icons inherit accent color */
.home-section__title .svg-icon {
  color: var(--accent-primary);
}

/* Stats bar icon sizing */
.stats-bar__icon .svg-icon {
  width: 1.2em;
  height: 1.2em;
}

/* Animations */
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
