body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-image: url("background.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed;
  color: white;
}

.layout {
  width: 780px; /* KEY: classic layout width */
  margin: 20px auto;
}

.page-border {
  padding: 6px;
  background: #ff00ff;
}

.page {
  background: black;
  padding: 14px;
  box-sizing: border-box;
}

.username img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


.box {
  background: #141414;
  color: white;
  padding: 6px 10px;
  box-sizing: border-box;
  border: 1px solid #333;
}

.box.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills perfectly without stretching weirdly */
  object-position: center;
  border: 2px solid #ff00ff;
  display: block;
}


/* proportions finally fixed */
.top-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px;
}

.photo {
  height: 200px; /* smaller, MySpace scale */
  display: flex;
  align-items: center;
  justify-content: center;
}

.username {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: #141414;
}

.mid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.songs {
  min-height: 180px;
  font-size: 0.85rem;
}

.blinkies {
  min-height: 180px;
  overflow-y: auto;
  font-size: 0.8rem;
  background: #141414;
}

.thoughts {
  margin-top: 10px;
  min-height: 260px;
  font-size: 0.85rem;
  background: #141414;
}

.blinkie-wall {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;          /* vertical / horizontal gaps */
  justify-content: flex-start;
}

/* each individual blinkie stamp */
.blinkie {
  width: 99px;           /* your stamp size */
  height: 56px;
  object-fit: cover;
  display: block;
  image-rendering: pixelated; /* crunchy retro look */
}

/* make the layout feel jumbled / random */
.blinkie:nth-child(3n) {
  transform: rotate(-3deg);
}

.blinkie:nth-child(4n) {
  transform: rotate(2deg) translateY(2px);
}

.blinkie:nth-child(5n) {
  transform: rotate(-1deg) translateY(-3px);
}

.blinkie:nth-child(7n) {
  transform: rotate(3deg);
}
