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

::-webkit-scrollbar-track {
  background: #0505056f;
}

::-webkit-scrollbar-thumb {
  background: #6035c3;
  border-radius: 10px;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #6035c3 #050505;
}

body {
  background-color: #050505;
  color: #e2e8f0;
  overflow-x: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #8b5cf6 50%, #3b82f6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-main {
  background: radial-gradient(circle at 50% -20%, #2d1b4e 0%, #050505 60%);
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(139, 92, 246, 0.15) 0%,
      rgba(59, 130, 246, 0) 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.magnetic-btn {
  transition: transform 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.custom-cursor {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease;
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-line {
  position: absolute;
  top: 24px;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
  width: 100%;
  z-index: 0;
}

option {
  background-color: rgb(17, 17, 17);
  border: none;
  outline: none;
}