body {
  font-family: 'Poppins', sans-serif;
  background-color: #0D0D1A;
  color: #E0E0E0;
}
.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}
.kinetic-gradient-text {
  background: linear-gradient(90deg, #00F5D4, #A020F0, #FF00E5, #00F5D4);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 8s linear infinite;
}
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.glass-effect {
  background: rgba(20, 20, 40, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.animated-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animated-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom cursor styles */
.custom-cursor {
    display: none;
}
@media (min-width: 768px) {
    body {
        cursor: none;
    }
    .custom-cursor {
        display: block;
        pointer-events: none;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        transition: transform 0.15s ease-out;
        transform-style: preserve-3d;
    }
    .custom-cursor-dot {
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        transition: all 0.3s;
    }
    .custom-cursor-dot.default {
        width: 0.75rem; /* 12px */
        height: 0.75rem; /* 12px */
        background-color: #00F5D4;
    }
    .custom-cursor-dot.pointer {
        width: 2rem; /* 32px */
        height: 2rem; /* 32px */
        background-color: rgba(0, 245, 212, 0.3);
        border: 2px solid #00F5D4;
    }
}
