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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: #f5f3f0;
  color: #525451;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 560px;
}

.logo svg {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #d98c40;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.2rem;
  color: #525451;
  margin-bottom: 1rem;
  font-style: italic;
}

.message {
  font-size: 1rem;
  color: #6e726e;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.facebook-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #d98c40;
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}

.facebook-btn:hover {
  background: #c97d33;
  transform: translateY(-2px);
}

.facebook-btn:active {
  transform: translateY(0);
}

footer {
  margin-top: 3.5rem;
  font-size: 0.85rem;
  color: #525451;
}
