@@ -5,145 +5,169 @@ html, body {
}

body {
  overflow: hidden;
  background: #000;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  color: white;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.embed-section {
  width: min(560px, 90vw);
.main-layout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: min(960px, 94vw);
}

.embed-section,
.chief-panel {
  max-height: 78vh;
  overflow-y: auto;
  padding: 18px;
  background: rgba(20, 20, 20, 0.78);
  border: 1px solid #c4c4c4;
  border-right-color: #5e5e5e;
  border-bottom-color: #5e5e5e;
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
}

.embed-section {
  flex: 1 1 560px;
  min-width: 0;
}

.embed-section iframe {
  width: 500px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}


.thread-list {
  margin-top: 10px;
  max-height: 43vh;
  overflow-y: auto;
  padding-right: 4px;
}

.thread-list::-webkit-scrollbar {
.thread-list::-webkit-scrollbar,
.chief-panel::-webkit-scrollbar {
  width: 10px;
}

.thread-list::-webkit-scrollbar-track {
.thread-list::-webkit-scrollbar-track,
.chief-panel::-webkit-scrollbar-track {
  background: rgba(15, 15, 20, 0.75);
  border: 1px solid #6d6d6d;
}

.thread-list::-webkit-scrollbar-thumb {
.thread-list::-webkit-scrollbar-thumb,
.chief-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(#7fa4ef, #4c72cb);
  border: 1px solid #d7e5ff;
}

.thread-box {
  margin-top: 10px;
  padding: 12px 14px;
  text-align: left;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #f3f8ff;
  text-shadow: 0 1px 0 #031431, 0 0 6px rgba(124, 173, 255, 0.45);
  background: linear-gradient(180deg, #537dda 0%, #335ab1 48%, #213f83 100%);
  border: 2px solid #e5edff;
  border-right-color: #1c3370;
  border-bottom-color: #1c3370;
  border-radius: 0;
  box-shadow:
    inset 1px 1px 0 #bfd1ff,
    inset -1px -1px 0 #152f6d,
    0 0 0 1px rgba(16, 36, 80, 0.65),
    0 3px 8px rgba(0, 0, 0, 0.45);
  text-transform: lowercase;
  position: relative;
}

.thread-box::before {
  content: "thread update";
  position: absolute;
  top: -10px;
  left: 12px;
  padding: 1px 8px 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #f8fcff;
  background: linear-gradient(#6e96ef, #3a61bf);
  border: 1px solid #dce7ff;
  border-right-color: #1f3a79;
  border-bottom-color: #1f3a79;
  box-shadow: inset 1px 1px 0 #ccdcff, inset -1px -1px 0 #1e3b7d;
}

.thread-text {
  margin: 0 0 10px;
}

.music-thread iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  margin: 0;
}

.soundcloud-meta {
  margin-top: 8px;
  font-size: 10px;
  color: #c8d7ff;
  line-break: anywhere;
  word-break: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: Tahoma, Verdana, Arial, sans-serif;
  font-weight: 700;
}

.soundcloud-meta a {
  color: #dce8ff;
  text-decoration: none;
}

.soundcloud-meta a:hover {
  text-decoration: underline;
}

.chief-panel {
  flex: 0 0 280px;
}

.chief-photo {
  display: block;
  width: 100%;
  border: 2px solid #d7d7d7;
  border-right-color: #8e8e8e;
  border-bottom-color: #8e8e8e;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
}

.chief-thread {
  margin-top: 12px;
  font-size: 17px;
}

@media (max-width: 980px) {
  .main-layout {
    flex-direction: column;
  }

  .chief-panel {
    flex: initial;
    width: auto;
  }
}
