@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/neuemontreal_regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Montreal';
  src: url('fonts/neuemontreal_bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}
body {
  background: #000;
  color: #fff;
  font-family: 'Neue Montreal', Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.container {
  max-width: 480px;
  width: 98vw;
  margin: 24px 0;
  padding: 24px 12px;
  box-sizing: border-box;
}
h1 {
  font-size: 2.1em;
  font-weight: bold;
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
.date {
  font-size: 1em;
  margin-bottom: 1.2em;
  color: #ccc;
}
h2, h3 {
  font-size: 1.08em;
  font-weight: bold;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}
b, strong {
  font-weight: bold;
}
ul {
  margin: 0.5em 0 1em 1.2em;
  padding: 0;
}
li {
  margin-bottom: 0.6em;
  line-height: 1.5;
}
p {
  margin: 0.6em 0;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 18px 4vw;
    margin: 12px 0;
  }
  h1 {
    font-size: 1.6em;
  }
  h2, h3 {
    font-size: 1em;
  }
  .date {
    font-size: 0.95em;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 10px 2vw;
    margin: 6px 0;
  }
  h1 {
    font-size: 1.2em;
  }
  h2, h3 {
    font-size: 0.98em;
  }
  .date {
    font-size: 0.9em;
  }
  ul {
    margin-left: 1em;
  }
  li, p {
    font-size: 0.98em;
  }
} 