body {
  color: #FFFFFF;
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
}

.star-field {
  position: fixed;
  inset: -100px;
  z-index: -10;
  pointer-events: none;
}

.glass {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

@keyframes drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(20px, 15px); }
  100% { transform: translate(0, 0); }
}

@keyframes flash {
  0%, 100% { background-color: currentColor; }
  50% { background-color: #00D1FF; }
}

@keyframes flash3 {
  0% { background-color: #ffffff; }
  33% { background-color: #00D1FF; }
  66% { background-color: #FCD34D; }
  100% { background-color: #ffffff; }
}

@keyframes flashText {
  0%, 100% { color: #ffffff; }
  50% { color: #00D1FF; }
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  opacity: 0.3;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

::selection {
  background: #00D1FF;
  color: #020408;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #020408;
}
::-webkit-scrollbar-thumb {
  background: #1A1F2E;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00D1FF;
}

.vertical-rl {
  writing-mode: vertical-rl;
}
