/* File Note: Base typography, color system, and responsive layout for the landing page */
:root {
  color-scheme: light;
  --bg: #f6f7fb;
  --card: #ffffff;
  --text: #182232;
  --muted: #5f6c7b;
  --accent: #e0302c;
  --accent-strong: #b7221f;
  --border: #e1e5ef;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #ffffff, #f0f4ff 65%);
  color: var(--text);
  line-height: 1.7;
  padding: 0 1rem 2rem;
}

main {
  max-width: 960px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  padding: 4rem 1rem 3rem;
}

.tagline {
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.flag {
  font-size: 2.2rem;
  margin-right: 0.35rem;
  vertical-align: middle;
}

.cta-group {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #ff7665);
  color: #fff;
  box-shadow: 0 10px 25px rgba(224, 48, 44, 0.25);
}

.btn.secondary {
  border: 1px solid rgba(24, 34, 50, 0.12);
  color: var(--text);
  background: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(224, 48, 44, 0.28);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.8rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.card h2 {
  margin-top: 0;
}

.table-card {
  overflow: hidden;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th,
td {
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0.6rem;
  text-align: left;
}

th {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

tbody tr:hover {
  background: rgba(224, 48, 44, 0.08);
}

a {
  color: var(--accent);
}

.note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

footer {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  body {
    padding: 0 0.5rem 1.5rem;
  }

  .card {
    padding: 1.4rem;
  }

  table {
    font-size: 0.85rem;
  }
}

