:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --gray: #6b7280;
  --text: #111827;
  --bg: #f9f9fb;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  max-width: 600px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.empty-state {
  background: white;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.empty-state h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600; /* Slightly bolder for headline */
}

.empty-state p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.empty-state a {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.empty-state a:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 480px) {
  .container {
    margin: 2rem 1rem;
  }

  .empty-state {
    padding: 2rem 1rem;
  }

  .empty-state h2 {
    font-size: 1.5rem;
  }

  .empty-state p {
    font-size: 0.95rem;
  }

  .empty-state a {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
  }
}
