:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --text-color: #333;
  --bg-color: #f9fafb;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 400px;
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
  width: 312px;   /* increased from 80px */
  height: 312px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.subtitle {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

section p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.status {
  margin-top: 0.8rem;
  font-weight: bold;
}

footer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #777;
}

.quote {
  margin: 1rem 0;
  font-style: italic;
  color: #555;
  background: #f3f4f6;
  padding: 0.8rem 1rem;
  border-left: 4px solid var(--primary);
  border-radius: 0.5rem;
}

.quote footer {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #777;
  text-align: right;
}