* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  background: #000;
  color: white;
}

site-header::part(base) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.signup-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 100%;
}

.signup-form input {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
}

.signup-form input::placeholder {
  color: #aaa;
}

.signup-form button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  background: #ffd33d;
  color: #111;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.signup-form button:hover {
  background: #f7c600;
}

/* Normal footer (inline) */
site-footer::part(base) {
  background-color: #f5f5f5;
  background: linear-gradient(180deg, #1a1a1a, #000000);
  color: #555;
  color: white;
  position: static;

  /* background: url('../assets/bg/black-seamless.webp');
  background-size: cover;
  background-position: center; */
}

/* Glass */
.glass {
  width: 100%;
  max-width: 600px;
  padding: 3rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  text-align: center;
}

.glass h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.glass p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}