.cantoverse-page .store-button-youtube {
  position: relative;
  gap: 7px;
  justify-content: center;
  width: 190px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid #242424;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
  color: #1f1f1f;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.05;
  padding: 0 14px;
  text-align: center;
  white-space: normal;
}

.cantoverse-page .store-button-youtube::before {
  content: "▶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 45px;
  height: 32px;
  border-radius: 9px;
  background: #ff0033;
  color: white;
  font-size: 18px;
  line-height: 1;
  padding-left: 2px;
}

.cantoverse-page .youtube-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  margin-top: clamp(56px, 8vw, 88px);
  border: 4px solid var(--ink);
  border-radius: 32px;
  background: var(--primary-soft);
  padding: clamp(28px, 5vw, 48px);
}

.cantoverse-page .youtube-panel p {
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 650;
}

html[lang^="zh"] .cantoverse-page .youtube-panel p {
  line-height: 1.7;
}

.cantoverse-page .youtube-panel img {
  width: 100%;
  border: 4px solid var(--ink);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 8px 0 var(--primary-deep);
}

.cantoverse-page .youtube-button {
  gap: 10px;
}

.cantoverse-page .youtube-button::before {
  content: "▶";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 18px;
  border-radius: 5px;
  background: #ff0033;
  color: white;
  font-size: 10px;
  line-height: 1;
  padding-left: 2px;
}

@media (max-width: 1040px) {
  .cantoverse-page .youtube-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .cantoverse-page .youtube-panel {
    border-radius: 24px;
    padding: 28px;
  }

  .cantoverse-page .youtube-panel p {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .cantoverse-page .store-button-youtube {
    width: min(100%, 190px);
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    white-space: normal;
  }
}
