.container {
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  max-width: 600px;
  width: 100%;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--bs-text);
  text-align: center;
}

.description {
  font-size: 1.1rem;
  color: var(--bs-muted);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.card {
  background: var(--bs-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bs-border);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--bs-shadow);
  text-align: center;
}

.card h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  color: var(--bs-text);
}

.card p {
  margin: 0 0 1.5rem 0;
  color: var(--bs-muted);
  line-height: 1.5;
}

.button {
  background: var(--bs-primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  max-width: 300px;
}

.button:hover {
  background: var(--bs-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--bs-shadow);
}

.button:active {
  transform: translateY(0);
}

.links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.link {
  display: inline-block;
  background: var(--bs-surface);
  backdrop-filter: blur(12px);
  color: var(--bs-link);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid var(--bs-border);
  transition: all 0.2s;
}

.link:hover {
  background: var(--bs-primary);
  color: white;
  text-decoration: none;
  border-color: var(--bs-primary);
  transform: translateY(-2px);
  box-shadow: var(--bs-shadow);
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }

  .button {
    max-width: 100%;
  }
}
