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

body {
  min-height: 100vh;
  background-color: #000;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f5c542;
  padding: 1rem;
  overflow-x: hidden;
}

.overlay {
  width: 100%;
  max-width: 600px; /* Increase to allow full text on one line */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
  padding: 2rem;
}

.card {
  text-align: center;
  width: 100%;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.2);
  white-space: nowrap; /* Prevent line breaks */
  overflow: hidden;
  text-overflow: ellipsis; /* Truncates if it still overflows */
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f5c542;
}

.tagline {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #f5c542;
}

.subtle {
  font-size: 1rem;
  color: #c4a945;
  font-style: italic;
}
