.wc-media-carousel-shell {
      width: min(100%, 735px);
	  margin-top:10px;
    }

    .wc-media-carousel {
      position: relative;
      width: 100%;
      height: 602px;
      max-height: calc(100vh - 92px);
      overflow: hidden;
      border: 0px solid rgba(255, 255, 255, 0.18);
      border-radius: 8px;
     /* background: var(--panel-bg);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);*/
    }

    .wc-media-stage {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .wc-media-panel {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #050b16;
      opacity: 0;
      visibility: hidden;
      transition: opacity 280ms ease, visibility 280ms ease;
    }

    .wc-media-panel[data-active="true"] {
      opacity: 1;
      visibility: visible;
    }

    .wc-media-panel img,
    .wc-media-panel video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #050b16;
    }

    .wc-media-video-wrap {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .wc-media-video-overlay {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 24px;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.44));
      transition: opacity 180ms ease, visibility 180ms ease;
    }

    .wc-media-video-overlay.is-hidden {
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
    }

    .wc-media-play-button {
      display: inline-grid;
      grid-template-columns: auto auto;
      align-items: center;
      gap: 12px;
      min-height: 54px;
      padding: 0 22px;
      border: 1px solid rgba(255, 255, 255, 0.42);
      border-radius: 999px;
      background: rgba(215, 25, 54, 0.92);
      color: #fff;
      font: 700 clamp(15px, 2.5vw, 18px) / 1 Arial, "Microsoft YaHei", sans-serif;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
      -webkit-tap-highlight-color: transparent;
    }

    .wc-media-play-button::before {
      content: "";
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 16px solid #fff;
    }

    .wc-media-play-tip {
      position: absolute;
      top: calc(50% + 48px);
      left: 50%;
      width: min(88%, 360px);
      margin: 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: 14px;
      line-height: 1.5;
      text-align: center;
      transform: translateX(-50%);
    }

    .wc-media-nav-button {
      position: absolute;
      top: 50%;
      z-index: 3;
      display: grid;
      place-items: center;
      width: clamp(42px, 6vw, 58px);
      height: clamp(42px, 6vw, 58px);
      border: 1px solid var(--control-border);
      border-radius: 50%;
      background: var(--control-bg);
      color: #fff;
      cursor: pointer;
      transform: translateY(-50%);
      transition: background 160ms ease, transform 160ms ease;
      -webkit-tap-highlight-color: transparent;
	  background:#333;
    }

    .wc-media-nav-button:hover,
    .wc-media-nav-button:focus-visible {
      background: rgba(215, 25, 54, 0.88);
      transform: translateY(-50%) scale(1.04);
      outline: none;
    }

    .wc-media-nav-button.wc-media-prev {
      left: clamp(10px, 2vw, 20px);
    }

    .wc-media-nav-button.wc-media-next {
      right: clamp(10px, 2vw, 20px);
    }

    .wc-media-nav-button span {
      width: 14px;
      height: 14px;
      border-top: 3px solid currentColor;
      border-right: 3px solid currentColor;
    }

    .wc-media-nav-button.wc-media-prev span {
      transform: rotate(-135deg) translate(-1px, -1px);
    }

    .wc-media-nav-button.wc-media-next span {
      transform: rotate(45deg) translate(-1px, 1px);
    }

    .wc-media-indicators {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 16px;
    }

    .wc-media-indicator {
      width: 34px;
      height: 6px;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.32);
      cursor: pointer;
      padding: 0;
    }

    .wc-media-indicator[aria-current="true"] {
      background: var(--accent);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 720px) {
      body {
        padding: 10px;
      }

      .wc-media-carousel {
        height: auto;
        aspect-ratio: 4 / 3;
        min-height: 220px;
        max-height: 72vh;
      }

      .wc-media-nav-button {
        background: rgba(7, 14, 28, 0.62);
      }
    }

    @media (max-width: 420px) {
      .wc-media-carousel {
        aspect-ratio: 3 / 4;
      }

      .wc-media-play-button {
        min-height: 48px;
        padding: 0 18px;
      }
    }
