/* =========================
   Base
   ========================= */

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

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Ubuntu, Cantarell, "Helvetica Neue",
               Arial, sans-serif;
  background-color: #0e1116;
  color: #e6e6e6;
}

body {
  line-height: 1.6;
}

/* =========================
   Links
   ========================= */

a {
  color: #5fb3a2;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   Header
   ========================= */

.site-header {
  border-bottom: 1px solid #1f242c;
  background: linear-gradient(180deg, #0e1116, #0b0e13);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.logo {
  width: 96px;
  height: auto;
}

.header-text h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #dff5f1;
}

.subtitle {
  margin-top: 6px;
  color: #b8c2c0;
}

.url {
  margin-top: 8px;
  font-family: monospace;
  font-size: 0.95rem;
}

/* =========================
   Main content
   ========================= */

.content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* =========================
   Cards
   ========================= */

.card {
  background-color: #121722;
  border: 1px solid #1f2733;
  border-radius: 8px;
  padding: 24px;
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #e9f7f4;
}

.card p {
  color: #c8d2d0;
  margin-bottom: 16px;
}

/* =========================
   Buttons
   ========================= */

.button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  background-color: #5fb3a2;
  color: #0e1116;
  font-weight: 500;
}

.button:hover {
  background-color: #78c8b8;
  text-decoration: none;
}

.button.secondary {
  background-color: transparent;
  border: 1px solid #5fb3a2;
  color: #5fb3a2;
}

.button.secondary:hover {
  background-color: rgba(95, 179, 162, 0.1);
}

/* =========================
   Links list
   ========================= */

.links {
  list-style: none;
}

.links li {
  margin-bottom: 8px;
}

.links a {
  font-family: monospace;
}

/* =========================
   Warning / Disclaimer
   ========================= */

.card.warning {
  grid-column: 1 / -1;
  background-color: #14121a;
  border: 1px solid #3a2a3f;
}

.card.warning h2 {
  color: #f2c94c;
}

.card.warning p {
  color: #e2d9e6;
}

/* =========================
   Footer
   ========================= */

.site-footer {
  margin-top: 60px;
  border-top: 1px solid #1f242c;
  background-color: #0b0e13;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer p {
  color: #9aa4a2;
  font-size: 0.9rem;
}

.partners {
  display: flex;
  gap: 16px;
}

.partner {
  height: 32px;
  opacity: 0.8;
}

.partner:hover {
  opacity: 1;
}

/* =========================
   Responsive tweaks
   ========================= */

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .logo {
    width: 80px;
  }
}
