* {
  box-sizing: border-box;
}

body {
  margin: 0;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #111, #2b2b2b);
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
}

/* LOGO - Made bigger! */
.site-logo {
  border: 3px solid currentColor;
  width: clamp(250px, 45vw, 450px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 10px rgba(245, 245, 245, 0.5);
  border-radius: 4px; /* Optional: slight rounding */
}

h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.3;
  /* Removed white-space: nowrap for better mobile display */
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.tagline-em {
  display: block;
  font-style: italic;
  margin-top: 0.5rem;
}

.subtext {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-top: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }
  
  .tagline {
    font-size: 1rem;
  }
}