/* Radar background effect for E29 L5X RECON */
.radar-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;
}

.radar-scanner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: 
    radial-gradient(circle, rgba(0,20,40,0.1) 0%, rgba(0,0,0,0.5) 100%),
    repeating-radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, rgba(0,128,128,0.1) 7%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.radar-scanner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,128,128,0) 0%, rgba(0,255,255,0.4) 50%, rgba(0,128,128,0) 100%);
  animation: radar-sweep 4s infinite linear;
  transform-origin: center center;
}

/* Static radar scanner without animation */
.radar-scanner-static {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: 
    radial-gradient(circle, rgba(0,20,40,0.1) 0%, rgba(0,0,0,0.5) 100%),
    repeating-radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, rgba(0,128,128,0.1) 7%);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.radar-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(rgba(0,128,128,0.1) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(90deg, rgba(0,128,128,0.1) 1px, transparent 1px) 0 0 / 50px 50px;
  z-index: 2;
}

.radar-blips {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.radar-blip {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0,255,255,0.7);
  box-shadow: 0 0 8px #0ff;
  opacity: 0;
  animation: radar-blip 3s infinite;
}

.radar-blip:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0.5s;
}

.radar-blip:nth-child(2) {
  top: 70%;
  left: 65%;
  animation-delay: 1.2s;
}

.radar-blip:nth-child(3) {
  top: 40%;
  left: 80%;
  animation-delay: 2.1s;
}

.radar-blip:nth-child(4) {
  top: 85%;
  left: 15%;
  animation-delay: 0.7s;
}

.radar-blip:nth-child(5) {
  top: 30%;
  left: 50%;
  animation-delay: 1.7s;
}

@keyframes radar-sweep {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes radar-blip {
  0%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Tech-style content styles */
.tech-content {
  position: relative;
  z-index: 10;
  padding: 30px;
  background-color: rgba(0, 20, 40, 0.7);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.tech-header {
  font-family: 'Orbitron', sans-serif;
  color: #0ff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.large-header {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  text-align: center;
}

.large-text {
  font-size: 1.2rem;
  max-width: 90%;
  margin: 0 auto 2rem;
  text-align: center;
}

.tech-text {
  color: #ccc;
  font-family: 'Rajdhani', sans-serif;
  line-height: 1.6;
}

.tech-button {
  background: linear-gradient(to right, #003366, #0066cc);
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s;
}

.tech-button:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(0, 255, 255, 0.2);
  transition: all 0.3s;
  z-index: -1;
}

.tech-button:hover:before {
  height: 100%;
}

.tech-button:hover {
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Status indicators */
.status-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}

.status-active {
  background-color: #00ff00;
  box-shadow: 0 0 8px #00ff00;
  animation: pulse 2s infinite;
}

.status-standby {
  background-color: #ffcc00;
  box-shadow: 0 0 8px #ffcc00;
}

.status-offline {
  background-color: #ff3333;
  box-shadow: 0 0 8px #ff3333;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
  }
}

/* Logo styles */
.apex-logo {
  max-width: 350px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  margin-bottom: 20px;
  transition: all 0.5s;
}

.apex-logo:hover {
  filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.7));
  transform: scale(1.05);
}

/* Large header styles for landing page */
.large-header {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
  text-align: center;
}

.large-text {
  font-size: 1.2rem;
  max-width: 90%;
  margin: 0 auto 2rem;
  text-align: center;
}

/* Consolidated layout styles */
.tactical-section {
  padding: 1.5rem 0;
}

.container {
  max-width: 1280px;
}

.hud-container {
  margin-bottom: 2rem;
}

/* Compact header styles */
.tech-content.p-2 {
  padding: 0.5rem !important;
  margin-bottom: 0;
}

/* Reduced vertical spacing */
.container-fluid.p-0 {
  overflow-x: hidden;
}

/* More compact radar container */
.radar-container {
  height: 100vh !important;
}

/* Static radar scanner without animation */
.radar-scanner-static {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: 
    radial-gradient(circle, rgba(0,20,40,0.1) 0%, rgba(0,0,0,0.5) 100%),
    repeating-radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%, rgba(0,128,128,0.1) 7%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
