/* Additional tech effects for the landing page - Simplified without animations */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Rajdhani:wght@300;400;500;600&display=swap');

/* Digital countdown */
.digital-countdown {
  font-family: 'Orbitron', sans-serif;
  font-size: 28px;
  color: #0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  transition: all 0.3s;
}

.digital-countdown.ready {
  color: #00ff00;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
  letter-spacing: 3px;
}

/* Typing effect */
.typing-header {
  display: inline-block;
  width: auto;
  position: relative;
}

.typing-header::after {
  content: '|';
  position: absolute;
  right: -8px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Tactical section styles */
.tactical-section {
  border-left: 3px solid #0ff;
  padding-left: 15px;
  margin: 20px 0;
  position: relative;
}

.tactical-section::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 15px;
  height: 3px;
  background-color: #0ff;
}

.tactical-section::after {
  content: '';
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 15px;
  height: 3px;
  background-color: #0ff;
}

.tactical-heading {
  color: #0ff;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.tactical-heading::before {
  content: '> ';
  color: #ff3333;
}

/* HUD-style container */
.hud-container {
  position: relative;
  border: 1px solid rgba(0, 255, 255, 0.3);
  background-color: rgba(0, 30, 60, 0.4);
  padding: 20px;
  margin: 20px 0;
}

.hud-container::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #0ff;
  border-left: 2px solid #0ff;
}

.hud-container::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #0ff;
  border-right: 2px solid #0ff;
}

/* System status styles */
.system-status {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.status-item {
  background-color: rgba(0, 20, 40, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.3);
  padding: 8px 15px;
  margin: 5px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  color: #ccc;
  display: flex;
  align-items: center;
}

/* Power-up button without animation */
.power-button {
  background: linear-gradient(to right, #003366, #0066cc);
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(0, 100, 255, 0.3);
}

.power-button:hover {
  box-shadow: 0 0 30px rgba(0, 100, 255, 0.7);
  transform: translateY(-5px);
}

/* User profile status */
.user-status {
  display: inline-block;
  padding: 4px 10px;
  background-color: rgba(0, 20, 40, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: #0ff;
  margin-bottom: 20px;
}

.user-status.authorized {
  border-color: rgba(0, 255, 0, 0.5);
  color: #0f0;
}

.user-status.unauthorized {
  border-color: rgba(255, 0, 0, 0.5);
  color: #f00;
}
