html,
body {
  height: 100%;
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: #0b0b0b;
  color: #ddd;
}
.page {
  max-width: 980px;
  margin: 18px auto;
  border: 4px solid #222;
  background: linear-gradient(#071018, #0b0b0b);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.8);
}
header {
  padding: 18px 22px;
  border-bottom: 3px solid #0a5b3a;
  background: linear-gradient(#062, #0a3);
}
header h1 {
  margin: 0;
  color: #fff;
  font-size: 36px;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #000;
}
/* table layout like classic MySpace */
.container {
  display: flex;
  gap: 16px;
  padding: 18px;
}
.left {
  width: 260px;
}
.main {
  flex: 1;
}
.profile-pic {
  width: 200px;
  height: 200px;
  background: #222;
  border: 4px solid #111;
  display: block;
  margin-bottom: 10px;
  object-fit: cover;
}
.small-pic {
  width: 60px;
  height: 60px;
  border: 3px solid #111;
  object-fit: cover;
  margin: 6px;
}
.box {
  background: rgba(10, 10, 10, 0.6);
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #183f2a;
}
a {
  color: #9fffb8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.nav {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.blurb {
  font-size: 14px;
  line-height: 1.4;
  color: #cfdadb;
}
.friends {
  display: flex;
  flex-wrap: wrap;
}
.friend {
  width: 64px;
  height: 64px;
  margin: 6px;
  overflow: hidden;
}
.friend img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #111;
}
.song-list li {
  margin: 6px 0;
}
.ghost-button {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #295a3f;
  border-radius: 4px;
  background: transparent;
  color: #bfffd0;
}
.marquee {
  background: #071;
  padding: 6px;
  color: #fff;
  margin-bottom: 12px;
}
/* grainy border effect */
.banner-photos {
  display: flex;
  gap: 8px;
}
.banner-photos img {
  width: 100%;
  height: auto;
  border: 3px solid #111;
  filter: contrast(1.1) saturate(0.9);
}
/* Comments style */
.comment {
  border-top: 1px dashed #204b33;
  padding: 8px 0;
  color: #cdd;
}
footer {
  padding: 10px 18px;
  border-top: 3px solid #041;
  background: linear-gradient(#041, #062);
  color: #9fd;
}
/* tiny screen fixes */
@media (max-width: 720px) {
  .container {
    flex-direction: column;
  }
  .left {
    width: 100%;
  }
  .profile-pic {
    width: 120px;
    height: 120px;
  }
}
