:root {
  --livego-background: #000000;
  --livego-surface: #151a21;
  --livego-text-primary: #ffffff;
  --livego-text-secondary: #aeb6c2;
  --livego-primary: #00c853;
  --livego-primary-pressed: #00a844;
  --livego-border: #252b34;
  --livego-font: "Poppins", sans-serif;
  --livego-radius-card: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--livego-background);
  color: var(--livego-text-primary);
  font-family: var(--livego-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.card {
  width: 100%;
  max-width: 680px;
  padding: 28px 24px 32px;
  background: var(--livego-surface);
  border: 1px solid var(--livego-border);
  border-radius: var(--livego-radius-card);
}

.card__header {
  margin-bottom: 24px;
}

.logo {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
}

.card__title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--livego-text-primary);
}

.card__body p {
  margin: 0 0 16px;
  color: var(--livego-text-secondary);
}

.card__body strong {
  color: var(--livego-text-primary);
  font-weight: 600;
}

.card__body p:last-child {
  margin-bottom: 0;
}

.card__email {
  margin-top: 8px;
}

.card__email a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: var(--livego-primary);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.card__email a:hover {
  color: var(--livego-primary-pressed);
  text-decoration: underline;
}

.card__email a:focus-visible {
  outline: 2px solid var(--livego-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (min-width: 480px) {
  .page {
    padding: 32px 20px;
  }

  .card {
    padding: 36px 32px 40px;
  }

  .card__title {
    font-size: 28px;
  }

  .logo {
    max-width: 200px;
  }
}
