body {
  background-color: #000000;
  background-image: radial-gradient(#ffffff 18%, transparent 19%),
                     radial-gradient(#ffffff 18%, transparent 19%);
  background-size: 28px 28px;
  background-position: 0 0, 14px 14px;
  font-family: 'Better VCR-JP', monospace;
  color: #000;
  padding: 20px;
  margin: 0;
}

.site-container {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  background-color: #000000;
  padding: 30px;
  box-shadow: 10px 10px 0px #000000;
}

.bento-grid {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 12px;
}

.banner-box {
  grid-column: 1 / -1;
  background: #ffffff;
  border: 2px solid #000000;
  padding: 15px;
  text-align: center;
}

.box {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 12px;
  margin-bottom: 12px;
}

.header-bar {
  background: #000000;
  color: #ffffff;
  padding: 4px 8px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: lowercase;
}

.dancing-text {
  font-family: 'Bitcount Prop Single', monospace;
  font-size: 2.2rem;
  text-align: center;
  margin: 5px 0;
}

.dancing-text span {
  display: inline-block;
  animation: tilt 1.8s infinite ease-in-out;
}

@keyframes tilt {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(-3deg); }
  100% { transform: rotate(0deg); }
}

.dancing-text span:nth-child(1) { animation-delay: 0.0s; }
.dancing-text span:nth-child(2) { animation-delay: 0.1s; }
.dancing-text span:nth-child(3) { animation-delay: 0.2s; }
.dancing-text span:nth-child(4) { animation-delay: 0.3s; }
.dancing-text span:nth-child(5) { animation-delay: 0.4s; }
.dancing-text span:nth-child(6) { animation-delay: 0.5s; }
.dancing-text span:nth-child(7) { animation-delay: 0.6s; }
.dancing-text span:nth-child(8) { animation-delay: 0.7s; }
.dancing-text span:nth-child(9) { animation-delay: 0.8s; }
.dancing-text span:nth-child(10) { animation-delay: 0.9s; }
.dancing-text span:nth-child(11) { animation-delay: 1.0s; }

.nav-button {
  display: block;
  padding: 6px;
  margin: 4px 0;
  border: 1px dashed #000000;
  text-decoration: none;
  color: #000000;
  background: #f4f4f4;
}

.nav-button:hover {
  background: #000000;
  color: #ffffff;
}

.chat-bubble {
  background: #f0f0f0;
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.player-box {
  border: 2px solid #000;
  padding: 10px;
  text-align: center;
  background: #fdfdfd;
}

.lace-edge {
  position: absolute;
  z-index: 2;
}

.lace-top {
  top: 0; left: 0; right: 0;
  height: 24px;
  background-image: url('/lace.png');
  background-repeat: repeat-x;
  background-position: top left;
  transform: scaleY(-1);
}

.lace-bottom {
  bottom: 0; left: 0; right: 0;
  height: 24px;
  background-image: url('/lace.png');
  background-repeat: repeat-x;
  background-position: top left;
  transform: scaleY(1);
}

.lace-left {
  top: 0; bottom: 0; left: 0;
  width: 24px;
  background-image: url('/lace-side.png');
  background-repeat: repeat-y;
  background-position: top left;
  transform: scaleX(-1);
}

.lace-right {
  top: 0; bottom: 0; right: 0;
  width: 24px;
  background-image: url('/lace-side.png');
  background-repeat: repeat-y;
  background-position: top left;
  transform: scaleX(1);
}

@font-face {
  font-family: 'Better VCR-JP';
  src: url('/fonts/BetterVCR-25.09.ttf') format('truetype');
}

.tag-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.tag-box {
  background: #000000;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.85rem;
  text-align: center;
}

.todo-list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}

.todo-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}

.todo-list li::before {
  content: "";
  background-image: url('/wingz.gif');
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 2px;
}
.badge-marquee {
  overflow: hidden;
  white-space: nowrap;
  border: 2px solid #000000;
  background: #ffffff;
  padding: 1px 0;
}

.badge-track {
  display: inline-flex;
  gap: 6px;
  animation: scroll-left 30s linear infinite;
}

.badge-track img {
  height: 20px;
  display: block;
}

@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.newspaper-title {
  font-family: 'Bitcount Prop Single', monospace;
  font-size: 2.5rem;
  text-align: center;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.newspaper-subtitle {
  text-align: center;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
}

.col-blog {
  grid-column: 1 / 3;
}

.col-sidebar {
  grid-column: 3;
}

.blog-container {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 16px;
}

.blog-entry {
  background: #ffffff;
  border: 2px solid #000000;
  padding: 16px;
  margin-bottom: 12px;
}

.entry-headline {
  margin: 0 0 4px 0;
  font-size: 1.4rem;
}

.entry-byline {
  font-size: 0.8rem;
  font-style: italic;
  color: #444;
  margin: 0 0 10px 0;
}

.entry-divider {
  width: 100%;
  display: block;
  margin: 8px 0;
}
.calendar-box {
  padding: 0;
  overflow: hidden;
}

.calendar-header {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.calendar-month {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
}

.calendar-year {
  display: block;
  font-size: 0.9rem;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.8rem;
}

.calendar-table th {
  padding: 6px 0;
  font-style: italic;
  border-bottom: 1px solid #000000;
}

.calendar-table td {
  padding: 8px 0;
  border: 1px solid #ddd;
}

.calendar-table td.today {
  background: #000000;
  color: #ffffff;
  font-weight: bold;
}
.col-skz {
  grid-column: 1 / 3;
}
.nav-button {
  display: block;
  padding: 6px;
  margin: 4px 0;
  border: 1px dashed #000000;
  text-decoration: none;
  color: #000000;
  background: #f4f4f4;
  border-radius: 8px; /* add this line */
}
.tag-box {
  background: #000000;
  color: #ffffff;
  padding: 8px 12px;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 8px; /* add this line */
}