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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, #f8fafc, #eef3f9);
  color: #1a1a1a;
}

/* Center everything nicely */
.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

/* Card container */
.card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 30px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* LOGO FIX (important part for you) */
.logo {
  max-width: 320px;   /* controls size */
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

/* Headline */
h1 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

/* Main text */
.description {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Sub text */
.subtle {
  font-size: 0.95rem;
  color: #7a8599;
}

/* Small polish */
.card:hover {
  transform: translateY(-2px);
  transition: 0.3s ease;
}