/* ═══════════════════════════════════════════════════════════════════════════
   NANAJUNG MEMBER DASHBOARD - Gaming Theme
   Professional gaming-inspired dark theme with neon accents
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Variables
   ───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Background Colors */
  --bg-primary: #0a0e1a;
  --bg-secondary: #0f1629;
  --bg-card: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(10, 14, 26, 0.95));
  --bg-card-hover: linear-gradient(145deg, rgba(20, 30, 50, 0.95), rgba(15, 20, 35, 0.98));
  --bg-glass: rgba(15, 23, 42, 0.7);

  /* Accent Colors - Gaming Neon */
  --accent-primary: #00d4ff;      /* Cyan */
  --accent-secondary: #7c3aed;    /* Purple */
  --accent-tertiary: #f472b6;     /* Pink */
  --accent-gold: #fbbf24;         /* Gold for ranks */
  --accent-green: #10b981;        /* Success/Online */
  --accent-red: #ef4444;          /* Error/Danger */

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #f472b6 100%);
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --gradient-card: linear-gradient(145deg, rgba(0, 212, 255, 0.08), rgba(124, 58, 237, 0.08));

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  /* Borders */
  --border-subtle: rgba(148, 163, 184, 0.15);
  --border-accent: rgba(0, 212, 255, 0.3);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(0, 212, 255, 0.2);
  --shadow-glow-purple: 0 0 30px rgba(124, 58, 237, 0.2);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* Layout */
  --max-width: 1400px;
  --header-height: 64px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(244, 114, 182, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-tertiary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Header
   ───────────────────────────────────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--header-height);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
}

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

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

.nav-link.active {
  color: var(--accent-primary);
  background: rgba(0, 212, 255, 0.1);
}

.header-profile {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.profile-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.profile-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-accent);
}

.profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Main Layout
   ───────────────────────────────────────────────────────────────────────────── */
.main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   Cards
   ───────────────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow);
}

.card-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.card-title-icon {
  font-size: 1.1rem;
}

.card-body {
  padding: var(--space-lg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Profile Hero Section
   ───────────────────────────────────────────────────────────────────────────── */
.profile-hero {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.profile-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--gradient-primary);
  opacity: 0.15;
}

.profile-hero-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
}

.profile-hero-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gradient-primary);
  padding: 3px;
  flex-shrink: 0;
}

.profile-hero-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  overflow: hidden;
}

.profile-hero-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-hero-info {
  flex: 1;
  padding-top: var(--space-sm);
}

.profile-hero-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-badge.tiktok {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(254, 44, 85, 0.5);
  color: #fe2c55;
}

.platform-badge.local {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
  color: var(--accent-green);
}

.profile-hero-username {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.profile-hero-level {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--gradient-gold);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a1a;
}

.profile-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-left: auto;
  padding-top: var(--space-sm);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Store Selector
   ───────────────────────────────────────────────────────────────────────────── */
.store-selector {
  margin-bottom: var(--space-xl);
}

.store-selector-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.store-tabs {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.store-tab {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.store-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.store-tab.active {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
}

.store-tab-all {
  background: var(--gradient-primary);
  color: #0a0e1a;
  border: none;
}

.store-tab-all:hover {
  opacity: 0.9;
  color: #0a0e1a;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Points Overview
   ───────────────────────────────────────────────────────────────────────────── */
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

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

.point-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.point-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.point-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.point-card.current::before {
  background: var(--accent-primary);
}

.point-card.lifetime::before {
  background: var(--gradient-gold);
}

.point-card.monthly::before {
  background: var(--accent-tertiary);
}

.point-card-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.point-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.point-card.current .point-card-value {
  background: linear-gradient(135deg, var(--accent-primary), #00a8cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.point-card.lifetime .point-card-value {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.point-card.monthly .point-card-value {
  background: linear-gradient(135deg, var(--accent-tertiary), #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.point-card-change {
  font-size: 0.75rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.point-card-change.down {
  color: var(--accent-red);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Leaderboard
   ───────────────────────────────────────────────────────────────────────────── */
.leaderboard-tabs {
  display: flex;
  gap: var(--space-xs);
  padding: var(--space-sm);
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.leaderboard-tab {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

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

.leaderboard-tab.active {
  color: var(--text-primary);
  background: rgba(0, 212, 255, 0.15);
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.leaderboard-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.leaderboard-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.leaderboard-item.highlight {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.leaderboard-rank {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

.leaderboard-rank.gold {
  background: var(--gradient-gold);
  color: #1a1a1a;
}

.leaderboard-rank.silver {
  background: linear-gradient(135deg, #e5e7eb, #9ca3af);
  color: #1a1a1a;
}

.leaderboard-rank.bronze {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #1a1a1a;
}

.leaderboard-user {
  flex: 1;
  min-width: 0;
}

.leaderboard-user-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leaderboard-user-platform {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.leaderboard-points {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-primary);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Activity Feed
   ───────────────────────────────────────────────────────────────────────────── */
.activity-list {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: rgba(0, 212, 255, 0.15);
}

.activity-icon.join {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

.activity-icon.win {
  background: rgba(251, 191, 36, 0.15);
  color: var(--accent-gold);
}

.activity-icon.survive {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent-primary);
}

.activity-content {
  flex: 1;
  min-width: 0;
}

.activity-title {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.activity-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.activity-points {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-green);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Sidebar
   ───────────────────────────────────────────────────────────────────────────── */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Quick Stats */
.quick-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.quick-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.quick-stat:last-child {
  border-bottom: none;
}

.quick-stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.quick-stat-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Tenant Dashboard Link */
.tenant-link-card {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.15), rgba(244, 114, 182, 0.1));
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.tenant-link-card:hover {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: var(--shadow-glow-purple);
}

.tenant-link-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, var(--accent-secondary), var(--accent-tertiary));
  border-radius: var(--radius-md);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.tenant-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  color: white;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #0a0e1a;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Loading & States
   ───────────────────────────────────────────────────────────────────────────── */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

.empty-state {
  text-align: center;
  padding: var(--space-2xl);
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.empty-state-text {
  font-size: 0.875rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Login Required State
   ───────────────────────────────────────────────────────────────────────────── */
.login-required {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height) - 100px);
  text-align: center;
  padding: var(--space-2xl);
}

.login-required-icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
  opacity: 0.8;
}

.login-required h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.login-required p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 400px;
}

.login-required .btn {
  padding: var(--space-md) var(--space-xl);
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .profile-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-hero-actions {
    margin: var(--space-md) 0 0;
  }

  .points-grid {
    grid-template-columns: 1fr;
  }

  .leaderboard-tabs {
    flex-wrap: wrap;
  }

  .leaderboard-tab {
    flex: none;
    min-width: calc(50% - var(--space-xs));
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Animations
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease forwards;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.animate-pulse {
  animation: pulse 2s infinite;
}
