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

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 460px;
}

h1 {
  margin: 0;
  color: #1f3b67;
}

h2 {
  margin-top: 10px;
  color: #f4b536;
}

p {
  color: #5c6f8c;
}

.note {
  margin-top: 20px;
  padding: 12px;
  background: #eef3fb;
  border-radius: 10px;
  color: #1f3b67;
  font-size: 14px;
}

.status {
  margin-top: 20px;
  font-weight: bold;
  color: #1f3b67;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #f4b536;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* LOGO */
.logo-box {
  width: 250px;
  height: 80px;
  background: #f4b536;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.logo-box img {
  max-width: 90%;
  max-height: 90%;
}

/* BUTTON */
.button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background: #f4b536;
  color: #1f3b67;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: all 0.2s ease;
}

.button:hover {
  background: #e6a72f;
  transform: translateY(-2px);
}