body {
  margin: 0;
  background-color: #000;
  color: #A9ECFD;
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header, footer {
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  border-bottom: 1px solid #A9ECFD;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 32px;
}

.logo-area span {
  font-family: 'Supermolot', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
}

.center-link a {
  color: #A9ECFD;
  font-weight: bold;
  text-decoration: none;
}

.confetti-button {
  padding: 8px 16px;
  background-color: #A9ECFD;
  color: black;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.main-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.box {
  max-width: 500px;
  width: 100%;
  border: 1px solid #A9ECFD;
  padding: 32px;
  text-align: center;
  background-color: #000;
}

.input-group {
  display: flex;
  margin-top: 20px;
}

.input-group input {
  flex: 1;
  padding: 12px;
  background-color: #111;
  border: 1px solid #A9ECFD;
  color: #A9ECFD;
  font-family: 'JetBrains Mono';
  font-size: 16px;
}

.input-group button {
  background-color: #A9ECFD;
  color: #000;
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
}

.results {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.tweet-button {
  margin-top: 20px;
  padding: 14px;
  font-weight: bold;
  background-color: #A9ECFD;
  color: #000;
  border: none;
  cursor: pointer;
  width: 100%;
}

footer {
  justify-content: center;
  font-style: italic;
  color: #A9ECFD;
  font-size: 14px;
  border-top: 1px solid #A9ECFD;
}

@media (max-width: 600px) {
  header, footer {
    flex-direction: column;
    gap: 10px;
  }
}
