/* Global layout */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0; /* important: no padding here */
  line-height: 1.65;
  color: #e8e8e8;
  background: #0d0d0f;
  position: relative;
}

/* Top-left floating logo */
.top-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 360px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
}

/* Content container */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px 40px; 
  /* top padding pushes content BELOW the floating logo */
}

/* Headings */
h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffffff;
}

h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #f2f2f2;
}

/* Paragraphs */
p {
  margin-bottom: 16px;
  color: #d0d0d0;
}

/* Links */
a {
  color: #4da3ff;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Footer links */
.links p {
  margin: 8px 0;
}

/* Card blocks */
.card {
  background: #16161a;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #1f1f23;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  body {
    padding: 28px 18px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 20px;
  }

  .top-logo { 
  position: absolute;
  top: 20px;
  left: 20px;
  width: 360px;
  height: auto;
  opacity: 0.85;
  pointer-events: none;
  }
}