body {
  background: #222;
  color: #fff;
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.center-box {
  background: rgba(32, 32, 32, 0.96);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  padding: 40px 30px;
  text-align: center;
  max-width: 340px;
}

.logo {
  width: 110px;       /* Increase from 52px to 110px */
  max-width: 95vw;    /* Optional: responsive on small screens */
  margin-bottom: 22px;
}
}

h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 0 0 12px 0;
  color: #ffe066;
  letter-spacing: 1px;
}

.subtitle {
  color: #b0b0b0;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  margin: 20px 0 0 0;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ffdb4d, #ffe066 50%, #ffc300);
  color: #333;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
}

.cta-btn:hover {
  background: linear-gradient(90deg, #ffe066, #ffdb4d 50%, #ffc300);
  color: #000;
}

.note {
  color: #888;
  font-size: 0.9rem;
  margin-top: 16px;
  opacity: 0.7;
}

@media (max-width: 480px) {
  .center-box {
    max-width: 95vw;
    padding: 20px 6vw;
  }
  h1 {
    font-size: 1.3rem;
  }
}
