body {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: -0.1px;

  color: #000;
  background: #fff;

  margin: 16px;
  max-width: 520px;
}
@media (max-width: 600px) {
  body {
    margin: 12px;
  }
}

/* Headings stay understated */
h1, h2, h3 {
  font-size: 14px;
  font-weight: normal;
  margin: 0 0 10px 0;
}

h1 {
  margin-bottom: 20px;
}

p {
  margin: 0 0 12px 0;
}

/* Classic link styling */
a {
  color: #0000EE;
  text-decoration: underline;
}

a:visited {
  color: #0000EE;
}

a:hover {
  text-decoration: none;
}

hr {
  border: none;
  border-top: 1px solid #000;
  margin: 20px 0;
}

ul {
  margin: 0 0 12px 15px;
  padding: 0;
}

li {
  margin-bottom: 5px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}

/* --- Mobile adjustment (subtle but important) --- */
@media (max-width: 600px) {
  body {
    font-size: 14px;
    margin: 12px;
  }

  h1, h2, h3 {
    font-size: 20px;
  }
}
.ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ticker-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 5s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(1);
  }
  to {
    transform: translateX(-100%);
  }
}