body {
  margin: 0;
  font-family: 'VT323', monospace;
  background: linear-gradient(-45deg, #fcdff1, #afbefa, #f8d185, #7566ff);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  text-align: center;
  padding: 2rem 1rem;
}

.main-title {
  font-family: 'Press Start 2P', cursive;
  font-size: 2.5rem;
  color: white;
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  text-shadow:
  0 0 5px #ffffff,
  0 0 10px #ffffff,
  0 0 15px #fcdff1,
  0 0 25px #f2d798,
  0 0 35px #f3ce71;
}

@media (max-width: 480px) {
  .main-title {
    text-shadow:
      0 0 3px #ffffff,
      0 0 6px #fcdff1;
  }
}

.subtitle {
  font-family: 'VT323', monospace;
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.laptop-container {
  position: relative;
  max-width: 600px;  /* Restore normal size for desktop */
  margin: -150px auto 0 auto; /* top margin adjusted */
}

.laptop-image {
  width: 100%;
  height: auto;
  display: block;
}

.screen-text {
  position: absolute;
  top: 35%;  
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  height: 55%;
  padding: 0.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: #000;
  box-sizing: border-box;
  gap: 0.75rem;
}

.screen-text label {
  margin-bottom: 0.25rem;
}

.screen-text input {
  width: 85%;
  max-width: 200px;
  padding: 0.3rem 0.5rem;
  font-size: 1rem;
  font-family: 'VT323', monospace;
  border: none;
  border-bottom: 2px solid #3a2b1d;
  background: transparent;
  color: #3a2b1d;
  outline: none;
  box-sizing: border-box;
  text-align: center;
}

.button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 20rem;
}

.button {
  padding: 12px 24px;
  background-color: #f62def;
  color: white;
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.button:hover {
  background-color: #511de0;
  transform: scale(1.07);
  box-shadow:
    0 0 8px #f62def,
    0 0 16px #f62def,
    0 0 24px #f62def;
}

@media screen and (max-width: 600px) {
  .laptop-container {
    max-width: 95%;
    padding: 0.5rem;
  }

  .screen-text {
    width: 50%;
    padding: 0.25rem 0.25rem;
  }
  
  .screen-text input {
    width: 90%;
    max-width: 180px;
    font-size: 0.9rem;
  }

  .button-wrapper {
    margin-bottom: 5rem;
  }

  .main-title, .subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .screen-text {
    top: 30%;
    width: 55%;
    font-size: 1rem;
    padding: 0.25rem 0.25rem;
    gap: 0.5rem;
  }
  
  .screen-text input {
    width: 95%;
    max-width: 160px;
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
  }

  .button-wrapper {
    position: relative;
    z-index: 10;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}