.career-form {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 16px;
    color: #ffd166;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #2196f3;
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #2196f3, #03a9f4);
    border-radius: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}



.back-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #2196f3, #03a9f4);
    border-radius: 15px;
    color: white;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
}

/* 神秘科技转场效果 */
.mystical-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mystical-transition.active {
  opacity: 1;
}

.mystical-transition.fade-out {
  opacity: 0;
}

.transition-content {
  text-align: center;
  color: #fff;
}

.mystical-symbol {
  font-size: 80px;
  margin-bottom: 20px;
  animation: mysticalGlow 2s ease-in-out infinite alternate;
}

.tech-lines {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

.tech-lines::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: techScan 2s linear infinite;
}

.transition-text {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 30px;
  color: #00d4ff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  letter-spacing: 2px;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background: #00d4ff;
  border-radius: 50%;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes mysticalGlow {
  0% {
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
  }
}

@keyframes techScan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes loadingPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* 移动端背景修复 */
@media (max-width: 768px) {
  body {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%) !important;
    background-attachment: fixed !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    background-size: cover !important;
  }
  
  body::before {
    background: 
        radial-gradient(circle at 20% 30%, rgba(156, 39, 176, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(33, 150, 243, 0.2) 0%, transparent 40%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff" fill-opacity="0.05"/></svg>') !important;
  }
}