html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  background: url('images/moodrender.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.logo {
  max-width: 300px;
  width: 40vw;
  height: auto;
  background: rgba(255,255,255,0.0);
}

@media (max-width: 600px) {
  .logo {
    max-width: 180px;
    width: 70vw;
  }
}

/* Modal styles */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 95vw;
  max-width: 600px;
  height: auto;
  background: rgba(0,0,0,0.95);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 1000;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  font-family: Helvetica, Arial, sans-serif;
}

.modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-family: Helvetica, Arial, sans-serif;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: #707070;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 0 8px;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close:hover,
.modal-close:focus {
  color: #ffffff;
  outline: none;
}

.modal-content h2 {
  margin: 0 0 8px 0;
  font-size: 2rem;
}

.modal-content p {
  margin: 0 0 16px 0;
  font-size: 1rem;
  text-align: center;
}

.modal-content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 8px;
}

.modal-content input,
.modal-content textarea {
  padding: 8px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-family: Helvetica, Arial, sans-serif;
}

.modal-content textarea {
  min-height: 15em;
  resize: vertical;
}

.modal-content button {
  width: 100%;
  padding: 10px 0;
  border-radius: 6px;
  border: none;
  background: #fff;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.modal-content button {
  padding: 10px 0;
  border-radius: 6px;
  border: none;
  background: #fff;
  color: #111;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.modal-content button:hover {
  background: #eee;
}

@media (max-width: 600px) {
  .modal {
    max-width: 99vw;
    padding: 16px 4px;
  }
  .modal-content h2 {
    font-size: 1.3rem;
  }
  .modal-content form {
    padding: 0 2px;
    gap: 12px;
  }
}
