* {
  box-sizing: border-box;
}

html {
  background: #d8d8d8;
}

body {
  margin: 0;
  padding: 18px 10px 40px;
  background: #d8d8d8;
  color: #111;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

#site {
  width: 940px;
  max-width: 100%;
  margin: 0 auto;
  background: #f4f4f1;
  border-left: 1px solid #888;
  border-right: 1px solid #888;
}

.banner {
  padding: 18px 18px 8px;
  background: #f4f4f1;
}

.banner-placeholder {
  position: relative;
  height: 285px;
  border-bottom: 2px solid #222;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49%, rgba(0,0,0,.04) 50%, transparent 51%),
    linear-gradient(#eeeeea, #fafaf7);
}

.banner-art {
  position: absolute;
  left: 18px;
  top: 80px;
  font-family: "Courier New", monospace;
  font-size: 18px;
  letter-spacing: 2px;
  color: #666;
}

.banner-name {
  position: absolute;
  right: 28px;
  bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.nav-wrap {
  padding: 0 18px;
}

.nav-table {
  border-collapse: collapse;
  margin-top: 0;
}

.nav-table td {
  border: 1px solid #444;
  background: #f0f0ed;
  padding: 0;
}

.nav-table a {
  display: block;
  padding: 8px 11px;
  color: #111;
  text-decoration: none;
  white-space: nowrap;
}

.nav-table a:hover,
.nav-table a.active {
  background: #ddd;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 275px;
  align-items: stretch;
  margin: 0 18px;
}

.main-content {
  padding: 28px 26px 40px 14px;
  background: #f7f7f4;
  min-height: 1000px;
}

.sidebar {
  background: #8d8b89;
  border-left: 1px solid #666;
  padding: 19px 18px 40px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
}

h2 {
  font-size: 23px;
  margin: 14px 0 20px;
}

h3 {
  margin: 0;
}

.track-block {
  text-align: center;
  margin-bottom: 40px;
}

.track-block h3 {
  font-size: 23px;
  font-weight: normal;
  margin-bottom: 4px;
}

.subtext {
  margin-top: 0;
}

audio {
  width: 320px;
  max-width: 100%;
  margin: 12px auto 0;
}

.small-note,
.tiny {
  font-size: 11px;
}

.project-cover {
  width: 72%;
  max-width: 470px;
  aspect-ratio: 1 / 1;
  margin: 15px auto 12px;
  border: 1px solid #666;
  background: #ecece8;
}

.cover-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.cover-placeholder strong {
  font-size: 21px;
}

.cover-placeholder span {
  font-size: 13px;
  color: #555;
}

.centered {
  text-align: center;
}

.project-info {
  margin-bottom: 42px;
}

a {
  color: #7d2020;
  text-decoration: underline;
}

.video-placeholder {
  height: 390px;
  border: 1px solid #bbb;
  background: #eeeeeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #777;
  margin: 10px 0 14px;
}

.video-placeholder p {
  font-family: "Courier New", monospace;
  letter-spacing: 2px;
}

.video-caption {
  text-align: center;
  font-size: 14px;
  margin-bottom: 46px;
}

.news article {
  margin: 0 0 25px;
}

.news .date {
  font-weight: bold;
}

.news p {
  line-height: 1.35;
}

.sidebar h3 {
  font-size: 20px;
  margin-bottom: 30px;
}

.side-section {
  margin-bottom: 34px;
}

.side-title {
  margin-bottom: 7px;
}

.sidebar a {
  display: block;
  color: #721f1f;
  font-weight: bold;
  font-size: 18px;
}

.sidebar p {
  line-height: 1.3;
}

footer {
  border-top: 1px solid #555;
  padding: 18px;
  text-align: center;
  background: #e8e8e4;
  font-family: Georgia, "Times New Roman", serif;
}

footer p {
  margin: 5px 0;
}

code {
  font-family: "Courier New", monospace;
  font-size: 12px;
}

/* Keep the old-site look, but make it usable on phones. */
@media (max-width: 760px) {
  body {
    padding: 0;
    background: #f4f4f1;
  }

  #site {
    border: 0;
  }

  .banner {
    padding: 10px;
  }

  .banner-placeholder {
    height: 185px;
  }

  .banner-art {
    top: 58px;
    left: 10px;
    font-size: 12px;
  }

  .banner-name {
    right: 10px;
    bottom: 10px;
    font-size: 20px;
  }

  .nav-wrap {
    padding: 0 10px;
    overflow-x: auto;
  }

  .nav-table a {
    padding: 7px 9px;
    font-size: 13px;
  }

  .layout {
    display: block;
    margin: 0 10px;
  }

  .main-content {
    padding: 20px 10px 35px;
    min-height: auto;
  }

  .sidebar {
    border-left: 0;
    border-top: 1px solid #666;
  }

  .project-cover {
    width: 90%;
  }

  .video-placeholder {
    height: 230px;
  }
}


.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #888;
  background: #111;
  margin: 10px 0 14px;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}


/* =========================================================
   OLD-SCHOOL FORUM
   ========================================================= */

.forum-header {
  margin: 0 18px;
  padding: 18px 10px 14px;
  border-bottom: 2px solid #222;
  background: #efefeb;
}

.forum-brand {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 31px;
  letter-spacing: -1px;
}

.forum-tagline {
  margin-top: 2px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  color: #444;
}

.forum-nav {
  margin-top: 0;
}

.forum-page {
  margin: 0 18px;
  padding: 16px 0 42px;
  min-height: 700px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}

.forum-crumbs {
  padding: 7px 8px;
  margin-bottom: 10px;
  border: 1px solid #888;
  background: #deded9;
}

.forum-box {
  border: 1px solid #555;
  margin-bottom: 14px;
  background: #efefec;
}

.forum-box.compact {
  background: #e7e7e2;
}

.forum-box-title {
  padding: 6px 8px;
  border-bottom: 1px solid #444;
  background: #6d6c69;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: .5px;
}

.forum-index-table,
.topic-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.forum-index-table th,
.forum-index-table td,
.topic-table th,
.topic-table td {
  border-right: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  padding: 8px;
  vertical-align: middle;
}

.forum-index-table th:last-child,
.forum-index-table td:last-child,
.topic-table th:last-child,
.topic-table td:last-child {
  border-right: 0;
}

.forum-index-table th,
.topic-table th {
  background: #b8b7b2;
  text-align: center;
  font-size: 11px;
}

.forum-index-table th.forum-col {
  width: 52%;
  text-align: left;
}

.forum-index-table .last-post-col {
  width: 22%;
}

.forum-index-table td:not(.forum-name),
.topic-table td:not(:first-child) {
  text-align: center;
}

.forum-name a,
.topic-table td:first-child a {
  font-weight: bold;
  font-size: 13px;
}

.forum-name span {
  display: block;
  margin-top: 3px;
  color: #555;
  font-size: 11px;
  line-height: 1.35;
}

.topic-table th:first-child {
  width: 58%;
  text-align: left;
}

.topic-icon {
  font-family: "Courier New", monospace;
  color: #555;
}

.forum-stats {
  padding: 8px 10px;
}

.forum-stats p {
  margin: 4px 0;
}

.old-form,
.reply-demo {
  padding: 10px;
}

.old-form label {
  display: inline-block;
  margin-right: 8px;
}

.old-form input {
  width: 130px;
  height: 22px;
  border: 1px solid #777;
  background: #fff;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

.old-form button,
.reply-demo button {
  border: 1px solid #555;
  background: #d2d2cd;
  padding: 3px 10px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

.demo-note {
  margin-left: 8px;
  color: #666;
  font-size: 10px;
}

.forum-footer-note {
  text-align: center;
  margin-top: 22px;
  color: #777;
  font-size: 10px;
  font-family: "Courier New", monospace;
}

.forum-post {
  display: grid;
  grid-template-columns: 155px 1fr;
  border-bottom: 1px solid #777;
  min-height: 170px;
}

.forum-post:last-child {
  border-bottom: 0;
}

.user-panel {
  padding: 9px;
  border-right: 1px solid #777;
  background: #d2d1cc;
  text-align: center;
}

.user-panel.admin {
  background: #c6c5bf;
}

.username {
  font-weight: bold;
  font-size: 13px;
}

.rank {
  margin: 3px 0 8px;
  font-size: 10px;
  text-transform: uppercase;
  color: #555;
}

.avatar-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
  border: 1px solid #777;
  background: #eeeeea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-family: "Courier New", monospace;
  font-size: 10px;
}

.user-meta {
  font-size: 10px;
  line-height: 1.45;
}

.post-panel {
  position: relative;
  min-height: 170px;
  background: #f4f4f0;
}

.post-head {
  padding: 6px 8px;
  border-bottom: 1px solid #bbb;
  background: #dfdfda;
  color: #444;
  font-size: 10px;
}

.post-body {
  padding: 12px 10px 40px;
  font-size: 12px;
  line-height: 1.5;
}

.signature {
  margin: 0 10px 28px;
  padding-top: 6px;
  border-top: 1px solid #aaa;
  color: #555;
  font-size: 10px;
  font-family: "Courier New", monospace;
}

.post-actions {
  position: absolute;
  right: 8px;
  bottom: 7px;
  font-size: 10px;
}

.post-actions a {
  margin-left: 6px;
}

.reply-demo textarea {
  display: block;
  width: 100%;
  min-height: 110px;
  margin-bottom: 8px;
  border: 1px solid #777;
  background: #fff;
  resize: vertical;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

@media (max-width: 760px) {
  .forum-header,
  .forum-page {
    margin-left: 10px;
    margin-right: 10px;
  }

  .forum-brand {
    font-size: 24px;
  }

  .forum-page {
    overflow-x: auto;
  }

  .forum-index-table,
  .topic-table {
    min-width: 650px;
  }

  .forum-post {
    grid-template-columns: 110px minmax(400px, 1fr);
    min-width: 560px;
  }

  .avatar-placeholder {
    width: 64px;
    height: 64px;
  }
}


.auth-status {
  margin: 0 0 10px;
  padding: 6px 8px;
  border: 1px solid #888;
  background: #deded9;
  text-align: right;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

.auth-form {
  padding: 14px;
}

.auth-form label {
  display: block;
  margin-bottom: 12px;
  font-weight: bold;
}

.auth-form input,
.auth-form textarea {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-top: 4px;
  border: 1px solid #777;
  background: #fff;
  padding: 6px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 12px;
}

.auth-form textarea {
  min-height: 180px;
}

.auth-form button {
  border: 1px solid #555;
  background: #d2d2cd;
  padding: 5px 14px;
  font-family: Verdana, Arial, sans-serif;
  font-size: 11px;
}

.form-message {
  margin-top: 10px;
  color: #721f1f;
}

/* ADMIN / MODERATION */
.admin-thread-controls{margin:0 0 10px;padding:7px 8px;border:1px solid #5f1d1d;background:#d9caca;font:11px Verdana,Arial,sans-serif}
.admin-thread-controls button,.admin-user-table button{margin-left:5px;border:1px solid #555;background:#d2d2cd;padding:3px 8px;font:10px Verdana,Arial,sans-serif;cursor:pointer}
.topic-flag,.banned-label{color:#721f1f;font-weight:bold;font-size:10px}
.admin-user-table{width:100%;border-collapse:collapse;table-layout:fixed}
.admin-user-table th,.admin-user-table td{padding:7px 8px;border-right:1px solid #aaa;border-bottom:1px solid #aaa;text-align:left}
.admin-user-table th{background:#b8b7b2;font-size:11px}


/* =========================================================
   MYSPACE PROFILE
   ========================================================= */

.myspace-profile{
  display:grid;
  grid-template-columns:280px minmax(0,1fr);
  gap:12px;
  align-items:start;
}
.myspace-left,.myspace-right{min-width:0}
.myspace-name-box{padding:4px 2px 10px}
.myspace-name-box h1{margin:0 0 4px;font: bold 24px Arial,Helvetica,sans-serif}
.profile-status{font:12px Verdana,Arial,sans-serif;color:#555;font-style:italic}
.profile-photo-box{text-align:center;margin-bottom:12px}
.profile-photo-box img{display:block;width:220px;height:220px;object-fit:cover;border:1px solid #555;background:#ddd;margin:0 auto 7px}
.profile-username{font:bold 12px Verdana,Arial,sans-serif}
.profile-rank{text-transform:uppercase;font:10px Verdana,Arial,sans-serif;color:#721f1f;margin-top:3px}

.myspace-box{border:1px solid #777;background:#efefea;margin-bottom:12px}
.myspace-box-title{
  padding:5px 7px;background:#b7b6b0;border-bottom:1px solid #777;
  font:bold 12px Verdana,Arial,sans-serif;color:#222
}
.myspace-right .myspace-box-title{
  background:#8f2525;color:#fff
}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;padding:7px}
.contact-grid a{padding:5px;font:bold 11px Verdana,Arial,sans-serif}
.profile-details{width:100%;border-collapse:collapse;font:11px Verdana,Arial,sans-serif}
.profile-details th,.profile-details td{padding:5px;border-bottom:1px solid #ccc;text-align:left;vertical-align:top}
.profile-details th{width:42%;color:#555}
.myspace-copy{padding:10px;min-height:44px;font:12px Verdana,Arial,sans-serif;line-height:1.45}
.profile-song-inner{padding:10px;font:bold 12px Verdana,Arial,sans-serif}
.profile-latest-posts{padding:6px 10px}
.profile-post-row{padding:7px 0;border-bottom:1px solid #ccc}
.profile-post-row:last-child{border-bottom:0}
.profile-post-row small{float:right;color:#666}
.profile-post-row p{margin:4px 0 0;font-size:11px}

.profile-comment{display:grid;grid-template-columns:64px 1fr;gap:8px;padding:8px;border-bottom:1px solid #bbb;font:11px Verdana,Arial,sans-serif}
.profile-comment-avatar{width:58px;height:58px;border:1px solid #777;background:#ddd;display:flex;align-items:center;justify-content:center;overflow:hidden;font-size:9px}
.profile-comment-avatar img{width:100%;height:100%;object-fit:cover}
.profile-comment small{margin-left:7px;color:#777}
.profile-comment-body{margin-top:5px;line-height:1.4}
.profile-comment-form{padding:8px}
.profile-comment-form textarea{width:100%;min-height:90px;border:1px solid #777;padding:5px;font:11px Verdana,Arial,sans-serif;display:block;margin-bottom:6px}
.profile-comment-form button{border:1px solid #555;background:#d2d2cd;padding:4px 10px;font:11px Verdana,Arial,sans-serif}

.profile-edit-form{padding:12px}
.profile-edit-form label{display:block;font:bold 11px Verdana,Arial,sans-serif;margin-bottom:11px}
.profile-edit-form input,.profile-edit-form textarea{display:block;width:100%;max-width:650px;margin-top:3px;padding:5px;border:1px solid #777;font:11px Verdana,Arial,sans-serif}
.profile-edit-form textarea{min-height:100px}
.profile-edit-form button{border:1px solid #555;background:#d2d2cd;padding:5px 13px;font:11px Verdana,Arial,sans-serif}

.member-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:10px}
.member-card{display:block;border:1px solid #888;background:#e6e6e1;padding:8px;text-align:center;text-decoration:none}
.member-card:hover{background:#d8d8d2}
.member-thumb{width:100%;aspect-ratio:1/1;background:#ccc;border:1px solid #777;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-bottom:6px;color:#666;font:10px "Courier New",monospace}
.member-thumb img{width:100%;height:100%;object-fit:cover}
.member-card strong,.member-card small,.member-card em{display:block}
.member-card strong{color:#721f1f;text-decoration:underline;font:12px Verdana,Arial,sans-serif}
.member-card small{color:#444;margin-top:3px}
.member-card em{color:#666;margin-top:4px;font-size:10px;min-height:12px}
.avatar-placeholder img{width:100%;height:100%;object-fit:cover}

@media(max-width:760px){
  .myspace-profile{grid-template-columns:1fr}
  .profile-photo-box img{width:190px;height:190px}
  .member-grid{grid-template-columns:repeat(2,1fr)}
}


/* =========================================================
   PROFILE V2 / FRIEND SPACE / UPLOADS
   ========================================================= */
.myspace-profile{grid-template-columns:300px minmax(0,1fr);gap:14px}
.myspace-name-box h1{font-size:25px}
.profile-status{min-height:18px}
.profile-photo-box img{width:260px;height:260px}
.online-status{margin-top:4px;color:#267326;font:bold 10px Verdana,Arial,sans-serif}
.myspace-subtitle{padding:7px 9px 0;color:#8b2525;font:bold 12px Verdana,Arial,sans-serif}
.friendspace-head{padding:9px 10px 3px;font:12px Verdana,Arial,sans-serif}
.top8-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;padding:10px}
.top8-friend{display:flex;flex-direction:column;text-align:center;text-decoration:none;font:bold 10px Verdana,Arial,sans-serif;min-width:0}
.top8-friend span{height:28px;overflow:hidden;color:#721f1f;text-decoration:underline}
.top8-friend img{width:100%;aspect-ratio:1/1;object-fit:cover;border:1px solid #777;background:#ddd}
.no-friends{grid-column:1/-1}
.view-all-friends{text-align:right;padding:0 10px 8px;margin:0;font-size:11px}
.friend-note{padding:0 8px 7px;font:10px Verdana,Arial,sans-serif;color:#721f1f}
.friend-request-row{padding:7px;border-bottom:1px solid #bbb;font:11px Verdana,Arial,sans-serif}
.friend-request-row button{margin-left:4px;border:1px solid #555;background:#d2d2cd;font-size:10px}
.avatar-upload-panel{display:grid;grid-template-columns:170px 1fr;gap:14px;padding:12px;align-items:start}
.avatar-upload-panel img{width:160px;height:160px;object-fit:cover;border:1px solid #666;background:#ddd}
.avatar-upload-panel input{display:block;margin-bottom:6px}
.avatar-upload-panel button{border:1px solid #555;background:#d2d2cd;padding:4px 10px;font:11px Verdana,Arial,sans-serif}
.top8-editor{padding:10px;font:11px Verdana,Arial,sans-serif}
.top8-row{display:grid;grid-template-columns:24px 1fr 70px;align-items:center;max-width:500px;padding:5px;border-bottom:1px solid #ccc}
.top8-row select{font-size:11px}
.top8-editor button{margin-top:10px;border:1px solid #555;background:#d2d2cd;padding:4px 10px;font:11px Verdana,Arial,sans-serif}
@media(max-width:760px){
  .myspace-profile{grid-template-columns:1fr}
  .profile-photo-box img{width:220px;height:220px}
  .top8-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:6px}
  .avatar-upload-panel{grid-template-columns:1fr}
}


/* =========================================================
   FORUM V2 POLISH
   ========================================================= */
.thread-pagination{
  margin:8px 0;
  padding:6px 8px;
  border:1px solid #888;
  background:#deded9;
  text-align:right;
  font:11px Verdana,Arial,sans-serif;
}
.thread-pagination a,.thread-pagination strong{margin-left:5px}

.bbcode-toolbar{
  padding:5px;
  margin-bottom:5px;
  border:1px solid #aaa;
  background:#d7d7d2;
  font:10px Verdana,Arial,sans-serif;
}
.bbcode-toolbar button{
  min-width:28px;
  margin-right:3px;
  border:1px solid #666;
  background:#efefeb;
  padding:2px 5px;
  font:10px Verdana,Arial,sans-serif;
}
.bbcode-toolbar span{margin-left:6px;color:#555}

.bbcode-quote{
  margin:8px 12px;
  padding:7px 9px;
  border:1px solid #aaa;
  border-left:4px solid #777;
  background:#e8e8e3;
  font-size:11px;
}
.quote-head{
  margin:-7px -9px 7px;
  padding:4px 6px;
  background:#d0d0cb;
  border-bottom:1px solid #aaa;
  font-weight:bold;
}
.bbcode-code{
  overflow:auto;
  padding:7px;
  border:1px inset #999;
  background:#f0f0ec;
  white-space:pre-wrap;
  font:11px "Courier New",monospace;
}
.old-smiley{
  display:inline-block;
  padding:0 2px;
  font:bold 11px "Courier New",monospace;
  background:#ddd;
  border:1px solid #aaa;
}
.edited-note{color:#777;font-style:italic}
.post-anchor{float:right;text-decoration:none;color:#777}
.inline-edit-box{
  width:100%;
  min-height:150px;
  padding:6px;
  border:1px solid #777;
  font:11px Verdana,Arial,sans-serif;
}
.inline-edit-actions{margin-top:5px}
.inline-edit-actions button{
  margin-right:4px;
  border:1px solid #555;
  background:#d2d2cd;
  padding:3px 9px;
  font:10px Verdana,Arial,sans-serif;
}
.post-actions a{margin-left:8px}
.forum-index-table td:last-child,.topic-table td:last-child{
  font-size:10px;
  line-height:1.35;
}


/* =========================================================
   DROP-IN MEDIA / HEADER
   ========================================================= */

.banner {
  padding: 12px 18px 8px;
  background: #f4f4f1;
}

.site-header-image {
  display: block;
  width: 100%;
  height: auto;
  border-bottom: 2px solid #222;
}

.featured-media {
  margin-bottom: 38px;
}

.media-panel {
  margin: 0 0 28px;
}

.media-panel h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.retro-player {
  width: 340px;
  max-width: 100%;
  border: 1px solid #777;
  background: #e2e2dd;
  font-family: "Courier New", monospace;
  font-size: 11px;
  padding: 7px;
}

.retro-title {
  border-bottom: 1px solid #999;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: bold;
}

.retro-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.retro-controls button {
  border: 1px solid #666;
  background: #cfcfca;
  padding: 2px 8px;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
}

.retro-player input[type="range"] {
  width: 100%;
  margin-top: 7px;
}

.retro-player-credit {
  margin-top: 4px;
  text-align: center;
  font-size: 9px;
  color: #666;
}

.beat-video {
  display: block;
  width: 100%;
  max-height: 520px;
  border: 1px solid #888;
  background: #111;
}

@media (max-width: 760px) {
  .banner {
    padding: 8px 10px 6px;
  }
}


/* =========================================================
   PROFILE MUSIC PLAYER V1
   ========================================================= */
.profile-song-box{background:#d6d6d1}
.myspace-player{padding:7px;background:#c8c8c3;font:10px "Courier New",monospace}
.myspace-player-screen{border:1px inset #555;background:#191d18;color:#93b777;padding:6px 7px;margin-bottom:6px;min-height:42px;text-shadow:0 0 3px rgba(147,183,119,.35)}
.myspace-player-label{font-size:8px;letter-spacing:1px;color:#728d61}
.myspace-player-title{margin-top:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:12px}
.myspace-player-controls{display:flex;align-items:center;gap:5px}
.myspace-player-controls button{width:30px;height:24px;border:1px outset #777;background:#ddd;font:11px Arial,sans-serif;padding:0;cursor:pointer}
.myspace-player-controls button:active{border-style:inset}
.myspace-player-controls button:disabled{color:#888;cursor:default}
.myspace-player-controls [data-song-time]{min-width:74px}
.myspace-player-volume-label{margin-left:auto;font-size:9px}
.myspace-player-controls [data-song-volume]{width:70px}
.myspace-player-seek{display:block;width:100%;margin:6px 0 3px}
.myspace-player-footer{text-align:right;color:#666;font-size:8px;letter-spacing:.5px}
.profile-song-fallback{padding-top:5px;text-align:center}
.profile-music-editor{margin:12px 0;padding:10px;border:1px solid #888;background:#deded9;max-width:650px}
.profile-music-editor-title{margin:-10px -10px 10px;padding:5px 7px;background:#8f2525;color:#fff;font:bold 11px Verdana,Arial,sans-serif}
.profile-music-editor-buttons{display:flex;align-items:center;gap:6px;flex-wrap:wrap}
.profile-music-editor-buttons button{border:1px solid #555;background:#d2d2cd;padding:4px 10px;font:11px Verdana,Arial,sans-serif}
.profile-music-current{margin-top:8px;font:10px Verdana,Arial,sans-serif;color:#555}


.profile-song-empty {
  margin-top: 7px;
  padding: 7px;
  border: 1px dashed #777;
  background: #d8d8d3;
  text-align: center;
  font: bold 10px "Courier New", monospace;
}

.profile-song-empty a {
  color: #721f1f;
}


/* =========================================================
   HOMEPAGE RECENT ACTIVITY
   ========================================================= */
.home-activity {
  margin: 0 0 30px;
}

.home-activity-box {
  border: 1px solid #777;
  background: #e8e8e3;
  font: 11px Verdana, Arial, sans-serif;
}

.home-activity-title {
  padding: 5px 7px;
  border-bottom: 1px solid #777;
  background: #c7c7c1;
  font: bold 11px "Courier New", monospace;
  letter-spacing: 1px;
}

.home-activity-row {
  display: flex;
  gap: 7px;
  padding: 7px 8px;
  border-bottom: 1px solid #c0c0ba;
  background: #ecece7;
}

.home-activity-row.alt {
  background: #e2e2dd;
}

.home-activity-icon {
  flex: 0 0 12px;
  font: bold 14px "Courier New", monospace;
  color: #555;
}

.home-activity-main {
  min-width: 0;
}

.home-activity-thread {
  font-weight: bold;
}

.home-activity-meta {
  margin-top: 2px;
  color: #666;
  font-size: 9px;
}

.home-activity-snippet {
  margin-top: 3px;
  color: #444;
  font-size: 10px;
}

.home-activity-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 5px 7px;
  background: #d0d0ca;
  font: bold 9px Verdana, Arial, sans-serif;
}

.home-activity-loading,
.home-activity-empty {
  padding: 12px 8px;
  text-align: center;
  color: #666;
  font-style: italic;
}

@media (max-width: 620px) {
  .home-activity-footer {
    display: block;
  }

  #home-newest-member {
    display: block;
    margin-top: 4px;
  }
}
