:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08); /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08); /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08); /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08); /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08); /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a0b2e 0%, #371854 25%, #7209b7 50%, #2d1b69 75%, #0f0522 100%);
  min-height: 100vh;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

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

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

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

.btn--secondary:active {
  background: var(--color-secondary-active);
}

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

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}


.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

.form-help {
  display: block;
  margin-top: var(--space-4);
  font-size: var(--font-size-xs);
  color: var(--color-text-secondary);
  font-style: italic;
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

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

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
  
  .logo {
    height: 140px;
  }
  
  .brand-text {
    font-size: var(--font-size-2xl);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
  
  .logo {
    height: 160px;
  }
  
  .brand-text {
    font-size: var(--font-size-3xl);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.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;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  z-index: 1001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Custom AI Social Platform Styles */

/* Glass morphism effects */
.glass {
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(55, 24, 84, 0.95));
  border-bottom: 1px solid rgba(123, 44, 191, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.nav-brand {
  cursor: pointer;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
  padding: var(--space-8);
  border-radius: var(--radius-base);
}

.brand-logo:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 15px rgba(123, 44, 191, 0.5));
  background: rgba(123, 44, 191, 0.1);
}

.brand-logo:focus {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

.logo {
  height: 120px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-standard);
}

/* Resizable logo options */
.logo-resizable {
  resize: both;
  overflow: hidden;
  min-height: 80px;
  min-width: 80px;
  max-height: 240px;
  max-width: 240px;
}

.logo-resizable:hover {
  cursor: nw-resize;
  border: 2px dashed var(--color-teal-400);
  border-radius: var(--radius-md);
}

/* Additional size presets */
.logo-small {
  height: 80px !important;
}

.logo-medium {
  height: 120px !important;
}

.logo-large {
  height: 160px !important;
}

.logo-xl {
  height: 200px !important;
}

.brand-text {
  background: linear-gradient(135deg, #00d4ff, #7b2cbf, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  margin: 0;
  line-height: 1;
}

/* Legacy support for old nav-brand h2 if any exists */
.nav-brand h2 {
  background: linear-gradient(135deg, #00d4ff, #7b2cbf, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-standard);
}

.nav-brand h2:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(123, 44, 191, 0.5));
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  padding: var(--space-8) var(--space-12);
  border-radius: var(--radius-base);
  transition: all var(--duration-fast) var(--ease-standard);
  position: relative;
}

.nav-link:hover {
  color: #00d4ff;
  background: rgba(123, 44, 191, 0.2);
  box-shadow: 0 0 15px rgba(123, 44, 191, 0.3);
}

.nav-link--disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.nav-link--disabled:hover {
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  box-shadow: none;
}

/* Pages */
.page {
  min-height: calc(100vh - 80px);
  opacity: 1;
  transition: opacity var(--duration-normal) var(--ease-standard);
}

.page.hidden {
  display: none;
}

/* Hero Section */
.hero {
  padding: var(--space-32) 0;
  background: linear-gradient(135deg, #1a0b2e 0%, #371854 25%, #7209b7 50%, #2d1b69 75%, #0f0522 100%);
  border-bottom: 1px solid rgba(123, 44, 191, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(123, 44, 191, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--space-16);
  background: linear-gradient(135deg, #ffffff, #00d4ff, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(123, 44, 191, 0.5);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-32);
  line-height: var(--line-height-normal);
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
}

/* Enhanced Buttons */
.btn--primary {
  background: linear-gradient(135deg, #7209b7, #c77dff);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  box-shadow: 0 0 20px rgba(123, 44, 191, 0.5);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  position: relative;
}

.btn--outline:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  color: white;
}

/* Features Section */
.features {
  padding: var(--space-32) 0;
  background: linear-gradient(180deg, #0f0522 0%, #1a0b2e 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-24);
  margin-top: var(--space-32);
}

.features-grid .card {
  transition: all var(--duration-normal) var(--ease-standard);
  position: relative;
}

.features-grid .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.3);
}

.features-grid h3 {
  margin-bottom: var(--space-16);
  color: #0891b2;
  font-size: var(--font-size-xl);
}

/* Wizard Styles */
.wizard-container {
  max-width: 700px;
  margin: var(--space-32) auto;
  background: linear-gradient(135deg, #1a0b2e 0%, #371854 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.wizard-header {
  text-align: center;
  margin-bottom: var(--space-32);
}

.wizard-header h1 {
  margin-bottom: var(--space-16);
  background: linear-gradient(135deg, #ffffff, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wizard-header p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-24);
}

.progress-container {
  margin-bottom: var(--space-24);
}

.progress-bar {
  width: 100%;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-8);
  border: 1px solid rgba(123, 44, 191, 0.3);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #7209b7, #c77dff, #00d4ff);
  border-radius: var(--radius-full);
  transition: width var(--duration-normal) var(--ease-standard);
  box-shadow: 0 0 10px rgba(123, 44, 191, 0.5);
  position: relative;
}

/* Initial width for progress bar */
.progress-fill--initial {
  width: 10%;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  display: block;
  text-align: center;
  font-size: var(--font-size-sm);
  color: #00d4ff;
  font-weight: var(--font-weight-semibold);
}

.challenge-card, .username-card, .credentials-card {
  margin-bottom: var(--space-24);
  animation: slideUp 0.3s var(--ease-standard);
  border: 1px solid rgba(123, 44, 191, 0.3);
}

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

.challenge-info {
  margin-bottom: var(--space-24);
}

.challenge-info h3 {
  margin-top: var(--space-16);
  margin-bottom: 0;
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.status--info {
  background: linear-gradient(135deg, #7209b7, #c77dff);
  color: white;
  border: none;
  box-shadow: 0 0 10px rgba(123, 44, 191, 0.3);
}

.challenge-actions {
  margin-top: var(--space-20);
  justify-content: flex-end;
}

.challenge-feedback {
  margin-top: var(--space-16);
  padding: var(--space-12);
  border-radius: var(--radius-base);
  font-weight: var(--font-weight-medium);
  animation: fadeIn 0.3s var(--ease-standard);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.challenge-feedback.success {
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 212, 255, 0.2));
  color: #00ff7f;
  border: 1px solid rgba(0, 255, 127, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.2);
}

.challenge-feedback.error {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 69, 0, 0.2));
  color: #ff1493;
  border: 1px solid rgba(255, 20, 147, 0.4);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

/* Timer Styling */
.challenge-timer {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  min-height: 2rem;
}

.challenge-timer.timer--normal {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.2));
  color: rgb(34, 197, 94);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.challenge-timer.timer--warning {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.2));
  color: rgb(251, 191, 36);
  border: 1px solid rgba(251, 191, 36, 0.3);
  animation: pulse-warning 1s infinite;
}

.challenge-timer.timer--danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
  color: rgb(239, 68, 68);
  border: 1px solid rgba(239, 68, 68, 0.3);
  animation: pulse-danger 0.5s infinite;
}

.challenge-timer.timer--expired {
  background: linear-gradient(135deg, rgba(127, 29, 29, 0.2), rgba(127, 29, 29, 0.3));
  color: rgb(239, 68, 68);
  border: 1px solid rgba(239, 68, 68, 0.5);
  animation: flash-expired 0.3s 3;
}

@keyframes pulse-warning {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes pulse-danger {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes flash-expired {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.challenge-feedback--timeout {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.2));
  color: rgb(251, 191, 36);
  border: 1px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.challenge-feedback--success {
  background: linear-gradient(135deg, rgba(0, 255, 127, 0.2), rgba(0, 212, 255, 0.2));
  color: #00ff7f;
  border: 1px solid rgba(0, 255, 127, 0.4);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.2);
}

.challenge-feedback--error {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.2), rgba(255, 69, 0, 0.2));
  color: #ff1493;
  border: 1px solid rgba(255, 20, 147, 0.4);
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.2);
}

/* Performance Analysis */
.performance-analysis {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1rem 0;
}

.performance-analysis ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.performance-analysis li {
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.performance-analysis li:last-child {
  border-bottom: none;
}

.status--error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.2));
  color: rgb(239, 68, 68);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Export Controls */
.export-controls {
  border: 1px solid rgba(123, 44, 191, 0.3);
}

.export-buttons {
  align-items: center;
}

.export-buttons .btn--sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  min-width: 4rem;
}

.export-buttons .flex-grow {
  flex: 1;
}

/* Session Information */
.session-info .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.session-info .detail-row:last-child {
  border-bottom: none;
}

.session-info .label {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.session-info .monospace {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.session-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn--danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.8), rgba(185, 28, 28, 0.8));
  border-color: rgba(239, 68, 68, 0.5);
}

.btn--danger:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(185, 28, 28, 0.9));
  transform: scale(1.02);
}

/* Blog Posts */
.blog-post {
  margin-bottom: 1rem;
  border: 1px solid rgba(123, 44, 191, 0.2);
}

.post-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.2), rgba(192, 132, 252, 0.2));
  color: rgb(192, 132, 252);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(123, 44, 191, 0.3);
}

/* Public Feed Section */
.public-feed {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8));
  border-top: 1px solid rgba(123, 44, 191, 0.1);
  border-bottom: 1px solid rgba(123, 44, 191, 0.1);
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgb(192, 132, 252), rgb(168, 85, 247));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.public-feed-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.public-feed .blog-post {
  margin-bottom: 0;
}

.public-feed .blog-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(123, 44, 191, 0.1);
}

.post-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* Messages */
.message {
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.message--received {
  background: rgba(123, 44, 191, 0.1);
  border-left: 3px solid rgb(123, 44, 191);
}

.message--sent {
  background: rgba(34, 197, 94, 0.1);
  border-left: 3px solid rgb(34, 197, 94);
  margin-left: 2rem;
}

.chat-messages {
  max-height: 400px;
  overflow-y: auto;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.chat-input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.chat-input input {
  flex: 1;
}

/* Utility Classes */
.mb-24 {
  margin-bottom: 1.5rem;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mt-16 {
  margin-top: 1rem;
}

.text-sm {
  font-size: 0.875rem;
}

.opacity-70 {
  opacity: 0.7;
}

.flex {
  display: flex;
}

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

.gap-8 {
  gap: 0.5rem;
}

.justify-center {
  justify-content: center;
}

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

/* Session Note */
.session-note {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.5rem;
  border-left: 4px solid rgb(34, 197, 94);
}

.session-note p {
  margin: 0;
  line-height: 1.4;
}

.credentials-info {
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.2), rgba(0, 212, 255, 0.1));
  padding: var(--space-20);
  border-radius: var(--radius-base);
  margin: var(--space-20) 0;
  border: 1px solid rgba(123, 44, 191, 0.3);
}

.credential-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-12);
}

.credential-item:last-child {
  margin-bottom: 0;
}

.credential-label {
  font-weight: var(--font-weight-medium);
  color: #00d4ff;
}

.credential-item code {
  font-family: var(--font-family-mono);
  font-size: var(--font-size-sm);
  color: #c77dff;
  background: rgba(123, 44, 191, 0.2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(123, 44, 191, 0.3);
}

/* Dashboard */
body {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  color: var(--color-text);
}

.dashboard-header {
  text-align: center;
  margin-bottom: var(--space-32);
}

.dashboard-header h1 {
  margin-bottom: var(--space-8);
  background: linear-gradient(135deg, #ffffff, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dashboard-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
}

#dashboard-username {
  color: #00d4ff;
  font-weight: var(--font-weight-semibold);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.dashboard-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-32);
  border-bottom: 1px solid rgba(123, 44, 191, 0.3);
  background: rgba(26, 11, 46, 0.8);
  border-radius: var(--radius-base);
  padding: var(--space-4);
}

.tab-btn {
  padding: var(--space-12) var(--space-24);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  border-radius: var(--radius-base);
  transition: all var(--duration-fast) var(--ease-standard);
}

.tab-btn:hover {
  color: #00d4ff;
  background: rgba(123, 44, 191, 0.2);
}

.tab-btn.active {
  color: white;
  background: linear-gradient(135deg, #7209b7, #c77dff);
  box-shadow: 0 0 15px rgba(123, 44, 191, 0.3);
}

.tab-content {
  opacity: 1;
  transition: opacity var(--duration-fast) var(--ease-standard);
}

.tab-content.hidden {
  display: none;
}

/* Feed */
.feed-container {
  max-width: 800px;
  margin: 0 auto;
}

.feed-item {
  margin-bottom: var(--space-24);
  transition: all var(--duration-fast) var(--ease-standard);
  border: 1px solid rgba(123, 44, 191, 0.3);
}

.feed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(123, 44, 191, 0.2);
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-16);
}

.feed-header strong {
  color: #00d4ff;
  font-weight: var(--font-weight-semibold);
}

.feed-actions {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-16);
  padding-top: var(--space-16);
  border-top: 1px solid rgba(123, 44, 191, 0.2);
}

.status--success {
  background: linear-gradient(135deg, #00ff7f, #00d4ff);
  color: white;
  border: none;
  box-shadow: 0 0 10px rgba(0, 255, 127, 0.3);
}

/* Messages */
.messages-container {
  max-width: 800px;
  margin: 0 auto;
}

.chat-interface {
  height: 500px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(123, 44, 191, 0.3);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-16);
  max-height: 350px;
}

.message {
  margin-bottom: var(--space-16);
  padding: var(--space-12);
  border-radius: var(--radius-base);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.message strong {
  display: block;
  margin-bottom: var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
}

.message p {
  margin: 0;
  line-height: var(--line-height-normal);
}

.message--received {
  background: rgba(123, 44, 191, 0.2);
  margin-right: var(--space-32);
  border-left: 3px solid #7209b7;
}

.message--sent {
  background: rgba(0, 212, 255, 0.2);
  margin-left: var(--space-32);
  text-align: right;
  border-right: 3px solid #00d4ff;
}

.chat-input {
  padding: var(--space-16);
  border-top: 1px solid rgba(123, 44, 191, 0.3);
  background: rgba(0, 0, 0, 0.2);
}

/* Chat input spacing */
.chat-input .form-control {
  margin-bottom: var(--space-8);
}

/* Profile */
.profile-container {
  max-width: 600px;
  margin: 0 auto;
}

.profile-info {
  border: 1px solid rgba(123, 44, 191, 0.3);
}

/* Form elements enhancement */
.form-control {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(123, 44, 191, 0.4);
  color: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
  border-color: #00d4ff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  background: rgba(0, 0, 0, 0.4);
}

.form-label {
  color: #00d4ff;
}

/* About */
#about-page {
  background: linear-gradient(135deg, #1a0b2e 0%, #371854 25%, #7209b7 50%, #2d1b69 75%, #0f0522 100%);
  min-height: 100vh;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-32) 0;
}

.about-content h1 {
  text-align: center;
  margin-bottom: var(--space-32);
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content .card {
  border: 1px solid rgba(123, 44, 191, 0.3);
}

.about-content h3 {
  margin: var(--space-24) 0 var(--space-16) 0;
  color: #00d4ff;
}

.about-content ul {
  margin: var(--space-16) 0;
  padding-left: var(--space-20);
}

.about-content li {
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.7);
}

/* 404 */
#not-found-page {
  background: linear-gradient(135deg, #1a0b2e 0%, #371854 25%, #7209b7 50%, #2d1b69 75%, #0f0522 100%);
  min-height: 100vh;
}

.not-found-content {
  text-align: center;
  padding: var(--space-32) 0;
}

.not-found-content h1 {
  margin-bottom: var(--space-16);
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.not-found-content p {
  color: rgba(255, 255, 255, 0.7);
}

/* Confetti Canvas */
#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

/* Enhanced Animations */
.pulse {
  animation: pulse 2s infinite;
}

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

.bounce-in {
  animation: bounceIn 0.8s var(--ease-standard);
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(6deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 2px solid transparent;
  border-top: 2px solid #00d4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: var(--space-8);
  }
  
  .brand-logo {
    gap: var(--space-6);
  }
  
  .logo {
    height: 48px;
  }
  
  .brand-text {
    font-size: var(--font-size-xl);
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .wizard-container {
    margin: var(--space-16) auto;
    padding: var(--space-20);
  }
  
  .dashboard-tabs {
    flex-direction: column;
    border-bottom: none;
  }
  
  .feed-actions {
    flex-direction: column;
  }
  
  .message--received {
    margin-right: var(--space-16);
  }
  
  .message--sent {
    margin-left: var(--space-16);
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .progress-fill::after {
    display: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .glass {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid white;
  }
  
  .btn--primary {
    background: #ffffff;
    color: #000000;
  }
  
  .btn--outline {
    border: 2px solid #ffffff;
    color: #ffffff;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a0b2e 0%, #371854 25%, #7209b7 50%, #2d1b69 75%, #0f0522 100%);
  border-top: 1px solid rgba(123, 44, 191, 0.3);
  padding: var(--space-32) 0 var(--space-24) 0;
  margin-top: var(--space-32);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(123, 44, 191, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-brand .brand-text {
  background: linear-gradient(135deg, #00d4ff, #7b2cbf, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-xl);
  margin: 0;
  line-height: 1;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  margin: var(--space-4) 0 0 0;
  font-style: italic;
}

.footer-info {
  text-align: right;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  margin: 0 0 var(--space-4) 0;
  font-weight: var(--font-weight-medium);
}

.footer-link {
  color: #00d4ff;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  transition: all var(--duration-fast) var(--ease-standard);
}

.footer-link:hover {
  color: #c77dff;
  text-shadow: 0 0 10px rgba(199, 125, 255, 0.3);
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
  margin: 0;
  font-style: italic;
}

/* Footer responsive design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-16);
  }
  
  .footer-info {
    text-align: center;
  }
  
  .footer-brand .brand-text {
    font-size: var(--font-size-lg);
  }
}