/* Development Splash Notice Styles */
.splash-notice.splash-development {
  position: relative;
  background: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 20px 40px;
  overflow: hidden;
  z-index: 9999;
}

/* Neon Scintillating Border at Bottom */
.splash-neon-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    #007FFF 0%,
    #11a281 50%,
    #007FFF 100%
  );
  background-size: 200% 100%;
  animation: neonFlow 3s linear infinite;
  box-shadow: 
    0 0 10px rgba(0, 127, 255, 0.6),
    0 0 20px rgba(17, 162, 129, 0.4);
}

@keyframes neonFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* Content Wrapper */
.splash-development .splash-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Typography */
.splash-development .splash-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
  line-height: 1.2;
  color: #fff;
}

.splash-development .splash-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

/* Date Badge */
.splash-development .splash-date-badge {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.splash-development .splash-date-badge:hover {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Desktop Only */
.splash-development.desktop-only .splash-content-wrapper {
  min-height: 60px;
}

.splash-development.desktop-only .splash-title,
.splash-development.desktop-only .splash-subtitle {
  text-align: left;
}

/* Mobile Only */
.splash-development.mobile-only {
  padding: 40px 20px;
  min-height: auto;
}

.splash-development.mobile-only .splash-content-wrapper {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.splash-development.mobile-only .splash-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.splash-development.mobile-only .splash-subtitle {
  font-size: 20px;
  margin-bottom: 20px;
}

.splash-development.mobile-only .splash-date-badge {
  padding: 14px 36px;
  font-size: 18px;
}

/* Clickable Cursor */
.splash-development[style*="cursor:pointer"]:hover {
  background: #0a0a0a;
}

.splash-development[style*="cursor:pointer"]:hover .splash-neon-border {
  height: 3px;
  box-shadow: 
    0 0 15px rgba(0, 127, 255, 0.8),
    0 0 30px rgba(17, 162, 129, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .splash-development.desktop-only {
    padding: 30px 20px;
  }
  
  .splash-development .splash-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .splash-development .splash-title {
    font-size: 22px;
  }
  
  .splash-development .splash-subtitle {
    font-size: 16px;
  }
  
  .splash-development .splash-date-badge {
    padding: 10px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .splash-development .splash-title {
    font-size: 20px;
  }
  
  .splash-development .splash-subtitle {
    font-size: 15px;
  }
  
  .splash-development .splash-date-badge {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Enhanced Glow Effect - Additional Animation */
@keyframes neonPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.splash-neon-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: inherit;
  filter: blur(8px);
  opacity: 0.6;
  animation: neonPulse 2s ease-in-out infinite;
}
