:root {
  --background: 220 25% 97%;
  --foreground: 230 15% 15%;

  --card: 0 0% 100%;
  --card-foreground: 230 15% 15%;

  --popover: 0 0% 100%;
  --popover-foreground: 230 15% 15%;

  --primary: 250 80% 60%;
  --primary-foreground: 0 0% 100%;

  --secondary: 220 15% 92%;
  --secondary-foreground: 230 15% 15%;

  --muted: 220 15% 92%;
  --muted-foreground: 230 10% 45%;

  --accent: 270 70% 65%;
  --accent-foreground: 0 0% 100%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 220 15% 88%;
  --input: 220 15% 88%;
  --ring: 250 80% 60%;
  --white: 220 20% 95%;
  --info: 224 70% 65%;
  --success: 118 70% 65%;

  --radius: 0.75rem;

  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5.3% 26.1%;
  --sidebar-primary: 240 5.9% 10%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 240 4.8% 95.9%;
  --sidebar-accent-foreground: 240 5.9% 10%;
  --sidebar-border: 220 13% 91%;
  --sidebar-ring: 250 80% 60%;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: 230 20% 10%;
    --foreground: 220 20% 95%;

    --card: 230 18% 14%;
    --card-foreground: 220 20% 95%;

    --popover: 230 18% 14%;
    --popover-foreground: 220 20% 95%;

    --primary: 250 80% 65%;
    --primary-foreground: 0 0% 100%;

    --secondary: 230 15% 18%;
    --secondary-foreground: 220 20% 95%;

    --muted: 230 15% 18%;
    --muted-foreground: 220 15% 65%;

    --accent: 270 70% 70%;
    --accent-foreground: 0 0% 100%;

    --destructive: 0 62.8% 50%;
    --destructive-foreground: 0 0% 100%;

    --border: 230 15% 20%;
    --input: 230 15% 20%;
    --ring: 250 80% 65%;
    --white: 220 20% 95%;
    --info: 224 70% 70%;
    --success: 118 70% 70%;
    
    --sidebar-background: 240 5.9% 10%;
    --sidebar-foreground: 240 4.8% 95.9%;
    --sidebar-primary: 250 80% 65%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 240 3.7% 15.9%;
    --sidebar-accent-foreground: 240 4.8% 95.9%;
    --sidebar-border: 240 3.7% 15.9%;
    --sidebar-ring: 250 80% 65%;
  }
}


::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--accent) / 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--accent) / 0.75);
}



* { padding: 0; margin: 0; color: var(--card-foreground); }

html {
  scroll-behavior: smooth;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

body {
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
    height: auto;
    background-image: linear-gradient(to bottom right, hsl(var(--primary) / .1), hsl(var(--background)), hsl(var(--accent) / .1));
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

