:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0d0f21;
  color: #eee;
}

body {
  max-width: 680px;
  margin: 40px auto;
  padding: 0 20px 48px;
  line-height: 1.6;
}

.languages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
}

.languages strong {
  color: #fff;
}

h1 {
  color: #a99df2;
  line-height: 1.25;
}

h2 {
  color: #8fb3f5;
  margin-top: 2em;
  line-height: 1.3;
}

a {
  color: #8de0e6;
}

.feedback-intro {
  margin-bottom: 1rem;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}

.feedback-link {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  border: 1px solid rgba(141, 224, 230, 0.45);
  border-radius: 12px;
  background: rgba(141, 224, 230, 0.08);
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.feedback-link:hover,
.feedback-link:focus-visible {
  border-color: #8de0e6;
  background: rgba(141, 224, 230, 0.15);
  outline: none;
}

.privacy-warning {
  padding: 0.85rem 1rem;
  border-left: 3px solid #a99df2;
  border-radius: 0 8px 8px 0;
  background: rgba(169, 157, 242, 0.1);
  font-size: 0.92rem;
}

@media (max-width: 480px) {
  body {
    margin-top: 24px;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }
}
