:root {
  --ink: #16302c;
  --muted: #4b5d59;
  --paper: #f6f7f4;
  --card: #ffffff;
  --header: #ffffff;
  --teal: #00544c;
  --lime: #81ca35;
  --cyan: #1cc3c3;
  --sky: #00a4db;
  --line: #d7ddd8;
  --gold: #c5b358;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

.ribbon {
  background: var(--teal);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 1rem;
}

.site-header {
  background: var(--header);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0, 40, 36, 0.04);
}

.header-inner {
  width: min(960px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
  flex-wrap: nowrap;
  padding: 1.35rem 0 1.2rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0.25rem 0;
}

.header-mark {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
}

.store-title {
  margin: 0;
  color: var(--teal);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.wrap {
  width: min(720px, calc(100% - 2rem));
  margin: 2.25rem auto 3rem;
  flex: 1;
}

@media (min-width: 700px) {
  .wrap-wide {
    width: min(1180px, calc(100% - 2.5rem));
  }
}

.kicker,
.item-kicker {
  margin: 0 0 0.35rem;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--teal);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

h2 {
  margin: 0 0 0.4rem;
  font-size: 1.45rem;
}

.lede {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.notice {
  background: #eef7ea;
  border-left: 4px solid var(--lime);
  padding: 0.85rem 1rem;
  margin: 0 0 1.5rem;
}

.tester-note {
  background: #fff8e6;
  border-left-color: var(--gold);
}

.email-label {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.email-label input {
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.watch-open {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.6rem 1.6rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 40, 36, 0.05);
}

.watch-play-lede {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.05rem;
}

.watch-play-button,
.watch-open .text-link {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 3.5rem;
  margin: 0 0 0.85rem;
  border: 0;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 1rem 1.25rem;
  cursor: pointer;
}

.watch-play-button:hover,
.watch-open .text-link:hover {
  background: #043f39;
}

.bookmark-box {
  background: #eef2ef;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 0.9rem 1rem 0.75rem;
  margin: 1.25rem 0 1rem;
}

.bookmark-label {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.watch-url {
  word-break: break-all;
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 0.92rem;
}

.card-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  flex: 0 0 auto;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  margin: 0 0 1rem;
  background: #eef2ef;
}

.card-image-slot {
  display: grid;
  place-items: center;
  min-height: 140px;
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #eef2ef;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.catalog-search {
  display: grid;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.catalog-search input {
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.catalog-empty {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.people {
  margin: 0 0 0.45rem;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 700;
}

.catalog-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 700px) {
  .catalog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .catalog-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card[hidden] {
  display: none !important;
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.6rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 40, 36, 0.05);
}

.card-head {
  flex: 1 1 auto;
}

.card-foot {
  margin-top: auto;
}

.card-foot form {
  margin: 0;
}

.date-line {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 700;
}
.nbcc-none {
  margin: 0.2rem 0 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 400;
}


button,
.text-link {
  appearance: none;
  display: inline-block;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  padding: 0.7rem 1.25rem;
  cursor: pointer;
}

button:hover,
.text-link:hover {
  background: #043f39;
}

button:disabled,
button:disabled:hover {
  background: #8aa19c;
  cursor: not-allowed;
  opacity: 0.72;
}

.player-shell {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.player {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

body.play-frame {
  min-height: 100%;
  margin: 0;
  background: #111;
}

body.play-frame .player {
  height: 100vh;
}

.origin-player {
  display: block;
  width: 100%;
  height: 100vh;
  background: #000;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
}

.site-footer p {
  margin: 0 0 0.25rem;
}

.nbcc-acep {
  width: min(36rem, 100%);
  text-align: center;
}

.nbcc-acep img,
.nbcc-seal {
  display: block;
  width: 104px;
  max-width: 104px;
  height: auto;
  margin: 0 auto 0.85rem;
}

.nbcc-acep p {
  margin: 0;
  line-height: 1.45;
  font-size: 0.86rem;
}

@media (max-width: 640px) {
  .nbcc-acep img,
  .nbcc-seal {
    width: 96px;
    max-width: min(96px, 30vw);
  }

  .nbcc-acep p {
    font-size: 0.8rem;
  }
}

.mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

a {
  color: var(--sky);
}

.fine {
  color: var(--muted);
  font-size: 0.88rem;
}

.fine a {
  color: var(--teal);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.card-image-zoom {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 1rem;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  border-radius: 12px;
  color: inherit;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  opacity: 1;
  filter: none;
  -webkit-filter: none;
}

.card-image-zoom:disabled,
.card-image-zoom:disabled > .card-image,
.card-image-zoom[aria-hidden="true"],
.card-image-zoom[aria-hidden="true"] > .card-image {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  background: transparent;
  color: inherit;
  cursor: default;
}

.card-image-zoom:focus-visible {
  outline: 3px solid #2f6b4f;
  outline-offset: -3px;
}

.card-image-zoom > .card-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  opacity: 1;
  filter: none;
  -webkit-filter: none;
}

@media (max-width: 699px) {
  .card-image-zoom {
    cursor: default;
    pointer-events: none;
  }
}

dialog.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 96vw;
  max-height: 96vh;
  overflow: visible;
}

dialog.lightbox::backdrop {
  background: rgba(15, 26, 20, 0.82);
}

.lightbox-inner {
  position: relative;
  display: block;
}

.lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #123524;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}
