@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
:root {
  --glass: rgba(255, 255, 255, 0.05);
  --edge: rgba(255, 255, 255, 0.2);
  --spectrum: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
}

body {
  font-family: 'Inter', sans-serif;
  background: #050505;
  color: #fff;
}

.glass-card {
  backdrop-filter: blur(25px) saturate(180%);
  background: var(--glass);
  border: 1px solid var(--edge);
  border-radius: 4px;
  position: relative;
  box-shadow: 0 0 100px rgba(0, 255, 255, 0.05);
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--spectrum);
  opacity: 0.5;
}

.glint {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff;
}

.cyber-header {
  font-weight: 100;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  opacity: 0.9;
}
.refraction {
  position: absolute;
  width: 200%;
  height: 2px;
  background: var(--spectrum);
  filter: blur(8px);
  transform: rotate(-45deg);
  z-index: -1;
  animation: laserScan 5s linear infinite;
}

@keyframes laserScan {
  0% { left: -100%; top: 0; }
  100% { left: 100%; top: 100%; }
}

body {
  background: #000;
  overflow-x: hidden;
}
.glass-card {
  backdrop-filter: blur(15px) saturate(200%);
  background: linear-gradient(145deg, rgba(0,0,0,0.7), rgba(20,20,20,0.8));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.7), 
              0 0 15px rgba(255,255,255,0.05);
transition: all 0.3s ease;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), 
              0 0 60px rgba(0, 255, 255, 0.2);
}

@keyframes hologramFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hologram {
  animation: hologramFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Animation for buttons */
button {
    transition: all 0.2s ease-in-out;
}
/* Language violation alert */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.language-violation {
  animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

/* Pulse animation for important elements */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}