/**
 * VisaFast - Unified Theme CSS
 * Dark Theme with Green Accent
 *
 * This consolidates all common styles from the embedded <style> blocks.
 * All pages use this dark theme - no light theme needed.
 */

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */

:root {
  /* Background Colors - Dark Theme */
  --bg-primary: #000000;
  --bg-secondary: #050505;
  --bg-elevated: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --bg-input: rgba(255, 255, 255, 0.03);

  /* Surface/Overlay Colors */
  --surface-overlay: rgba(0, 0, 0, 0.8);
  --surface-glass: rgba(255, 255, 255, 0.02);
  --surface-glass-strong: rgba(255, 255, 255, 0.05);

  /* Text Colors */
  --text-primary: #fafafa;
  --text-secondary: #a1a1a1;
  --text-muted: #525252;
  --text-disabled: rgba(255, 255, 255, 0.3);

  /* Primary Accent - Green */
  --accent-primary: #00E5A0;
  --accent-secondary: #00d4aa;
  --accent-tertiary: #00D4FF;
  --accent-glow: rgba(0, 229, 160, 0.25);
  --accent-glow-strong: rgba(0, 229, 160, 0.4);
  --accent-bg: rgba(0, 229, 160, 0.1);
  --accent-bg-strong: rgba(0, 229, 160, 0.2);
  --accent-border: rgba(0, 229, 160, 0.3);

  /* Status Colors */
  --status-success-bg: rgba(0, 212, 170, 0.15);
  --status-success-text: #00d4aa;
  --status-success-border: rgba(0, 212, 170, 0.3);

  --status-warning-bg: rgba(245, 158, 11, 0.15);
  --status-warning-text: #f59e0b;
  --status-warning-border: rgba(245, 158, 11, 0.3);
  --status-warning-glow: rgba(245, 158, 11, 0.15);

  --status-error-bg: rgba(239, 68, 68, 0.1);
  --status-error-text: #ef4444;
  --status-error-border: rgba(239, 68, 68, 0.3);

  --status-info-bg: rgba(59, 130, 246, 0.15);
  --status-info-text: #3b82f6;
  --status-info-border: rgba(59, 130, 246, 0.3);

  /* Border Colors */
  --border-default: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.1);
  --border-focus: var(--accent-primary);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.875rem;   /* 30px */
  --text-4xl: 2.25rem;    /* 36px */
  --text-5xl: 3rem;       /* 48px */
  --text-6xl: 3.75rem;    /* 60px */

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-black: 900;

  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Spacing */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.25rem;  /* 20px */
  --space-6: 1.5rem;   /* 24px */
  --space-8: 2rem;     /* 32px */
  --space-10: 2.5rem;  /* 40px */
  --space-12: 3rem;    /* 48px */
  --space-16: 4rem;    /* 64px */
  --space-20: 5rem;    /* 80px */

  /* Border Radius */
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.5rem;    /* 8px */
  --radius-lg: 0.75rem;   /* 12px */
  --radius-xl: 1rem;      /* 16px */
  --radius-2xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --shadow-glow-strong: 0 0 60px var(--accent-glow-strong);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Z-Index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 200;
}

/* ========================================
   BASE STYLES
   ======================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  min-height: 100vh;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

h1 { font-size: var(--text-5xl); font-weight: var(--font-black); letter-spacing: -0.03em; }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

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

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

/* ========================================
   GRADIENT TEXT
   ======================================== */

.gradient-text {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: 1;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--bg-primary);
  font-weight: var(--font-bold);
}

.btn-primary:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

.btn-full {
  width: 100%;
}

.btn-pill {
  border-radius: var(--radius-full);
}

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
}

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

/* Pulse animation for CTAs */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 229, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 229, 160, 0); }
}

.btn-pulse {
  animation: pulse-ring 2s infinite;
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all var(--transition-base);
}

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

.card-elevated {
  box-shadow: var(--shadow-md);
}

.card-glass {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
}

/* ========================================
   INPUTS
   ======================================== */

.input,
.input-field,
.select-field,
textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-primary);
  background-color: var(--bg-input);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.input:focus,
.input-field:focus,
.select-field:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.input::placeholder,
.input-field::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

/* Select dropdown arrow */
.select-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239CA3AF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

/* ========================================
   STATUS BADGES
   ======================================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  border-radius: var(--radius-full);
}

.badge-success {
  background-color: var(--status-success-bg);
  color: var(--status-success-text);
}

.badge-warning {
  background-color: var(--status-warning-bg);
  color: var(--status-warning-text);
}

.badge-error {
  background-color: var(--status-error-bg);
  color: var(--status-error-text);
}

.badge-info {
  background-color: var(--status-info-bg);
  color: var(--status-info-text);
}

/* ========================================
   STATUS DOTS
   ======================================== */

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.status-dot-active {
  background-color: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-glow-strong);
  animation: status-pulse 2s ease-in-out infinite;
}

.status-dot-inactive {
  background-color: var(--text-muted);
}

.status-dot-warning {
  background-color: var(--status-warning-text);
  box-shadow: 0 0 12px var(--status-warning-glow);
  animation: status-pulse 2s ease-in-out infinite;
}

.status-dot-error {
  background-color: var(--status-error-text);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

@keyframes status-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

@keyframes glowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-spinner-sm {
  width: 16px;
  height: 16px;
}

.loading-spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 3px;
}

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

/* ========================================
   TABLES
   ======================================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-default);
}

.data-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-default);
}

.data-table tr {
  transition: background-color var(--transition-fast);
}

.data-table tbody tr:hover {
  background-color: var(--bg-card-hover);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* ========================================
   MODALS
   ======================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: var(--surface-overlay);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal-backdrop);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-2xl);
  width: 90%;
  max-width: 500px;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-content.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */

.toast-container {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transform: translateX(120%);
  transition: transform var(--transition-base);
}

.toast.show {
  transform: translateX(0);
}

.toast-success {
  border-color: var(--status-success-border);
  background: linear-gradient(135deg, var(--status-success-bg) 0%, var(--bg-card) 100%);
}

.toast-error {
  border-color: var(--status-error-border);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Text colors */
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-primary { color: var(--text-primary); }
.text-accent { color: var(--accent-primary); }
.text-success { color: var(--status-success-text); }
.text-warning { color: var(--status-warning-text); }
.text-error { color: var(--status-error-text); }

/* Font weights */
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

/* Display */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Flexbox */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }

/* Spacing */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }

/* Sizes */
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Border */
.rounded { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-xl { border-radius: var(--radius-xl); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Cursor */
.pointer-events-none { pointer-events: none; }

/* ========================================
   SCROLLBAR
   ======================================== */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-hover);
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  body {
    background: white;
    color: black;
  }

  .no-print {
    display: none;
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--accent-primary);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   ADDITIONAL UTILITY CLASSES
   ======================================== */

/* Min height utilities */
.min-h-screen { min-height: 100vh; }

/* Width utilities */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }

/* Height utilities */
.h-auto { height: auto; }
.h-fit { height: fit-content; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }

/* Max width utilities */
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* Flex utilities */
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow-0 { flex-grow: 0; }

/* Gap utilities extended */
.gap-1 { gap: var(--space-1); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }

/* Space between (for flex/grid children) */
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-2); }
.space-x-3 > :not([hidden]) ~ :not([hidden]) { margin-left: var(--space-3); }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-2); }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-3); }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-4); }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-6); }

/* Padding extended */
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }

/* Margin extended */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-1 { margin-bottom: var(--space-1); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

/* Border radius extended */
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }

/* Text size extended */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }

/* Font family */
.font-mono { font-family: var(--font-mono); }
.font-sans { font-family: var(--font-sans); }
.font-display { font-family: var(--font-display); }

/* Text decoration */
.line-through { text-decoration: line-through; }
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Text transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* Letter spacing */
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Line height */
.leading-none { line-height: var(--leading-none); }
.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }

/* Display */
.inline { display: inline; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

/* Position utilities */
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.top-1\/2 { top: 50%; }
.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Translate */
.translate-x-0 { transform: translateX(0); }
.translate-y-0 { transform: translateY(0); }
.-translate-x-full { transform: translateX(-100%); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-2 { transform: translateY(0.5rem); }
.translate-x-1\/2 { transform: translateX(50%); }

/* Scale */
.scale-0 { transform: scale(0); }
.scale-1 { transform: scale(1); }
.scale-95 { transform: scale(0.95); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-125 { transform: scale(1.25); }
.scale-150 { transform: scale(1.5); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-100 { opacity: 1; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Backdrop blur */
.backdrop-blur { backdrop-filter: blur(4px); }
.backdrop-blur-xl { backdrop-filter: blur(12px); }

/* Pointer events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Border */
.border { border: 1px solid var(--border-default); }
.border-t { border-top: 1px solid var(--border-default); }
.border-b { border-bottom: 1px solid var(--border-default); }
.border-l { border-left: 1px solid var(--border-default); }
.border-r { border-right: 1px solid var(--border-default); }

/* Animation utilities */
.animate-pulse { animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

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

/* Table */
.table-auto { table-layout: auto; }
.table-fixed { table-layout: fixed; }

/* Aspect ratio */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* Transform origin */
.origin-center { transform-origin: center; }
.origin-top { transform-origin: top; }
.origin-bottom { transform-origin: bottom; }

/* Transition */
.transition-all { transition: all var(--transition-base); }
.transition-colors { transition: color var(--transition-base), background-color var(--transition-base), border-color var(--transition-base); }
.transition-opacity { transition: opacity var(--transition-base); }
.transition-transform { transition: transform var(--transition-base); }

/* Duration */
.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

/* Ease */
.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Stroke */
.stroke-2 { stroke-width: 2; }
.stroke-3 { stroke-width: 3; }

/* Fill */
.fill-none { fill: none; }
.fill-current { fill: currentColor; }

/* Select */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* Visibility */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Whitespace */
.whitespace-nowrap { white-space: nowrap; }
.whitespace-normal { white-space: normal; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.whitespace-pre-line { white-space: pre-line; }

/* Word break */
.break-normal { overflow-wrap: normal; word-break: normal; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* Cursor */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }

/* Touch action */
.touch-none { touch-action: none; }
.touch-auto { touch-action: auto; }

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-center { justify-content: center; }
  .md\:gap-4 { gap: var(--space-4); }
  .md\:gap-6 { gap: var(--space-6); }
  .md\:gap-8 { gap: var(--space-8); }
  .md\:p-6 { padding: var(--space-6); }
  .md\:p-8 { padding: var(--space-8); }
  .md\:p-12 { padding: var(--space-12); }
  .md\:py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
  .md\:py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
  .md\:px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
  .md\:text-2xl { font-size: var(--text-2xl); }
  .md\:text-3xl { font-size: var(--text-3xl); }
  .md\:text-4xl { font-size: var(--text-4xl); }
  .md\:text-5xl { font-size: var(--text-5xl); }
  .md\:w-20 { width: 5rem; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:h-20 { height: 5rem; }
  .md\:h-auto { height: auto; }
  .md\:min-h-screen { min-height: 100vh; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-md { max-width: 28rem; }
  .md\:rounded-2xl { border-radius: var(--radius-2xl); }
  .md\:rounded-3xl { border-radius: 1.5rem; }
  .md\:sticky { position: sticky; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:gap-4 { gap: var(--space-4); }
  .lg\:gap-6 { gap: var(--space-6); }
  .lg\:gap-8 { gap: var(--space-8); }
  .lg\:gap-16 { gap: var(--space-16); }
  .lg\:p-6 { padding: var(--space-6); }
  .lg\:p-8 { padding: var(--space-8); }
  .lg\:p-12 { padding: var(--space-12); }
  .lg\:py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
  .lg\:py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
  .lg\:text-2xl { font-size: var(--text-2xl); }
  .lg\:text-3xl { font-size: var(--text-3xl); }
  .lg\:w-12 { width: 3rem; }
  .lg\:w-20 { width: 5rem; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:sticky { position: sticky; }
  .lg\:top-6 { top: 1.5rem; }
}

/* ========================================
   ARBITRARY VALUES (for specific inline needs)
   ======================================== */

.w-\[600px\] { width: 600px; }
.h-\[600px\] { height: 600px; }
.min-h-\[calc\(100vh-64px\)\] { min-height: calc(100vh - 64px); }
.min-h-\[70vh\] { min-height: 70vh; }
.rounded-\[150px\] { border-radius: 150px; }
.blur-\[150px\] { filter: blur(150px); }
.w-\[200px\] { width: 200px; }
.h-\[200px\] { height: 200px; }
.w-\[100px\] { width: 100px; }
.h-\[100px\] { height: 100px; }
.w-\[56px\] { width: 56px; }
.h-\[56px\] { height: 56px; }
.w-\[64px\] { width: 64px; }
.h-\[64px\] { height: 64px; }
.w-\[300px\] { width: 300px; }
.h-\[300px\] { height: 300px; }
.max-w-\[500px\] { max-width: 500px; }

/* Space negative (for stacking avatars) */
.-space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: calc(-0.5rem * -1); }

/* Inline flex spacing */
.inline-flex { display: inline-flex; }

/* Colors for specific elements */
.text-yellow-400 { color: #facc15; }
.fill-yellow-400 { fill: #facc15; }

/* Decoration styles */
.decoration-red-500\/50 { text-decoration-color: rgba(239, 68, 68, 0.5); }

/* Background gradient utilities */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }

.from-blue-400 { --tw-gradient-from: #60a5fa; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0)); }
.from-purple-400 { --tw-gradient-from: #c084fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(192, 132, 252, 0)); }
.from-pink-400 { --tw-gradient-from: #f472b6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(244, 114, 182, 0)); }
.from-green-400 { --tw-gradient-from: #4ade80; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 222, 128, 0)); }

.to-blue-600 { --tw-gradient-to: #2563eb; }
.to-purple-600 { --tw-gradient-to: #9333ea; }
.to-pink-600 { --tw-gradient-to: #db2777; }
.to-green-600 { --tw-gradient-to: #16a34a; }

.border-2 { border-width: 2px; }

/* Grid columns for specific layouts */
.lg\:col-span-2 { grid-column: span 2 / span 2; }
.lg\:col-span-3 { grid-column: span 3 / span 3; }
.lg\:col-span-5 { grid-column: span 5 / span 5; }

/* Flex basis */
.flex-basis { flex-basis: 0%; }

/* Additional spacing utilities */
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-4); }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: var(--space-6); }

/* Block display for labels */
.block { display: block; }

/* Shadow utilities */
.shadow-md { box-shadow: var(--shadow-md); }

/* Fixed positioning classes */
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }

/* Hover utilities */
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:underline:hover { text-decoration: underline; }

/* Aspect ratio */
.aspect-square { aspect-ratio: 1 / 1; }

/* Gradient text replacement (already in theme but for completeness) */
.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--from-color, var(--accent-primary)), var(--to-color, var(--accent-tertiary)));
}

/* Stroke dasharray for SVG animations */
.stroke-dasharray { stroke-dasharray: 100; }
.stroke-dashoffset { stroke-dashoffset: 100; }

/* ========================================
   ADDITIONAL MISSING UTILITY CLASSES
   ======================================== */

/* Position utilities missing */
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

/* Padding bottom utilities */
.pb-8 { padding-bottom: var(--space-8); }
.pb-5 { padding-bottom: var(--space-5); }
.pb-4 { padding-bottom: var(--space-4); }

/* Padding top utilities */
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }
.pt-16 { padding-top: var(--space-16); }

/* Max width utilities */
.max-w-4xl { max-width: 56rem; }
.max-w-lg { max-width: 32rem; }

/* Grid gap */
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }

/* Border utilities */
.border-b { border-bottom: 1px solid var(--border-default); }
.border-t { border-top: 1px solid var(--border-default); }
.border-y { border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }

/* Height utilities */
.h-16 { height: 4rem; }

/* Negative space (for stacking avatars) */
.-space-x-2 {
  display: flex;
  flex-direction: row;
}
.-space-x-2 > * + * {
  margin-left: -0.5rem;
}

/* Text alignment */
.leading-relaxed { line-height: var(--leading-relaxed); }

/* Max width constraint */
.max-w-lg { max-width: 32rem; }

/* Small utilities for inline elements */
.inline-flex { display: inline-flex; }

/* Flex wrap */
.sm\:flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

/* Justify content */
.justify-center { justify-content: center; }

/* Gap utilities for flex */
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }

/* Additional responsive gaps */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

/* Absolute positioning */
.absolute { position: absolute; }

/* Inset utilities */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Transform utilities */
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Width/Height utilities */
.w-\[600px\] { width: 600px; }
.h-\[600px\] { height: 600px; }
.w-64 { width: 16rem; }

/* Border radius */
.rounded-\[150px\] { border-radius: 150px; }
.rounded-full { border-radius: 9999px; }

/* Filter utilities */
.blur-\[150px\] { filter: blur(150px); }

/* Opacity */
.opacity-80 { opacity: 0.8; }

/* Hover states */
.hover\:opacity-80:hover { opacity: 0.8; }

/* Text size */
.text-xs { font-size: var(--text-xs); }

/* Flex direction */
.flex-row { flex-direction: row; }

/* Flex wrap */
.flex-wrap { flex-wrap: wrap; }

/* ========================================
   ADDITIONAL RESPONSIVE UTILITIES
   ======================================== */

/* Small breakpoint (640px) */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:flex-col { flex-direction: column; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-center { justify-content: center; }
  .sm\:gap-4 { gap: var(--space-4); }
  .sm\:p-4 { padding: var(--space-4); }
  .sm\:p-6 { padding: var(--space-6); }
  .sm\:text-sm { font-size: var(--text-sm); }
  .sm\:text-base { font-size: var(--text-base); }
  .sm\:w-auto { width: auto; }
  .sm\:w-full { width: 100%; }
}

/* Medium breakpoint (768px) - extend existing */
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-center { justify-content: center; }
  .md\:gap-4 { gap: var(--space-4); }
  .md\:gap-6 { gap: var(--space-6); }
  .md\:gap-8 { gap: var(--space-8); }
  .md\:gap-16 { gap: var(--space-16); }
  .md\:p-6 { padding: var(--space-6); }
  .md\:p-8 { padding: var(--space-8); }
  .md\:p-12 { padding: var(--space-12); }
  .md\:py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
  .md\:py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
  .md\:px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
  .md\:text-2xl { font-size: var(--text-2xl); }
  .md\:text-3xl { font-size: var(--text-3xl); }
  .md\:text-4xl { font-size: var(--text-4xl); }
  .md\:text-5xl { font-size: var(--text-5xl); }
  .md\:w-20 { width: 5rem; }
  .md\:w-auto { width: auto; }
  .md\:w-1\/2 { width: 50%; }
  .md\:h-20 { height: 5rem; }
  .md\:h-auto { height: auto; }
  .md\:min-h-screen { min-height: 100vh; }
  .md\:max-w-2xl { max-width: 42rem; }
  .md\:max-w-md { max-width: 28rem; }
  .md\:rounded-2xl { border-radius: var(--radius-2xl); }
  .md\:rounded-3xl { border-radius: 1.5rem; }
  .md\:sticky { position: sticky; }
  .md\:flex-nowrap { flex-wrap: nowrap; }
  .md\:flex-wrap { flex-wrap: wrap; }
  .md\:items-start { align-items: flex-start; }
}

/* Large breakpoint (1024px) - extend existing */
@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:gap-4 { gap: var(--space-4); }
  .lg\:gap-6 { gap: var(--space-6); }
  .lg\:gap-8 { gap: var(--space-8); }
  .lg\:gap-16 { gap: var(--space-16); }
  .lg\:p-6 { padding: var(--space-6); }
  .lg\:p-8 { padding: var(--space-8); }
  .lg\:p-12 { padding: var(--space-12); }
  .lg\:py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
  .lg\:py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
  .lg\:text-2xl { font-size: var(--text-2xl); }
  .lg\:text-3xl { font-size: var(--text-3xl); }
  .lg\:w-12 { width: 3rem; }
  .lg\:w-20 { width: 5rem; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:sticky { position: sticky; }
  .lg\:top-6 { top: 1.5rem; }
  .lg\:gap-12 { gap: var(--space-12); }
  .lg\:items-start { align-items: flex-start; }
}

/* Text sizes not yet covered */
.text-xl { font-size: var(--text-xl); }
.text-xs { font-size: var(--text-xs); }

/* Width utilities */
.w-64 { width: 16rem; }
.w-24 { width: 6rem; }

/* Padding utilities */
.pb-5 { padding-bottom: var(--space-5); }
.pb-8 { padding-bottom: var(--space-8); }
.pt-16 { padding-top: var(--space-16); }
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }
.pb-4 { padding-bottom: var(--space-4); }

/* Gap utilities */
.gap-1 { gap: var(--space-1); }

/* Border utilities */
.rounded-lg { border-radius: var(--radius-lg); }

/* Animation utilities */
.transition-opacity { transition: opacity var(--transition-base); }

/* Table cell alignment */
.text-center { text-align: center; }
