:root {
  --background: #ffffff;
  --foreground: #262626;
  --card: #ffffff;
  --card-foreground: #262626;
  --popover: #ffffff;
  --popover-foreground: #262626;
  --primary: #f50b66;
  --primary-foreground: #000000;
  --secondary: #f3f6f5;
  --secondary-foreground: #4b6359;
  --muted: #f9fbfa;
  --muted-foreground: #6b8079;
  --accent: #ffebef;
  --accent-foreground: #920e62;
  --destructive: #ec44ef;
  --destructive-foreground: #ffffff;
  --border: #e5ebe9;
  --input: #e5ebe9;
  --ring: #f50b66;
  --chart-1: #f50b66;
  --chart-2: #d9066c;
  --chart-3: #b4096d;
  --chart-4: #920e62;
  --chart-5: #780f54;
  --sidebar: #f9fbfa;
  --sidebar-foreground: #262626;
  --sidebar-primary: #f50b66;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #ffebef;
  --sidebar-accent-foreground: #920e62;
  --sidebar-border: #e5ebe9;
  --sidebar-ring: #f50b66;
  --font-sans: Inter, sans-serif;
  --font-serif: Source Serif 4, serif;
  --font-mono: JetBrains Mono, monospace;
  --radius: 0.375rem;
  --shadow-x: 0px;
  --shadow-y: 4px;
  --shadow-blur: 8px;
  --shadow-spread: -1px;
  --shadow-opacity: 0.1;
  --shadow-color: #1a1a1a;
  --tracking-normal: 0em;
  --spacing: 0.25rem;
}

.dark {
  --background: #171717;
  --foreground: #e5e5e5;
  --card: #262626;
  --card-foreground: #e5e5e5;
  --popover: #262626;
  --popover-foreground: #e5e5e5;
  --primary: #f50b66;
  --primary-foreground: #000000;
  --secondary: #262626;
  --secondary-foreground: #e5e5e5;
  --muted: #1f1f1f;
  --muted-foreground: #a3a3a3;
  --accent: #920e62;
  --accent-foreground: #fd8aa3;
  --destructive: #ec44ef;
  --destructive-foreground: #ffffff;
  --border: #404040;
  --input: #404040;
  --ring: #f50b66;
  --chart-1: #fb2464;
  --chart-2: #d9066c;
  --chart-3: #920e62;
  --chart-4: #b4096d;
  --chart-5: #920e62;
  --sidebar: #0f0f0f;
  --sidebar-foreground: #e5e5e5;
  --sidebar-primary: #f50b66;
  --sidebar-primary-foreground: #ffffff;
  --sidebar-accent: #920e62;
  --sidebar-accent-foreground: #fd8aa3;
  --sidebar-border: #404040;
  --sidebar-ring: #f50b66;
  --font-sans: Inter, sans-serif;
  --font-serif: Source Serif 4, serif;
  --font-mono: JetBrains Mono, monospace;
  --radius: 0.375rem;
  --shadow-x: 0px;
  --shadow-y: 4px;
  --shadow-blur: 8px;
  --shadow-spread: -1px;
  --shadow-opacity: 0.1;
  --shadow-color: #1a1a1a;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);

  --font-sans: var(--font-sans);
  --font-mono: var(--font-mono);
  --font-serif: var(--font-serif);

  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --shadow: var(--shadow);
}