/* Euda — links.euda.live shared styles */
:root {
  --purple: #7B3FF2;
  --purple-dark: #6226D9;
  --text: #111827;
  --text-secondary: #6B7280;
  --bg: #FFFFFF;
  --surface: #F9FAFB;
  --border: #E5E7EB;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.updated {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

p, li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

th, td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
}

th {
  background: var(--surface);
  font-weight: 600;
}

a {
  color: var(--purple);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.draft-notice {
  margin-top: 48px;
  padding: 16px;
  background: #FEF3C7;
  border-radius: 8px;
  font-size: 13px;
  color: #92400E;
}

.nav {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}

/* Support page specific */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 16px 0;
}

.contact-card h3 {
  margin-top: 0;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--purple);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-top: 8px;
}

.btn:hover {
  background: var(--purple-dark);
  text-decoration: none;
}
