   * {
      box-sizing: border-box;
    }

    :root {
      color-scheme: light;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      background: #ffffff;
      color: #000000;
    }

    a {
      color: inherit;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
    }

    a:hover {
      background-color: #ffd800;
      text-decoration: none;
    }

    .page {
      max-width: 960px;
      margin: 0 auto;
      padding: 16px;
      border-left: 1px solid #000000;
      border-right: 1px solid #000000;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      border-bottom: 1px solid #000000;
      padding-bottom: 8px;
      margin-bottom: 16px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 16px;
    }

    .site-title {
      font-size: 1.1rem;
      letter-spacing: 0.04em;
    }

    .site-nav {
      margin-left: auto;
      display: flex;
      flex-wrap: wrap;
      gap: 8px 16px;
      font-size: 0.85rem;
    }

    .site-nav a {
      text-decoration: none;
      border-bottom: 1px solid #000000;
      padding-bottom: 1px;
    }

    main {
      flex: 1 0 auto;
    }

    .layout {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .sidebar {
      width: 260px;
      flex-shrink: 0;
    }

    .content {
      flex: 1 1 auto;
      min-width: 0;
    }

    .panel {
      border: 1px solid #000000;
      padding: 8px;
      margin-bottom: 16px;
    }

    .panel-title {
      font-size: 0.85rem;
      margin: 0 0 6px 0;
      padding-bottom: 4px;
      border-bottom: 1px solid #000000;
    }

    .profile-photo {
      width: 100%;
      aspect-ratio: 3 / 3;
      border: 1px solid #000000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      text-transform: lowercase;
    }

    .profile-name {
      margin-top: 8px;
      font-size: 0.95rem;
    }

    .profile-meta {
      margin-top: 4px;
      font-size: 0.8rem;
      line-height: 1.4;
    }

    .profile-status {
      margin-top: 8px;
      font-size: 0.8rem;
      line-height: 1.4;
    }

    .profile-status .online {
      color: #008000;
      font-weight: 600;
    }

    .meta-line {
      margin-top: 2px;
    }

    .profile-section-list {
      list-style: none;
      padding: 0;
      margin: 4px 0 0 0;
      font-size: 0.8rem;
      line-height: 1.5;
    }

    .profile-section-list li span.label {
      display: inline-block;
      min-width: 80px;
    }

    .friends-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 4px;
      margin-top: 4px;
      font-size: 0.8rem;
    }

    .friends-item {
      border: 1px solid #000000;
      padding: 2px 3px;
      text-align: center;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .section-title {
      font-size: 0.9rem;
      border-bottom: 1px solid #000000;
      padding-bottom: 4px;
      margin: 0 0 8px 0;
    }

    .blog {
      border: 1px solid #000000;
      padding: 8px;
    }

    .post-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-top: 8px;
    }

    .post {
      border: 1px solid #000000;
      padding: 6px 8px;
      font-size: 0.85rem;
    }

    .post-pinned {
      border-style: dashed;
      background: #ffffff;
    }

    .post-header {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 4px 8px;
      margin-bottom: 4px;
    }

    .post-title {
      font-weight: 600;
    }

    .post-meta {
      margin-left: auto;
      font-size: 0.75rem;
      opacity: 0.85;
    }

    .post-label {
      font-size: 0.7rem;
      border: 1px solid #000000;
      padding: 1px 4px;
      text-transform: lowercase;
      background: #ffd800;
      animation: blinkFade 2s linear infinite;
    }

    @keyframes blinkFade {
      0% { background: #ffd800; }
      10% { background: #ffd800; }
      100% { background: rgba(255,216,0,0); }
    }

    .post-body {
      line-height: 1.5;
      margin-top: 4px;
    }

    .post-body p {
      margin: 0 0 4px 0;
    }

    .post-body p:last-child {
      margin-bottom: 0;
    }

    .post-reply {
      border-left: 1px solid #000000;
      padding-left: 6px;
      margin-top: 4px;
      font-size: 0.8rem;
      opacity: 0.95;
    }

    .post-quote {
      border-left: 1px solid #000000;
      padding-left: 6px;
      margin-top: 4px;
      font-style: italic;
      font-size: 0.8rem;
    }

    .post-image {
      margin-top: 4px;
    }

    .post-image-placeholder {
      width: 100%;
      border: 1px solid #000000;
      padding: 16px;
      text-align: center;
      font-size: 0.75rem;
      text-transform: lowercase;
    }

    .post-caption {
      font-size: 0.75rem;
      margin-top: 2px;
      opacity: 0.9;
    }

    .post-like {
      margin-top: 8px;
      font-size: .8rem;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .like-btn {
      border: 1px solid #000;
      background: #fff;
      cursor: pointer;
      padding: 2px 6px;
    }

    .like-btn:hover {
      background: #ffd800;
    }

    .post-actions {
      margin-top: 8px;
      font-size: .8rem;
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      border-top: 1px solid #000;
      padding-top: 6px;
    }

    .comment-toggle,
    .comment-send,
    .share-btn,
    .show-more-comments {
      border: 1px solid #000;
      background: #fff;
      cursor: pointer;
      padding: 2px 6px;
    }

    .comment-toggle:hover,
    .comment-send:hover,
    .share-btn:hover,
    .show-more-comments:hover {
      background: #ffd800;
    }

    .comment-box {
      width: 100%;
      margin-top: 8px;
      border: 1px solid #000;
      padding: 8px;
      display: none;
      flex-direction: column;
      gap: 6px;
    }

    .comment-name {
      width: 100%;
      font-family: inherit;
      border: 1px solid #000;
      padding: 4px;
    }

    .comment-text {
      width: 100%;
      font-family: inherit;
      border: 1px solid #000;
      padding: 4px;
      min-height: 80px;
      resize: none;
    }

    .comment-send {
      width: max-content;
    }

    .comment-list {
      margin-top: 8px;
    }

    .comment-item {
      border-top: 1px solid #000;
      padding: 6px 0;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .comment-meta {
      font-size: .65rem;
      opacity: .7;
    }

    .comment-text-body {
      font-size: .8rem;
      margin-top: 2px;
      white-space: pre-wrap;
    }

    .comment-menu {
      position: absolute;
      right: 0;
      top: 4px;
      cursor: pointer;
      padding: 0 6px;
    }

    .comment-menu:hover {
      background: #ffd800;
    }

    .comment-delete {
      display: none;
      font-size: .65rem;
      cursor: pointer;
      border: 1px solid #000;
      padding: 1px 4px;
      margin-top: 2px;
      width: max-content;
      background: #fff;
    }

    footer {
      flex-shrink: 0;
      border-top: 1px solid #000000;
      margin-top: 16px;
      padding-top: 8px;
      padding-bottom: 8px;
      font-size: 0.75rem;
      text-align: left;
    }

    .now-playing .np-track {
      border: 1px solid #000;
      padding: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
    }

    .now-playing .np-btn {
      width: 22px;
      height: 22px;
      border: 1px solid #000;
      background: #fff;
      font-family: inherit;
      font-size: 0.7rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .now-playing .np-btn::before {
      content: "▶";
      transform: translateX(1px);
    }

    .now-playing .np-btn.paused::before {
      content: "❚❚";
      transform: translateX(0);
    }

    .now-playing .np-btn:hover {
      background: #ffd800;
    }

    .now-playing .np-info {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .now-playing .np-artist {
      font-weight: 600;
    }

    .now-playing .np-title {
      opacity: .85;
      font-size: 0.75rem;
    }

    @media (max-width: 720px) {
      .now-playing .np-track {
        font-size: 0.78rem;
      }

      .now-playing .np-btn {
        width: 20px;
        height: 20px;
      }

      .now-playing .np-url {
        width: 100%;
        border: 1px solid #000;
        background: #fff;
        padding: 4px 6px;
        margin-top: 8px;
        font-family: inherit;
        font-size: 0.75rem;
      }

      .now-playing .np-url:focus {
        outline: none;
        border-color: #000;
      }

      .now-playing .np-url:hover {
        background: #ffd800;
      }
    }

.section-nav {
  border-bottom: 1px solid #000;
  margin-bottom: 16px;
  padding: 6px 0 6px 0;
  display: flex;
  font-size: 0.85rem;
}

.section-nav a {
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
}

.section-nav a:hover {
  background: #ffd800;
}

.section-nav {
  border-bottom: 1px solid #000;
  margin-bottom: 16px;
  padding: 6px 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.section-nav a {
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 1px;
}

.section-nav a:hover {
  background: #ffd800;
}

.nav-sep {
  opacity: .4;
  margin: 0 -2px;
}

.icon {
  width: 1.6em;
  height: 1.6em;
  border: 1px solid #000;
  display: inline-block;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}

.icon:hover {
  background-color: #ffd800;
}


.yt {
  background-image: url("/img/logo/youtube-123.svg");
  background-size: 68%;
}

.be {
  background-image: url("/img/logo/Behance--Streamline-Font-Awesome.svg");
  background-size: 72%;
}

.tg {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='black' d='M9.9 16.2l-.4 4.1c.6 0 .8-.3 1.1-.6l2.6-2.5 5.4 3.9c1 .5 1.7.2 2-.9l3.6-16.8c.4-1.4-.5-2-1.5-1.6L1.4 9.4c-1.3.5-1.3 1.3-.2 1.6l5.7 1.8L20 5.6c.6-.4 1.1-.2.7.2z'/>\
</svg>");
}

.ig {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='black' d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5a5 5 0 1 0 0 10 5 5 0 0 0 0-10zm6.5-.5a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/>\
</svg>");
}

.tw {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<path fill='black' d='M22 5.8c-.7.3-1.5.5-2.3.6a4 4 0 0 0 1.7-2.2 8 8 0 0 1-2.6 1A4 4 0 0 0 12 8a11.4 11.4 0 0 1-8.3-4.2 4 4 0 0 0 1.2 5.3 4 4 0 0 1-1.8-.5v.1a4 4 0 0 0 3.2 3.9 4 4 0 0 1-1.8.1 4 4 0 0 0 3.7 2.8A8.1 8.1 0 0 1 2 17.5 11.5 11.5 0 0 0 8.3 19c7.5 0 11.6-6.3 11.6-11.6v-.5A8.3 8.3 0 0 0 22 5.8z'/>\
</svg>");
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.release-card {
  border: 1px solid #000;
  padding: 8px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.release-card:hover {
  background-color: #ffd800;
}


.release-cover {
  border: 1px solid #000;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.release-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.release-meta {
  font-size: 0.8rem;
  line-height: 1.3;
}

.release-title {
  font-weight: 600;
}

.release-artist {
  opacity: 0.85;
}

.release-date {
  font-size: 0.7rem;
  opacity: 0.7;
}

@media (max-width: 720px) {
  .releases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


    @media (max-width: 720px) {
      .page {
        padding: 12px;
      }

      header {
        flex-direction: column;
        align-items: flex-start;
      }

      .site-nav {
        margin-left: 0;
      }

      .layout {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
      }
    }

.page-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.04em;
}

    .panel {
      border: 1px solid #000000;
      padding: 12px;
      max-width: 520px;
    }

    .panel-title {
      font-size: 0.85rem;
      margin: 0 0 8px 0;
      padding-bottom: 4px;
      border-bottom: 1px solid #000000;
    }

    .error-code {
      font-size: 3rem;
      margin: 8px 0;
      letter-spacing: 0.08em;
    }

    .error-desc {
      font-size: 0.9rem;
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .error-hint {
      font-size: 0.8rem;
      line-height: 1.5;
      border-top: 1px dashed #000;
      padding-top: 8px;
    }

.videos-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* карточка видео */
.video-item {
  display: flex;
  gap: 12px;
  border: 1px solid #000;
  padding: 8px;
  text-decoration: none;
  color: inherit;
}

.video-item:hover {
  background-color: #ffd800;
}

/* обложка */
.video-thumb {
  position: relative;
  width: 240px;
  aspect-ratio: 16 / 9;
  border: 1px solid #000;
  flex-shrink: 0;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* play символ — эстетика 00-х */
.video-play {
  position: absolute;
  bottom: 6px;
  right: 6px;
  font-size: 0.75rem;
  border: 1px solid #000;
  padding: 2px 4px;
  background: #fff;
}

/* текст справа */
.video-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
}

.video-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.video-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  opacity: 0.85;
}

.video-date {
  font-size: 0.7rem;
  opacity: 0.7;
}

@media (max-width: 720px) {
  .video-item {
    flex-direction: column;
  }

  .video-thumb {
    width: 100%;
  }
}

.about-center {
  position: relative;
  z-index: 3;
  height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-center {
  position: relative;
  z-index: 2;
}

.about-box {
  background: #fff;
  border: 1px solid #000;
  padding: 24px 28px;
  text-align: center;
}

.about-title {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-sub {
  margin-top: 6px;
  font-size: 0.65rem;
  opacity: 0.6;
}

.about-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(#000 1px, transparent 1px),
    radial-gradient(#000 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
  background-position: 0 0, 20px 20px;
  animation: pixel-drift 40s linear infinite;
}

@keyframes dots-move {
  from {
    background-position:
      0 0,
      60px 40px,
      130px 90px;
  }
  to {
    background-position:
      1200px 0,
      1260px 40px,
      1430px 90px;
  }
}




@media (max-width: 720px) {
  .about-title {
    font-size: 1.3rem;
  }

  .about-box {
    padding: 18px 20px;
  }
}

.about-space {
  position: relative;
  min-height: calc(100vh - 120px);
  overflow: hidden;
}


.dot-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.dot-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;

  background-image:
    radial-gradient(#000 1px, transparent 1px),
    radial-gradient(#000 1px, transparent 1px),
    radial-gradient(#000 1px, transparent 1px);

  background-size:
    120px 120px,
    180px 180px,
    260px 260px;

  background-position:
    0 0,
    60px 40px,
    130px 90px;

  animation: dots-move 30s linear infinite;
}


.dot-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#000 1px, transparent 1px);
  background-size: 400px 400px;
  animation: dots-fast 12s linear infinite;
  opacity: 0.4;
}

@keyframes dots-fast {
  from { background-position: 0 0; }
  to   { background-position: 1600px 0; }
}

main.about-space {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
}

.about-center {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gif-banner {
  padding: 6px;      
  overflow: hidden;    
}

.gif-banner img {
  display: block;    
  width: 100%;
  max-width: 100%;
  height: auto;

  border: 1px solid #000;
  background: #fff;
}

.gif-inner {
  padding: 4px;
  background: #fff;
  border: 1px solid #000;
}

.gif-inner img {
  display: block;
  width: 100%;
  height: auto;
}


.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.blog-login {
  font-family: monospace;
  cursor: pointer;
  border-bottom: 1px dotted #000;
}

#postBar {
  margin-bottom: 8px;
}

#newPostBtn {
  font-family: monospace;
  background: none;
  border: 1px solid #000;
  padding: 1px 6px;
}

#postBar {
  position: relative;
  z-index: 10;
}

.post-list {
  position: relative;
  z-index: 1;
}

.post-list * {
  pointer-events: auto;
}

#postBar {
  pointer-events: auto;
}


.y2k-gallery {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gal-frame {
  position: relative;
  flex: 1;
  border: 1px solid #000;
  padding: 6px;
  background: #fff;
}

.gal-img {
  display: none;
  width: 100%;
  border: 1px solid #000;
}

.gal-img.active {
  display: block;
}

.gal-counter {
  position: absolute;
  bottom: 6px;
  right: 8px;
  font-size: 0.65rem;
  border: 1px solid #000;
  padding: 1px 4px;
  background: #fff;
}

.gal-btn {
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  padding: 4px 6px;
  font-family: inherit;
}

.gal-btn:hover {
  background: #ffd800;
}



.order-btn {
  display: inline-block;
  margin-top: 6px;
  border: 1px solid #000;
  padding: 4px 8px;
  text-decoration: none;
  color: inherit;
  text-transform: lowercase;
}

.order-btn:hover {
  background: #ffd800;
}

.also-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

.also-cover {
  width: 72px;
  aspect-ratio: 1 / 1;   /* квадрат */
  border: 1px solid #000;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
}

.also-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.also-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.75rem;
  line-height: 1.3;
}

.also-artist {
  font-size: 0.65rem;   /* меньше */
  color: #777;          /* серый */
  font-weight: 400;     /* без жирного */
}

.also-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.also-meta {
  opacity: 0.85;
}


@media (max-width: 720px) {
  .also-cover {
    width: 80px;
  }

  .also-title {
    font-size: 0.9rem;
  }

  .also-artist {
    font-size: 0.72rem;
  }
}

.release-badge {
  position: absolute;
  top: 4px;
  left: 4px;

  font-size: 0.7rem;
  border: 1px solid #000000;
  padding: 1px 4px;
  text-transform: lowercase;
  background: #ffd800;

  animation: blinkFade 2s linear infinite;
  z-index: 2;
}

@keyframes blinkFade {
  0% {
    background: #ffd800;
  }
  99% {
    background: #ffffff;
  }
  100% {
    background: #ffd800;
  }
}





.release-cover {
  position: relative;
  border: 1px solid #000;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}


@media (max-width: 720px) {

  header {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
  }

  .site-title {
    width: 100%;
    text-align: center;
  }

  .site-nav {
    width: 100%;
    margin-left: 0;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;      
    row-gap: 14px;

    padding: 0 16px;
  }

  .site-nav a:not(.icon) {
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    white-space: nowrap;
  }

  .nav-sep {
    flex-basis: 100%;
    height: 0;
    border: none;
    margin: 0;
  }

  .site-nav > a:not(.icon) {
    flex: 1;
    text-align: center;
  }

.site-nav > a.icon {
  flex: 0 0 auto;
  width: 1.6em;
  height: 1.6em;
}

  .site-nav {
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .nav-sep {
    display: none;
  }
}

@media (max-width: 720px) {

  /* порядок элементов */
  .site-nav > a:not(.icon) {
    order: 1;       
  }

  .site-nav > a.icon {
    order: 3;       
  }

  .site-nav::after {
    content: "";
    order: 2;
    flex-basis: 100%;
    height: 0;
  }

}

@media (max-width: 720px) {

  .site-nav {
    row-gap: 4px; 
  }

  .site-nav > a.icon {
    margin-top: 0;
    margin-bottom: 0;
  }

}

.wide-player {
  width: 100%;
}

.wide-player .wp-track {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  margin-top: 10px;
}

.wide-player .wp-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wide-player .wp-btn::before {
  content: "▶";
  transform: translateX(1px);
}

.wide-player .wp-btn.paused::before {
  content: "❚❚";
  transform: none;
}

.wide-player .wp-btn:hover {
  background: #ffd800;
}

.wide-player .wp-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wide-player .wp-artist {
  font-weight: 600;
}

.wide-player .wp-title {
  font-size: 0.75rem;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .wide-player .wp-track {
    padding: 12px;
    gap: 10px;
  }

  .wide-player .wp-btn {
    width: 24px;
    height: 24px;
  }

  .wide-player .wp-artist {
    font-size: 0.8rem;
  }

  .wide-player .wp-title {
    font-size: 0.7rem;
  }
}

.wide-player.panel {
  max-width: none;
}

.wide-player .wp-progress {
  margin-top: 8px;
  width: 100%;
  height: 6px;
  border: 1px solid #000;
  cursor: pointer;
  position: relative;
  background: #fff;
}

.wide-player .wp-progress-bar {
  height: 100%;
  width: 0%;
  background: #000;
}

.wide-player .wp-time {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.8;
  white-space: nowrap;
}

.wide-player {
  width: 100%;
}

.wide-player .wp-track {
  width: 100%;
  border: 1px solid #000;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  margin-top: 10px;
}

.wide-player .wp-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wide-player .wp-btn::before {
  content: "▶";
  transform: translateX(1px);
}

.wide-player .wp-btn.paused::before {
  content: "❚❚";
  transform: none;
}

.wide-player .wp-btn:hover {
  background: #ffd800;
}

.wide-player .wp-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wide-player .wp-artist {
  font-weight: 600;
}

.wide-player .wp-title {
  font-size: 0.75rem;
  opacity: 0.85;
}

@media (max-width: 720px) {
  .wide-player .wp-track {
    padding: 12px;
    gap: 10px;
  }

  .wide-player .wp-btn {
    width: 24px;
    height: 24px;
  }

  .wide-player .wp-artist {
    font-size: 0.8rem;
  }

  .wide-player .wp-title {
    font-size: 0.7rem;
  }
}

.wide-player.panel {
  max-width: none;
}


.wide-player .wp-progress,
.wide-player .wp-time {
  display: none;
}


.wide-player .wp-time {
  margin-left: auto;
  font-size: 0.7rem;
  color: #aaa;
  white-space: nowrap;
}


.wide-player .wp-progress {
  margin-top: 8px;
  width: 100%;
  height: 6px;
  border: 1px solid #000;
  background: #e6e6e6; 
  cursor: pointer;
}

.wide-player .wp-progress-bar {
  height: 100%;
  width: 0%;
  background: #ffd800;
}
