/* =========================
   GLOBAL RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   BODY / BACKGROUND
========================= */
body {
  font-family: "Press Start 2P", monospace;
  color: #e6e1d6; 
  min-height: 100vh;
 background-image: url(https://samoths-slop.neocities.org/Website%20Sketches.png);
  background-size: cover;
}

/* =========================
   TOP NAV BAR
========================= */
.top-bar {
  background: linear-gradient(90deg, #5a3c91, #2a1b4a);
  border-bottom: 4px solid #000;
  padding: 12px 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar h1 {
  font-size: 14px;
  color: #f6e27f;
  text-shadow: 2px 2px #000;
}

.top-bar nav a {
  margin-left: 12px;
  text-decoration: none;
  color: #e6e1d6;
}

.top-bar nav a:hover {
  color: #f6e27f;
  text-shadow: 2px 2px #000;
}

/* =========================
   MAIN LAYOUT
========================= */
.layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px;

  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 16px;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================
   PANELS (DEATH CITY STYLE)
========================= */
.panel {
  background: linear-gradient(180deg, #2b2b35, #1a1a24);
  border: 4px solid #3a3a44;
  padding: 16px;
  border-radius: 50px;

  box-shadow:
    6px 6px 0 #06040a,
    inset 0 0 0 2px #000;

  transform: rotate(-0.8deg);
}

.panel:nth-child(even) {
  transform: rotate(0.8deg);
}

/* =========================
   PANEL HEADERS (BONE SIGNS)
========================= */
.panel h2 {
  font-size: 12px;
  margin-bottom: 12px;
  padding: 6px 10px;

  background: #e6e1d6;
  color: #000;

  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;

  display: inline-block;
  transform: rotate(-1deg);
}

/* =========================
   FEATURED / MOON GLOW
========================= */
.featured {
  border-color: #f6e27f;
  box-shadow:
    0 0 20px rgba(246, 226, 127, 0.35),
    6px 6px 0 #06040a;
}

.featured:hover {
  box-shadow:
    0 0 30px rgba(246, 226, 127, 0.6),
    8px 8px 0 #000;
}

/* =========================
   TEXT / LISTS
========================= */
p {
  font-size: 10px;
  line-height: 1.6;
}

.menu {
  list-style: none;
}

.menu li {
  margin-bottom: 10px;
  cursor: pointer;
}

.menu li:hover {
  color: #f6e27f;
  text-shadow: 2px 2px #000;
}

/* =========================
   IMAGE / WINDOW FRAMES
========================= */
.image-box {
  height: 200px;
  margin-bottom: 12px;

  background: #111;
  border: 5px solid #000;

  box-shadow:
    inset 0 0 0 3px #3a3a44,
    4px 4px 0 #000;
}

.image-box.small {
  height: 140px;
}

/* =========================
   PLACEHOLDERS
========================= */
.placeholder {
  border: 2px dashed #5a3c91;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #cfc8b8;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 14px;
  font-size: 9px;
  color: #b9b3a7;
}

/* =========================
   OPTIONAL SMILING MOON
========================= */
.moon {
  position: fixed;
  top: 20px;
  right: 30px;

  width: 80px;
  height: 80px;
  border-radius: 50%;

  background: #f6e27f;
  box-shadow: 0 0 25px rgba(246, 226, 127, 0.7);

  font-size: 38px;
  line-height: 80px;
  text-align: center;

  color: #000;
}