:root {
  --strike-bg: #0a0a0f;
  --strike-border: 25 95% 53%;
  --strike-orange: hsl(25, 95%, 53%);
  --strike-orange-glow: 25 95% 53% / 0.5;
  --strike-surface: #1a1a2e;
  --strike-text: #ffffff;
  --strike-muted: #a0a0b0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--strike-bg);
  color: var(--strike-text);
  min-height: 100vh;
  overflow-x: hidden;
}

.coming-soon-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.background-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.background-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    hsl(var(--strike-border)) 10px,
    hsl(var(--strike-border)) 11px
  );
}

.radar-container {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.radar-circles {
  position: relative;
  height: 600px;
  width: 600px;
  opacity: 0.1;
}

.radar-circle {
  position: absolute;
  border: 1px solid var(--strike-orange);
  border-radius: 50%;
}

.circle-1 {
  inset: 0;
}
.circle-2 {
  inset: 15%;
}
.circle-3 {
  inset: 30%;
}
.circle-4 {
  inset: 45%;
}

.radar-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 50%;
  width: 2px;
  background: linear-gradient(to top, var(--strike-orange), transparent);
  transform-origin: bottom;
  transform: translateX(-50%);
  animation: radarSweep 4s linear infinite;
}

@keyframes radarSweep {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

.floating-shapes {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border: 2px solid hsl(25 95% 53% / 0.2);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  left: 10%;
  top: 20%;
  height: 64px;
  width: 64px;
  animation-delay: 0s;
}

.shape-2 {
  right: 15%;
  top: 30%;
  height: 80px;
  width: 80px;
  animation-delay: 1s;
}

.shape-3 {
  bottom: 25%;
  left: 20%;
  height: 48px;
  width: 48px;
  animation-delay: 2s;
}

.shape-4 {
  bottom: 35%;
  right: 25%;
  height: 56px;
  width: 56px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.main-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.main-title {
  position: relative;
  margin-bottom: 2rem;
}

.title-main {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--strike-orange);
  animation: pulseGlow 2s ease-in-out infinite;
}

.title-glitch {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: hsl(25 95% 53% / 0.3);
  animation: glitch 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 20px hsl(25 95% 53% / 0.5);
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 30px hsl(25 95% 53% / 0.8);
  }
}

@keyframes glitch {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.3;
  }
  10% {
    transform: translateX(-2px);
    opacity: 0.4;
  }
  20% {
    transform: translateX(2px);
    opacity: 0.2;
  }
  30% {
    transform: translateX(-1px);
    opacity: 0.5;
  }
  40% {
    transform: translateX(1px);
    opacity: 0.3;
  }
  50% {
    transform: translateX(0);
    opacity: 0.4;
  }
}

.mission-status {
  display: inline-block;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(25 95% 53% / 0.3);
  background: hsl(26 24% 16% / 0.5);
  padding: 0.5rem 1.5rem;
  backdrop-filter: blur(4px);
  animation: fadeInUp 0.6s ease-out;
}

.status-text {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--strike-orange);
}

.main-message {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--strike-text);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.subtitle {
  margin: 0 auto 2.5rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--strike-muted);
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (min-width: 640px) {
  .subtitle {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .subtitle {
    font-size: 1.25rem;
  }
}

.info-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

@media (min-width: 640px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.info-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid hsl(217 33% 17%);
  background: hsl(217 33% 17% / 0.3);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: hsl(25 95% 53% / 0.5);
  background: hsl(217 33% 17% / 0.5);
}

.card-hover-line {
  position: absolute;
  right: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: var(--strike-orange);
  transition: width 0.5s ease;
}

.info-card:hover .card-hover-line {
  width: 100%;
}

.card-icon {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--strike-orange);
}

.card-title {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--strike-text);
}

.card-subtitle {
  font-size: 0.75rem;
  color: var(--strike-muted);
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--strike-orange);
  padding: 1rem 2rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px hsl(var(--strike-orange-glow)),
    0 0 60px hsl(var(--strike-orange-glow));
}

.cta-button:active {
  transform: scale(0.95);
}

.button-shine {
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(
    to right,
    transparent,
    hsl(0 0% 100% / 0.2),
    transparent
  );
  transition: transform 0.7s ease;
}

.cta-button:hover .button-shine {
  transform: translateX(100%);
}

.button-text {
  position: relative;
}

.button-icon {
  height: 1.25rem;
  width: 1.25rem;
  transition: transform 0.3s ease;
  position: relative;
}

.cta-button:hover .button-icon {
  transform: translateX(4px);
}

.decorative-line {
  margin: 3rem auto 0;
  height: 1px;
  width: 8rem;
  background: linear-gradient(
    to right,
    transparent,
    var(--strike-orange),
    transparent
  );
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.corner-bracket {
  position: absolute;
  pointer-events: none;
  height: 4rem;
  width: 4rem;
  border-color: hsl(25 95% 53% / 0.3);
}

.top-left {
  left: 2rem;
  top: 2rem;
  border-left: 2px solid;
  border-top: 2px solid;
}

.top-right {
  right: 2rem;
  top: 2rem;
  border-right: 2px solid;
  border-top: 2px solid;
}

.bottom-left {
  bottom: 2rem;
  left: 2rem;
  border-bottom: 2px solid;
  border-left: 2px solid;
}

.bottom-right {
  bottom: 2rem;
  right: 2rem;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
