/* ===== BASE RESET ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, tahoma, verdana, sans-serif;
}

body {
  background: #ff00a8 url(https://bettysgraphics.neocities.org/images/backgrounds/pattern%20548.gif);
  padding: 32px;
  font-size: 11px;
  color: #8fa18f;
  letter-spacing: 1px;
  line-height: 1.2;
}

a { color: #0022ff; text-decoration: none; }
a:hover { color: #00ff00; }

/* ===== LAYOUT ===== */
.container {
  max-width: 660px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.96);
  border: 1px solid #22ff00;
  border-radius: 4px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.55);
}

/* ===== HEADER ===== */
.header {
  position: relative;
  overflow: hidden;
  padding: 40px 10px 30px;
  text-align: center;
  border: 1px dashed #ff00a8;
  border-radius: 4px;
  background: url("https://files.catbox.moe/zc09rx.gif");
  background-size: cover;
  background-position: center;
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3), transparent 70%);
  pointer-events: none;
}

.header-inner { position: relative; z-index: 2; }

.site-name {
  margin-bottom: 4px;
  color: #8fa18f;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
  font: italic 19px georgia, serif;
}

.sub-title {
  color: #9aa79a;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.7);
  font-size: 10px;
}

/* ===== NAV ===== */
.navi {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.navi a {
  display: block;
  padding: 3px 5px;
  text-align: center;
  text-transform: lowercase;
  color: #ff00f0;
  background: #0012ff;
  border: 1px solid #c7d8c4;
  border-radius: 4px;
  transition: 0.2s ease;
  font: italic 13px georgia, serif;
}

.navi a:hover {
  color:#888;
  background: #eef5ee;
  transform: translateY(-1px);
}

/* ===== SECTIONS ===== */
.intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
}
.intro > div {
  min-width: 0;
}
.top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ===== BOXES ===== */
.note, .now, .box {
  padding: 8px;
  border-radius: 4px;
}

.note, .box {
  background: #fff;
  border: 1px dashed #c7d8c4;
}

.now {
  background: #fbfcfa;
  border: 1px dashed #c7d8c4;
      min-width: 0;
}
.now iframe {
  width: 100%;
  max-width: 100%;
  display: block;
}
.soft { background: #fbfcfa; }

.title {
  margin-bottom: 6px;
  color: #8fa18f;
  text-transform: lowercase;
  font: italic 14px georgia, serif;
}

/* ===== LISTS ===== */
.list { list-style: none; }

.list li {
  padding: 2px 0;
  border-bottom: 1px dotted #e7eee5;
}

.list li:last-child { border-bottom: none; }

/* ===== QUOTE + FOOTER ===== */
.full { grid-column: span 2; }

.quote {
  padding: 12px 10px;
  text-align: center;
  color: #ffffff;
  background: #0500ff;
  border: 1px dashed #d5dfd2;
  font: italic 13px georgia, serif;
}

.footer {
  padding: 8px;
  text-align: center;
  color: #ffffff;
  background: #000;
  border: 1px solid #e3ebe2;
  border-radius: 4px;
}

.icon { opacity: 0.6; }

.horizontal-stamp-scroller {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  border: 2px dashed #000;
  padding: 10px 0;
    min-width: 0;
}

.stamp-track {
  display: flex;
  width: max-content;
  animation: scrollStamps 18s linear infinite;
  align-items: center;
}

.stamp-img {
  height: 41px;
  width: auto;
  margin-right: 10px;
  flex-shrink: 0;
}

@keyframes scrollStamps {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.horizontal-stamp-scroller:hover .stamp-track {
  animation-play-state: paused;
}

.stamp-img {
  height: 41px;
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .navi { grid-template-columns: repeat(2, 1fr); }
  .intro, .top, .main { grid-template-columns: 1fr; }
  .full { grid-column: span 1; }
}