/* Retro Fonts */
@import url('https://fonts.googleapis.com/css2?family=VT323&family=Press+Start+2P&display=swap');

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

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

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1rem;
  text-align: center;
}

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

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

.scroll-hint {
  font-family: 'VT323', monospace;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  margin-top: 0;
  opacity: 0.8;
}

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

#calendar {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-family: 'VT323', monospace;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

#shareInfo {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}


.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;
}

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

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

@media (max-width: 600px) {
  .container {
    padding: 2rem 1rem;
  }

  .main-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .scroll-hint {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  #calendar {
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  #shareInfo {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .button {
    width: 100%;
    font-size: 1rem;
    padding: 10px;
  }

  .button-wrapper {
    margin-top: 1.5rem;
  }
}