body {
  margin: 0;
  background: black;
  color: white;
  font-family: "Courier New", monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 40px;
}

.logo {
  width: 100px;
  margin-bottom: 20px;
  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

h1 {
  font-size: 40px;
  letter-spacing: 2px;
}

h2 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 20px;
}

p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}

.email {
  display: block;
  margin: 20px 0;
  color: white;
  text-decoration: underline;
}

/* NEWSLETTER */
.newsletter {
  margin-top: 30px;
}

input {
  padding: 10px;
  background: black;
  border: 1px solid white;
  color: white;
  font-family: monospace;
}

button {
  padding: 10px;
  border: 1px solid white;
  background: white;
  color: black;
  cursor: pointer;
  font-family: monospace;
}

/* SUPPORTERS */
.supporters {
  margin-top: 60px;
}

.support-text {
  font-size: 12px;
  opacity: 0.6;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.support-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.support-logos img {
  height: 35px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.support-logos img:hover {
  opacity: 1;
}