/* ====================== 
   NVXV SODA ROOM - CHONKY MODE
   ====================== */

body {
  margin: 0;
  padding: 2.5rem 1rem;
  background: #2b1d17;
  font-family: "Special Elite", "Courier New", monospace;
  color: #4a2f24;
  line-height: 1.65;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.page {
  width: 100%;
  max-width: 820px;           /* ← PROPERLY CHONKY */
  margin: 0 auto;
}

/* TITLE */
.title {
  color: #f5e6d3;
  text-align: center;
  font-size: 3rem;
  margin: 0.5rem 0 1.6rem;
  letter-spacing: 0.12em;
  text-shadow: 4px 4px 0 #3a221b;
}

/* MOOD PILL */
.mood-pill {
  background: #7b1f22;
  color: #f5e6d3;
  padding: 0.7rem 1.6rem;
  border-radius: 9999px;
  text-align: center;
  margin-bottom: 2.2rem;
  box-shadow: 0 5px 0 #3a221b;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
}

/* CARDS */
.counter-card,
.notebook-card,
.rss-card {
  background: #f5e6d3;
  color: #4a2f24;
  border: 3px solid #7b1f22;
  border-radius: 24px;
  padding: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 0 #3a221b;
}

/* HEADINGS */
h2 {
  margin: 0 0 1.2rem;
  color: #7b1f22;
  font-size: 1.55rem;
}

/* LISTS */
.activities li,
.rss-feed li {
  padding: 0.85rem 0;
  border-top: 1px dashed #b08a6a;
  position: relative;
  padding-left: 1.8rem;
}

.activities li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #7b1f22;
  font-size: 1.25rem;
}

/* RSS LINK */
.rss-link {
  display: inline-block;
  margin-top: 1.3rem;
  color: #f5e6d3;
  background: #7b1f22;
  padding: 0.65rem 1.3rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 0 #3a221b;
  transition: all 0.25s ease;
}

.rss-link:hover {
  background: #d96a1b;
  transform: translateY(-3px);
  box-shadow: 0 7px 0 #3a221b;
}

/* FOOTER */
.footer {
  text-align: center;
  color: #f5e6d3;
  opacity: 0.78;
  font-size: 0.98rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px dashed #b08a6a;