/*--------------------------------------------------------------
    Coming Soon Stylesheet (Simplified Cyan Edition)
--------------------------------------------------------------*/

:root {
  --neon-cyan: #00aeef; /* The brand's main cyan color */
  --neon-glow: rgba(0, 174, 239, 0.45);
  --console-bg: rgba(6, 15, 33, 0.85);
  --glass-border: rgba(0, 174, 239, 0.25);
}

/* Base console styling — full viewport */
.coming-soon-console {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  margin: 0;
  padding: 3rem 4rem;
  background: var(--console-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: none;
  border-radius: 0;
  box-shadow: none;
  z-index: 10;
  pointer-events: auto;
  overflow: hidden;
  text-align: center;
  /* Center content vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Sci-fi corner brackets */
.coming-soon-console::before,
.coming-soon-console::after,
.console-inner-bracket::before,
.console-inner-bracket::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--neon-cyan);
  border-style: solid;
  pointer-events: none;
  z-index: 15;
  opacity: 0.7;
}

.coming-soon-console::before {
  top: 1.5rem;
  left: 1.5rem;
  border-width: 2px 0 0 2px;
}

.coming-soon-console::after {
  top: 1.5rem;
  right: 1.5rem;
  border-width: 2px 2px 0 0;
}

.console-inner-bracket::before {
  bottom: 1.5rem;
  left: 1.5rem;
  border-width: 0 0 2px 2px;
}

.console-inner-bracket::after {
  bottom: 1.5rem;
  right: 1.5rem;
  border-width: 0 2px 2px 0;
}

/* Scanlines overlay */
.console-scanlines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.15) 50%
  );
  background-size: 100% 4px;
  z-index: 12;
  pointer-events: none;
  opacity: 0.65;
}

/* Laser scan line anim */
.laser-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--neon-cyan), transparent);
  opacity: 0.5;
  animation: scan-vertical 8s linear infinite;
  pointer-events: none;
  z-index: 14;
}

@keyframes scan-vertical {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Top status bar */
.console-header-bar {
  position: absolute;
  top: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  font-family: 'New Hero SemiBold', monospace;
  font-size: 0.65rem;
  color: #8fa0b0;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.2); }
}

.sec-level {
  color: var(--neon-cyan);
  text-shadow: 0 0 4px var(--neon-glow);
}

/* Brand Logo Layout */
.logo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 2rem 0;
}

.coming-soon-logo {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(0, 174, 239, 0.4));
  animation: float-logo 4s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Glowing Titles */
.console-main-title {
  font-family: 'New Hero SemiBold', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4rem;
  color: #8fa0b0;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.console-title-decrypted {
  font-family: 'New Hero ExtraBold', sans-serif;
  font-size: 5rem;
  letter-spacing: 0.6rem;
  color: var(--neon-cyan);
  text-shadow: 0 0 30px var(--neon-glow);
  margin-bottom: 0;
  text-transform: uppercase;
  min-height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
  transition: text-shadow 0.3s ease;
}

.console-title-decrypted:hover {
  text-shadow: 0 0 50px rgba(0, 174, 239, 0.9);
}

/* Accent decorative bar */
.console-accent-bar {
  width: 50px;
  height: 2px;
  background: var(--neon-cyan);
  margin: 2rem auto;
  box-shadow: 0 0 10px var(--neon-cyan);
  border-radius: 2px;
}

/* Year theme tagline */
.console-tagline {
  font-family: 'New Hero Thin', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  line-height: 1.7;
  text-transform: uppercase;
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
  .coming-soon-console {
    padding: 3rem 2rem;
  }

  .console-header-bar {
    padding: 0 1.5rem;
  }
  
  .console-title-decrypted {
    font-size: 3.5rem;
    letter-spacing: 0.3rem;
    min-height: 4.5rem;
  }

  .console-tagline {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 480px) {
  .coming-soon-console {
    padding: 2rem 1.25rem;
  }

  .console-header-bar {
    padding: 0 1rem;
    flex-direction: column;
    gap: 0.3rem;
    top: 1rem;
  }

  .console-main-title {
    font-size: 0.7rem;
    letter-spacing: 0.25rem;
  }
  
  .console-title-decrypted {
    font-size: 2.6rem;
    letter-spacing: 0.2rem;
    min-height: 3.5rem;
  }

  .console-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.08rem;
  }

  .coming-soon-console::before,
  .console-inner-bracket::before {
    left: 0.75rem;
  }

  .coming-soon-console::after,
  .console-inner-bracket::after {
    right: 0.75rem;
  }
}
