body {
  box-sizing: border-box;
  background: #0A1A3A;
  color: #E8E8E8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0066FF;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.card-reveal {
  position: relative;
  overflow: hidden;
}

.card-reveal-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 26, 58, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-reveal:hover .card-reveal-content {
  opacity: 1;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.pulse-animation {
  animation: pulse 2s ease-in-out infinite;
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 3px solid #0066FF;
  outline-offset: 2px;
}

select {
  background: rgba(232, 232, 232, 0.1) !important;
  color: #E8E8E8 !important;
  border: 1px solid rgba(0, 102, 255, 0.3) !important;
  padding: 0.75rem !important;
  border-radius: 6px !important;
  font-size: 1rem !important;
  width: 100% !important;
}

select option {
  background: #0A1A3A !important;
  color: #E8E8E8 !important;
}