:root {
  --primary-purple: #6a0dad;
  --dark-purple: #3e0965;
  --bg-dark: #120a1a;
  --text-white: #f5f5f5;
  --accent-glow: rgba(106, 13, 173, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #1a1a3d 0%, #232355 50%, #33337a 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
}

h1 {
  color: #ff9df7;
  font-size: 4rem;
  text-shadow: 0 0 30px rgba(233, 69, 96, 0.5);
}

.protected-page {
  display: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0f0f23;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #6a0dad, #ff00ff);
  border-radius: 10px;
  border: 2px solid #0f0f23; 
}

::-webkit-scrollbar-thumb:hover {
  background: #ff9df7;
  box-shadow: 0 0 10px #ff00ff;
}