@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background: #0a0a0f;
  color: #ffffff;
  cursor: auto;
  overflow-x: hidden;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #d946ef);
  width: 0%;
  z-index: 40;
  transition: width 0.1s ease;
}

/* Text Utilities */
.text-gradient {
  background: linear-gradient(135deg, #a855f7, #d946ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gray-improved {
  color: #d1d5db;
}

.neon-text {
  color: #a855f7;
  text-shadow: 0 0 10px #a855f7, 0 0 20px #a855f7, 0 0 30px #a855f7;
  animation: neonPulse 2s ease-in-out infinite;
}

/* Language Toggle */
body:not(.lang-en-active) .lang-en {
  display: none;
}
body.lang-en-active .lang-tr {
  display: none;
}

/* Gradient Background */
.bg-gradient-custom {
  background: linear-gradient(135deg, #6d2897, #8e6cf5, #bb61c5);
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
}
