/* Close Button Styles */
.splash-development .splash-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.splash-development .splash-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.splash-development .splash-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Slide up animation */
.splash-notice.splash-development.slide-up {
  overflow: hidden;
  animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
  from {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 0;
  }
  to {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
}
