/* External stylesheet for OceaniaVPS website */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  background: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.page {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: #ffffff;
}
h1 {
  font-size: clamp(2.8rem, 8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.subhead {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.6;
}
.location-line {
  font-size: 1rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 1.8rem;
  display: inline-block;
}
.message {
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #fafafa;
  padding: 1rem 1.8rem;
  max-width: 500px;
  border: 1px solid #d4d4d4;
  line-height: 1.6;
}
/* Early Access Signup */
.early-access {
  margin-top: 2rem;
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.early-access-label {
  font-size: 0.95rem;
  color: #333333;
  margin-bottom: 1rem;
  line-height: 1.6;
  display: block;
}
.signup-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
.signup-form input[type="email"] {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  padding: 0.85rem 1.2rem;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  font-size: 1rem;
  color: #000000;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}
.signup-form input[type="email"]:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}
.signup-form button {
  padding: 0.85rem 2rem;
  background-color: #000000;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
  text-align: center;
}
.signup-form button:hover {
  background-color: #333333;
  opacity: 1;
}
.signup-form button:active {
  transform: scale(0.98);
}
.success-message {
  display: none;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #2e7d32;
  background: #f1f8e9;
  border: 1px solid #c8e6c9;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  line-height: 1.5;
}
.success-message.visible {
  display: block;
}
/* Loading spinner */
.spinner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  display: none;
  align-items: center;
  justify-content: center;
}
.spinner-overlay.visible {
  display: flex;
}
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #e0e0e0;
  border-top-color: #000000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
/* Responsive */
@media (max-width: 640px) {
  .signup-form {
    flex-direction: column;
  }
}