:root {
  --primary-color: #865bfb;
  --primary-light: #8b5dcf;
  --primary-dark: #4a2276;
  --bg-dark: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --border-color: #333333;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-dark); /* Use dark neutral instead of purple */
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* General Scrollbar Styling */
html::-webkit-scrollbar {
  width: 13px;
  /* Width of the scrollbar */
}

html::-webkit-scrollbar-track {
  background: #1c1c1e;
  /* Dark background for the track */
  border-radius: 5px;
  /* Rounded track edges */
}

html::-webkit-scrollbar-thumb {
  background: #39393a;
  /* Thumb color */
  border-radius: 5px;
  /* Rounded thumb edges */
  border: 2px solid #1c1c1e;
  /* Creates a gap effect around the thumb */
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
  /* Bright blue on hover */
}

/* For Firefox scrollbar styling */
body {
  scrollbar-width: thin;
  /* Thin scrollbar */
  scrollbar-color: #39393a #1c1c1e;
  /* Thumb and track colors */
}