/* Landing Page Specific Styles */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.landing-container {
  max-width: 650px;
  width: 100%;
}

.landing-card {
  text-align: center;
  animation: fadeIn 0.6s ease;
}

.app-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-primary), var(--info));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.app-icon svg {
  width: 48px;
  height: 48px;
  fill: white;
}

.demo-accounts {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  margin-top: 32px;
  text-align: left;
}

.demo-account-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin: 8px 0;
  background: var(--bg-card);
  border-radius: 8px;
  font-size: 0.9rem;
}

.demo-account-item strong {
  color: var(--accent-primary);
}

.action-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.action-buttons a {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 576px) {
  .action-buttons {
    flex-direction: column;
  }
  .action-buttons a {
    width: 100%;
  }
}