:root {
  --bg: #050101;
  --bg-deep: #020000;
  --surface: rgba(34, 6, 8, 0.78);
  --surface-strong: #1a0305;
  --text: #fff9f9;
  --muted: #c7a8aa;
  --line: rgba(255, 255, 255, 0.11);

  --accent: #b00020;
  --accent-rich: #7d0016;
  --accent-light: #ff334f;
  --accent-soft: rgba(176, 0, 32, 0.18);

  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.age-gate-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

/* CINEMATIC BACKGROUND */
.ambient-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  background:
    linear-gradient(180deg, #0d0103 0%, #050101 52%, #020000 100%);
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
  animation: ambientDrift 15s ease-in-out infinite alternate;
}

.ambient-orb--one {
  width: 620px;
  height: 620px;
  left: -180px;
  top: 8%;
  background: #97001b;
}

.ambient-orb--two {
  width: 520px;
  height: 520px;
  right: -160px;
  top: 26%;
  background: #4f000d;
  animation-delay: -5s;
}

.ambient-orb--three {
  width: 420px;
  height: 420px;
  left: 42%;
  bottom: -220px;
  background: #bd001f;
  opacity: 0.12;
  animation-delay: -9s;
}

.ambient-noise {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255,255,255,0.5) 1px, transparent 2px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

/* GENERAL */
.eyebrow {
  margin: 0 0 10px;
  color: #ff6b7f;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent), var(--accent-rich));
  color: white;
  box-shadow: 0 16px 44px rgba(176, 0, 32, 0.35);
}

.button--primary:hover {
  box-shadow: 0 20px 55px rgba(176, 0, 32, 0.52);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255,255,255,0.045);
  color: white;
  backdrop-filter: blur(12px);
}

.button--secondary:hover {
  border-color: rgba(255, 70, 95, 0.4);
  background: rgba(176, 0, 32, 0.11);
}

/* LOGO */
.logo-frame {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff405a, #850015);
  box-shadow:
    0 0 0 4px rgba(176, 0, 32, 0.16),
    0 10px 30px rgba(0, 0, 0, 0.45);
}

.logo-frame::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(176, 0, 32, 0.22);
  filter: blur(12px);
}

.logo-frame--large {
  width: 122px;
  height: 122px;
  margin-bottom: 22px;
}

.logo-frame--small {
  width: 48px;
  height: 48px;
}

.age-gate__avatar,
.brand__avatar {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  object-fit: cover;
}

/* AGE GATE */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;

  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.age-gate__card {
  width: min(100%, 560px);
  padding: 42px;
  border: 1px solid rgba(255, 61, 87, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(53, 8, 13, 0.94), rgba(12, 2, 3, 0.97));
  box-shadow:
    0 35px 110px rgba(0,0,0,0.72),
    0 0 70px rgba(176,0,32,0.15);
  text-align: center;
  animation: gateEnter 700ms cubic-bezier(.2,.8,.2,1);
}

.age-gate h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.age-gate__warning {
  max-width: 460px;
  margin: 22px auto 0;
  color: var(--muted);
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}

.age-gate__note {
  margin: 18px 0 0;
  color: #9f7d80;
  font-size: 0.8rem;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 56, 83, 0.09);
  background: rgba(7, 1, 2, 0.74);
  backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand__text {
  display: grid;
  line-height: 1.12;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: white;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -12px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-light), var(--accent));
  transition: left 180ms ease, right 180ms ease;
}

.main-nav a:hover::after {
  left: 0;
  right: 0;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  padding: 84px 0 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19,2,5,0.98) 0%, rgba(12,1,3,0.82) 45%, rgba(5,0,1,0.22) 100%),
    radial-gradient(circle at 24% 42%, rgba(176,0,32,0.2), transparent 36%);
  pointer-events: none;
}

.hero__spotlight {
  position: absolute;
  width: 540px;
  height: 540px;
  right: 5%;
  top: 12%;
  border-radius: 50%;
  background: rgba(176,0,32,0.16);
  filter: blur(90px);
  animation: spotlightPulse 6s ease-in-out infinite;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.hero__identity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__identity .eyebrow {
  margin: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 18px rgba(255,51,79,0.85);
  animation: statusPulse 2s ease-in-out infinite;
}

.hero__content h1 {
  margin: 18px 0 0;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.hero__content h1 span {
  display: block;
  margin-top: 14px;
  color: transparent;
  background: linear-gradient(100deg, #ffffff, #ff8b9c 48%, #c00025);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__tagline {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero__meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  color: #d7bec1;
  font-size: 0.78rem;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border: 1px solid rgba(255, 74, 99, 0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, #260408, #0c0102 55%, #030000);
  box-shadow:
    0 38px 100px rgba(0,0,0,0.58),
    0 0 60px rgba(176,0,32,0.12);
  transform: perspective(1100px) rotateY(-2deg);
  transition: transform 400ms ease, box-shadow 400ms ease;
}

.hero__media:hover {
  transform: perspective(1100px) rotateY(0) translateY(-5px);
  box-shadow:
    0 46px 120px rgba(0,0,0,0.66),
    0 0 85px rgba(176,0,32,0.2);
}

.hero__video {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.hero__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.08) 48%, rgba(2,0,0,0.92) 100%),
    linear-gradient(90deg, rgba(176,0,32,0.08), transparent 36%);
  pointer-events: none;
}

.hero__media-info {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.hero__media-info div {
  display: grid;
}

.hero__media-info p {
  margin: 0;
  color: #ff778a;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__media-info strong {
  margin-top: 3px;
  font-size: 1rem;
}

.hero__media-info > span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(0,0,0,0.34);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.video-control {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(8,0,1,0.72);
  color: white;
  cursor: pointer;
  font-weight: 820;
  backdrop-filter: blur(14px);
}

.video-control__icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  font-size: 0.65rem;
  box-shadow: 0 0 22px rgba(176,0,32,0.36);
}

.hero__scroll-note {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  color: #9d7f82;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-note span {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-light), transparent);
}

/* CONTENT */
.content-section,
.official-links {
  position: relative;
  padding: 76px 0;
}

.content-section--alternate {
  border-block: 1px solid rgba(255, 72, 96, 0.06);
  background: rgba(176,0,32,0.018);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
}

.text-link {
  color: #ff6b7f;
  font-weight: 820;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.teaser-card {
  overflow: hidden;
  border: 1px solid rgba(255, 73, 99, 0.13);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(38,5,9,0.95), rgba(10,1,2,0.98));
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.teaser-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 73, 99, 0.5);
  box-shadow:
    0 30px 68px rgba(0,0,0,0.46),
    0 0 34px rgba(176,0,32,0.1);
}

.teaser-card__video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #120204;

  object-position: center;}

.teaser-card__content {
  padding: 18px;
}

.teaser-card__content h3 {
  margin: 10px 0 2px;
  font-size: 1.02rem;
}

.teaser-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 73, 99, 0.28);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #ffb0bb;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* LINKS */
.official-links {
  border-top: 1px solid rgba(255, 72, 96, 0.07);
  background:
    radial-gradient(circle at 50% 0%, rgba(176,0,32,0.12), transparent 35%);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.official-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 96px;
  padding: 22px;
  border: 1px solid rgba(255, 73, 99, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(12px);
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.official-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255,73,99,0.46);
  background: rgba(176,0,32,0.08);
}

.official-link span:first-child {
  display: grid;
}

.official-link small {
  color: var(--muted);
}

.official-link > span:last-child {
  color: #ff6b7f;
  font-size: 1.3rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255,72,96,0.08);
  background: rgba(2,0,0,0.82);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 180px;
  padding-block: 34px;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 120ms;
}

/* ANIMATIONS */
@keyframes ambientDrift {
  from { transform: translate3d(-3%, -2%, 0) scale(0.96); }
  to { transform: translate3d(6%, 5%, 0) scale(1.08); }
}

@keyframes spotlightPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 0.95; transform: scale(1.08); }
}

@keyframes statusPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes gateEnter {
  from { opacity: 0; transform: translateY(22px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* RESPONSIVE */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    transform: none;
  }

  .hero__media,
  .hero__video {
    min-height: 520px;
  }

  .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .age-gate {
    padding: 12px;
  }

  .age-gate__card {
    padding: 30px 20px;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }

  .brand__text small {
    display: none;
  }

  .hero {
    padding: 52px 0 34px;
  }

  .hero__content h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media,
  .hero__video {
    min-height: 430px;
  }

  .hero__media-info {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .video-control {
    left: 18px;
    bottom: 18px;
  }

  .content-section,
  .official-links {
    padding: 52px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .teaser-grid,
  .link-grid {
    grid-template-columns: 1fr;
  }

  .teaser-card__video {
    aspect-ratio: 16 / 12;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}


/* COMPACT HERO + MOBILE ACCESSIBILITY UPDATE */
.hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: clamp(30px, 5vw, 64px);
}

.hero__media {
  justify-self: end;
  width: min(100%, 500px);
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.hero__video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.hero__media-info {
  right: auto;
}

.teaser-card__content p {
  display: none;
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 73, 99, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: white;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1020px) {
  .site-header__inner {
    position: relative;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 73, 99, 0.16);
    border-radius: 18px;
    background: rgba(10, 1, 2, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(20px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .main-nav a:hover {
    background: rgba(176, 0, 32, 0.11);
  }

  .main-nav a::after {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__media {
    justify-self: center;
    width: min(100%, 460px);
    aspect-ratio: 4 / 5;
    transform: none;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    min-height: 70px;
  }

  .logo-frame--small {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero__content h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
    line-height: 0.92;
  }

  .hero__tagline {
    margin-top: 22px;
    font-size: 0.98rem;
  }

  .hero__meta {
    gap: 8px;
  }

  .hero__meta span {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .hero__media {
    width: min(100%, 390px);
    border-radius: 25px;
  }

  .hero__media-info {
    top: 16px;
    left: 16px;
  }

  .hero__media-info strong {
    font-size: 0.9rem;
  }

  .video-control {
    right: 16px;
    left: 16px;
    bottom: 16px;
    justify-content: center;
  }

  .hero__scroll-note {
    display: none;
  }

  .teaser-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .teaser-card {
    border-radius: 18px;
  }

  .teaser-card__video {
    aspect-ratio: 4 / 5;
  }

  .teaser-card__content {
    padding: 15px 16px 17px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .official-link {
    min-height: 84px;
    padding: 18px;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 18px), var(--container));
  }

  .brand__text strong {
    font-size: 0.92rem;
  }

  .hero__content h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero__media {
    width: 100%;
  }

  .age-gate__card {
    padding: 26px 16px;
  }
}


/* =========================================================
   FULL COLLECTION + CINEMATIC VIEWER UPDATE
   ========================================================= */

/* Wine-red browser scrollbar */
html {
  scrollbar-color: #8f1028 #090102;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #090102;
}

::-webkit-scrollbar-thumb {
  border: 3px solid #090102;
  border-radius: 999px;
  background: linear-gradient(180deg, #d52a48, #7d0016);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ef3f5e, #a40020);
}

/* One continuous background across every section */
.site-main,
.content-section,
.content-section--alternate,
.official-links,
.collection-main,
.collection-library {
  background: transparent !important;
}

.content-section--alternate,
.official-links,
.site-footer {
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}

.content-section,
.official-links {
  isolation: isolate;
}

/* Teaser card animation and click affordance */
.teaser-card {
  position: relative;
  cursor: pointer;
  transform-origin: center;
}

.teaser-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg,
      transparent 15%,
      rgba(255, 80, 105, 0.18) 40%,
      rgba(255, 255, 255, 0.10) 50%,
      rgba(255, 80, 105, 0.18) 60%,
      transparent 85%);
  transform: translateX(-80%);
  transition: opacity 220ms ease;
}

.teaser-card:hover::before,
.teaser-card:focus-visible::before {
  opacity: 1;
  animation: teaserShine 900ms ease;
}

.teaser-card:hover,
.teaser-card:focus-visible {
  transform: translateY(-9px) scale(1.015);
  border-color: rgba(255, 73, 99, 0.58);
  box-shadow:
    0 32px 75px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 84, 108, 0.13),
    0 0 42px rgba(176, 0, 32, 0.18);
  outline: none;
}

.teaser-card__video {
  transition: transform 650ms cubic-bezier(.2,.8,.2,1), filter 350ms ease;
}

.teaser-card:hover .teaser-card__video,
.teaser-card:focus-visible .teaser-card__video {
  transform: scale(1.045);
  filter: brightness(1.05) contrast(1.04);
}

@keyframes teaserShine {
  from { transform: translateX(-90%); }
  to { transform: translateX(90%); }
}

/* Full-screen cinematic teaser viewer */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  animation: modalFadeIn 220ms ease;
}

.video-modal[hidden] {
  display: none !important;
}

.video-modal__panel {
  position: relative;
  width: min(100%, 920px);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 73, 99, 0.28);
  border-radius: 28px;
  background: #050101;
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.78),
    0 0 80px rgba(176, 0, 32, 0.17);
}

.video-modal__video {
  width: 100%;
  max-height: calc(100vh - 48px);
  background: #000;
  object-fit: contain;
}

.video-modal__close {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(7,0,1,0.78);
  color: white;
  cursor: pointer;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.video-modal__close:hover {
  background: rgba(176,0,32,0.72);
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Collection library pages */
.collection-hero {
  padding: 82px 0 30px;
}

.collection-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.collection-hero p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.teaser-grid--library {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-back {
  min-height: 42px;
}

@media (max-width: 1020px) {
  .teaser-grid--library {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .video-modal {
    padding: 10px;
  }

  .video-modal__panel {
    max-height: calc(100vh - 20px);
    border-radius: 20px;
  }

  .video-modal__video {
    max-height: calc(100vh - 20px);
  }

  .video-modal__close {
    top: 10px;
    right: 10px;
  }

  .teaser-grid--library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collection-hero {
    padding-top: 52px;
  }
}

@media (max-width: 500px) {
  .teaser-grid--library {
    grid-template-columns: 1fr;
  }

  .collection-back {
    padding-inline: 15px;
    font-size: 0.82rem;
  }
}


/* =========================================================
   AUTOPLAY + FULL-FRAME TEASER UPDATE
   ========================================================= */

/*
  Show the entire video instead of cropping it.
  Any unused space is filled by the dark wine-red card background.
*/
.teaser-card__video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover !important;
  object-position: center center;
  background: #080102;
}

/*
  Give the card a fixed visual frame so labels and titles stay in
  exactly the same position beneath the video.
*/
.teaser-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 520px;
}

.teaser-card__content {
  position: relative;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(13, 1, 3, 0.86), rgba(8, 1, 2, 0.98));
}

/* Keep the four homepage cards balanced and less oversized. */
#personal .teaser-card,
#dsmelayu .teaser-card,
#blasphemy .teaser-card {
  min-height: 500px;
}

/* Collection pages contain 12 full teaser cards and must scroll normally. */
.collection-page {
  overflow-y: auto !important;
}

.collection-page.modal-open {
  overflow: hidden !important;
}

.collection-library {
  min-height: auto;
  padding-bottom: 90px;
}

.teaser-grid--library .teaser-card {
  min-height: 500px;
}

@media (max-width: 1020px) {
  .teaser-card,
  #personal .teaser-card,
  #dsmelayu .teaser-card,
  #blasphemy .teaser-card,
  .teaser-grid--library .teaser-card {
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  .teaser-card,
  #personal .teaser-card,
  #dsmelayu .teaser-card,
  #blasphemy .teaser-card,
  .teaser-grid--library .teaser-card {
    min-height: 0;
  }

  .teaser-card__video {
    aspect-ratio: 4 / 5;
    min-height: 390px;
  }
}

@media (max-width: 420px) {
  .teaser-card__video {
    min-height: 340px;
  }
}


/* =========================================================
   EDGE-TO-EDGE VIDEO CARD UPDATE
   ========================================================= */

/*
  Each teaser card now works like the featured preview:
  - video fills the whole card
  - no black letterboxing
  - no separate dark text panel
  - labels sit directly over the video
*/
.teaser-card {
  position: relative;
  display: block !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #120204;
}

.teaser-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center;
  background: transparent !important;
  transform: scale(1.002);
}

/*
  The gradient is only a readability overlay.
  It is transparent at the top and slightly darker at the bottom.
*/
.teaser-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.01) 40%,
      rgba(5, 0, 1, 0.18) 64%,
      rgba(5, 0, 1, 0.78) 100%
    );
}

.teaser-card__content {
  position: absolute !important;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 18px 18px;
  background: transparent !important;
}

.teaser-card__content h3 {
  margin: 10px 0 0;
  color: white;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
}

.teaser-card .badge {
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

/* Preserve the premium hover movement */
.teaser-card:hover .teaser-card__video,
.teaser-card:focus-visible .teaser-card__video {
  transform: scale(1.06);
}

/* Homepage and collection pages use the same full-video design */
#personal .teaser-card,
#dsmelayu .teaser-card,
#blasphemy .teaser-card,
.teaser-grid--library .teaser-card {
  min-height: 0 !important;
  aspect-ratio: 4 / 5;
}

/* Make landscape videos fill the cards as well */
.teaser-card__video {
  object-fit: cover !important;
}

@media (max-width: 680px) {
  .teaser-card,
  #personal .teaser-card,
  #dsmelayu .teaser-card,
  #blasphemy .teaser-card,
  .teaser-grid--library .teaser-card {
    aspect-ratio: 4 / 5;
    min-height: 0 !important;
  }

  .teaser-card__video {
    min-height: 0 !important;
  }

  .teaser-card__content {
    padding: 20px 16px 16px;
  }
}

.collection-unlock{padding:28px 0 90px}.collection-unlock__card{padding:clamp(32px,5vw,60px);border:1px solid rgba(255,73,99,.22);border-radius:30px;background:radial-gradient(circle at top right,rgba(176,0,32,.24),transparent 43%),linear-gradient(145deg,rgba(46,6,11,.96),rgba(10,1,2,.99));box-shadow:0 32px 90px rgba(0,0,0,.5)}.collection-unlock__card h2{margin:0;font-size:clamp(2rem,4vw,3.8rem);line-height:1}.collection-unlock__card p:not(.eyebrow){max-width:660px;margin:20px 0 28px;color:var(--muted)}.private-access-section{padding:76px 0}.private-access-card{width:min(100%,760px);margin:auto;padding:clamp(34px,6vw,64px);border:1px solid rgba(255,73,99,.22);border-radius:32px;background:radial-gradient(circle at 50% 0,rgba(176,0,32,.25),transparent 42%),linear-gradient(180deg,rgba(48,7,12,.96),rgba(9,1,2,.99));box-shadow:0 36px 110px rgba(0,0,0,.66);text-align:center}.private-access-card__icon{display:grid;place-items:center;width:96px;height:96px;margin:0 auto 24px;border-radius:50%;background:linear-gradient(135deg,#e62f4d,#800016);font-size:1.45rem;font-weight:900}.private-access-card h2,.embedded-form-heading h2{margin:0;font-size:clamp(2.5rem,6vw,5rem);line-height:.95}.private-access-card__description,.private-access-card__notice{max-width:610px;margin:22px auto 0;color:var(--muted)}.private-access-card__actions{display:flex;justify-content:center;margin-top:32px}.embedded-form-section{padding-top:64px}.embedded-form-heading{max-width:780px;margin-bottom:30px}.embedded-form-heading>p:last-child{color:var(--muted)}.embedded-form-shell{overflow:hidden;border:1px solid rgba(255,73,99,.18);border-radius:28px;background:#fff}.embedded-google-form{display:block;width:100%;min-height:1500px;border:0;background:#fff}.embedded-form-fallback{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:22px;color:var(--muted)}@media(max-width:680px){.embedded-google-form{min-height:1700px}.embedded-form-fallback{align-items:stretch;flex-direction:column}.embedded-form-fallback .button{width:100%}}

.private-access-heading {
  margin-bottom: 30px;
}

.private-access-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
}

@media (max-width: 680px) {
  .private-access-heading {
    margin-bottom: 22px;
  }
}


/* FINAL REQUESTED HOMEPAGE ALIGNMENT */
/* Use one continuous background from the hero through every homepage section. */
.hero,
.site-main,
.content-section,
.content-section--alternate,
.private-access-section,
.official-links {
  background: transparent !important;
  background-image: none !important;
}

.hero::before {
  background: none !important;
}

/* Keep anchor targets clear of the sticky header. */
#personal,
#dsmelayu,
#private-access,
#official-links {
  scroll-margin-top: 110px;
}


/* FINAL SECTION POSITION + CONTINUOUS BACKGROUND UPDATE */
.ambient-background {
  background:
    radial-gradient(circle at 15% 34%, rgba(151, 0, 27, 0.20), transparent 35%),
    radial-gradient(circle at 85% 55%, rgba(79, 0, 13, 0.13), transparent 36%),
    linear-gradient(180deg, #0d0103 0%, #070102 52%, #020000 100%) !important;
}
.ambient-orb { display: none !important; }
.hero, .hero::before, .hero__spotlight, .site-main, .content-section, .content-section--alternate, .private-access-section, .official-links {
  background: transparent !important;
  background-image: none !important;
}
.hero::before, .hero__spotlight { display: none !important; }
#personal, #dsmelayu, #private-access, #official-links { scroll-margin-top: 180px; }
.collection-update-divider {
  display:flex; align-items:center; gap:18px; width:min(calc(100% - 32px), var(--container));
  margin:20px auto 54px; color:#c9a6aa; font-size:.78rem; font-weight:800;
  letter-spacing:.13em; text-align:center; text-transform:uppercase;
}
.collection-update-divider::before, .collection-update-divider::after {
  content:""; flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(255,73,99,.38),transparent);
}
.collection-update-divider span { flex:0 1 auto; }
@media (max-width:680px){
  .collection-update-divider{gap:10px;margin-bottom:38px;font-size:.66rem;letter-spacing:.09em;}
}


/* =========================================================
   MOBILE + TABLET RESPONSIVE POLISH
   Desktop styles remain unchanged.
   ========================================================= */

/* Tablet landscape: iPad landscape, Android tablets, small laptops */
@media (min-width: 769px) and (max-width: 1180px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-header__inner {
    min-height: 74px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding: 62px 0 44px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
    gap: 38px;
  }

  .hero__content h1 {
    font-size: clamp(3.7rem, 7.2vw, 5.7rem);
  }

  .hero__media {
    width: min(100%, 430px);
  }

  .teaser-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .teaser-card__content {
    padding: 18px 14px 14px;
  }

  .teaser-card__content h3 {
    font-size: 0.92rem;
  }

  .section-heading h2,
  .private-access-heading h2 {
    font-size: clamp(2.4rem, 4.7vw, 3.4rem);
  }

  .private-access-card {
    width: min(100%, 700px);
  }

  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .teaser-grid--library {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Tablet portrait: iPad portrait and similar */
@media (min-width: 681px) and (max-width: 900px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .mobile-nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 73, 99, 0.16);
    border-radius: 18px;
    background: rgba(10, 1, 2, 0.97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(20px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__content {
    max-width: 700px;
  }

  .hero__media {
    justify-self: center;
    width: min(100%, 520px);
  }

  .hero__content h1 {
    font-size: clamp(4rem, 11vw, 6rem);
  }

  .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .teaser-grid--library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: flex-end;
  }

  .private-access-card {
    width: min(100%, 680px);
  }

  .embedded-google-form {
    min-height: 1650px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

/* Phones: iPhone and Android */
@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .brand__text small {
    display: none;
  }

  .logo-frame--small {
    width: 40px;
    height: 40px;
  }

  .mobile-nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    border-radius: 16px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 30px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__identity {
    align-items: flex-start;
  }

  .hero__content h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
    line-height: 0.9;
  }

  .hero__tagline {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .hero__meta {
    gap: 7px;
  }

  .hero__meta span {
    padding: 6px 9px;
    font-size: 0.66rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__media {
    width: 100%;
    max-width: 410px;
    margin-inline: auto;
    border-radius: 24px;
  }

  .hero__media-info {
    top: 15px;
    left: 15px;
    right: 15px;
  }

  .hero__media-info p {
    font-size: 0.62rem;
  }

  .hero__media-info strong {
    font-size: 0.86rem;
  }

  .video-control {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: center;
  }

  .hero__scroll-note {
    display: none;
  }

  .content-section,
  .private-access-section,
  .official-links {
    padding: 48px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading h2,
  .private-access-heading h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .text-link {
    align-self: flex-start;
  }

  .teaser-grid,
  .teaser-grid--library {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .teaser-card {
    width: 100%;
    aspect-ratio: 4 / 5;
  }

  .teaser-card__content {
    padding: 18px 15px 15px;
  }

  .teaser-card__content h3 {
    font-size: 0.96rem;
  }

  .badge {
    font-size: 0.62rem;
    min-height: 24px;
  }

  .private-access-card {
    padding: 30px 18px;
    border-radius: 24px;
  }

  .private-access-card__icon {
    width: 82px;
    height: 82px;
    font-size: 1.2rem;
  }

  .private-access-card h2,
  .embedded-form-heading h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .private-access-card__actions {
    display: grid;
  }

  .embedded-form-section {
    padding-top: 46px;
  }

  .embedded-form-shell {
    border-radius: 18px;
  }

  .embedded-google-form {
    min-height: 1750px;
  }

  .embedded-form-fallback {
    align-items: stretch;
    flex-direction: column;
  }

  .embedded-form-fallback .button {
    width: 100%;
  }

  .link-grid {
    grid-template-columns: 1fr;
  }

  .official-link {
    min-height: 82px;
    padding: 17px;
  }

  .collection-hero {
    padding: 46px 0 22px;
  }

  .collection-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .collection-unlock {
    padding: 18px 0 64px;
  }

  .collection-unlock__card {
    padding: 30px 18px;
    border-radius: 24px;
  }

  .collection-unlock__card h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .collection-update-divider {
    width: min(calc(100% - 20px), var(--container));
    margin-bottom: 34px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 30px;
  }

  .site-footer nav {
    gap: 14px;
  }

  .video-modal {
    padding: 8px;
  }

  .video-modal__panel {
    max-height: calc(100vh - 16px);
    border-radius: 18px;
  }

  .video-modal__video {
    max-height: calc(100vh - 16px);
  }

  .video-modal__close {
    top: 9px;
    right: 9px;
    min-height: 40px;
    padding-inline: 13px;
  }
}

/* Small phones */
@media (max-width: 390px) {
  .container {
    width: min(calc(100% - 16px), var(--container));
  }

  .hero__content h1 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .hero__tagline {
    font-size: 0.9rem;
  }

  .button {
    min-height: 46px;
    padding-inline: 18px;
  }

  .private-access-card {
    padding-inline: 15px;
  }

  .teaser-card__content h3 {
    font-size: 0.9rem;
  }
}

/* Safe areas for notched iPhones and modern Android phones */
@supports (padding: max(0px)) {
  .site-header__inner,
  .age-gate,
  .video-modal {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .site-footer {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* =========================================================
   MOBILE TEASER GRID — TWO VIDEOS PER ROW
   Applies only to iPhone and Android-sized screens.
   Desktop and tablet layouts remain unchanged.
   ========================================================= */
@media (max-width: 680px) {
  .teaser-grid,
  .teaser-grid--library {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .teaser-card,
  #personal .teaser-card,
  #dsmelayu .teaser-card,
  #blasphemy .teaser-card,
  .teaser-grid--library .teaser-card {
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .teaser-card__content {
    padding: 12px 10px 10px;
  }

  .teaser-card__content h3 {
    font-size: clamp(0.72rem, 3.4vw, 0.88rem);
    line-height: 1.25;
  }

  .teaser-card__content p {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .teaser-card .badge,
  .badge {
    min-height: 20px;
    padding: 3px 7px;
    font-size: 0.52rem;
  }
}

@media (max-width: 390px) {
  .teaser-grid,
  .teaser-grid--library {
    gap: 8px;
  }

  .teaser-card__content {
    padding: 10px 8px 8px;
  }

  .teaser-card__content h3 {
    font-size: 0.7rem;
  }
}

/* =========================================================
   FINAL PHONE OVERRIDE — FORCE 2 TEASERS PER ROW
   Home Personal/DS Melayu sections + collection pages only.
   ========================================================= */
@media screen and (max-width: 680px) {
  body .teaser-grid,
  body .teaser-grid.teaser-grid--library,
  body.collection-page .teaser-grid,
  body.collection-page .teaser-grid--library,
  #personal .teaser-grid,
  #dsmelayu .teaser-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    align-items: stretch;
  }

  body .teaser-grid > .teaser-card,
  body .teaser-grid--library > .teaser-card,
  #personal .teaser-grid > .teaser-card,
  #dsmelayu .teaser-grid > .teaser-card {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 15px !important;
  }

  body .teaser-grid .teaser-card__video,
body .teaser-grid--library .teaser-card__video {
  position: absolute !important;
  inset: 0 !important;

  display: block !important;

  width: 100% !important;
  height: 100% !important;

  min-width: 100% !important;
  min-height: 100% !important;

  max-width: none !important;
  max-height: none !important;

  margin: 0 !important;
  padding: 0 !important;

  aspect-ratio: auto !important;

  object-fit: cover !important;
  object-position: center center !important;
}

  body .teaser-grid .teaser-card__content,
  body .teaser-grid--library .teaser-card__content {
    padding: 10px 9px 9px !important;
  }

  body .teaser-grid .teaser-card__content h3,
  body .teaser-grid--library .teaser-card__content h3 {
    margin-top: 7px;
    font-size: clamp(0.68rem, 3.25vw, 0.86rem) !important;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  body .teaser-grid .badge,
  body .teaser-grid--library .badge {
    min-height: 20px !important;
    padding: 3px 7px !important;
    font-size: 0.5rem !important;
  }
}


/* MOBILE + TABLET: show PNG thumbnail only, never video preview */
@media screen and (max-width: 1180px),
       (hover: none),
       (pointer: coarse) {

  .teaser-card {
    background-image: var(--teaser-poster) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  .teaser-card__video {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}


/* INDEX COLLECTION ACCESS BUTTONS — 20260724-4 */
.collection-access-button {
  flex: 0 0 auto;
  min-height: 48px;
  padding-inline: 24px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow:
    0 16px 44px rgba(176, 0, 32, 0.38),
    0 0 0 1px rgba(255, 107, 127, 0.12) inset;
}

.collection-access-button::after {
  content: " →";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.collection-access-button:hover::after {
  transform: translateX(3px);
}

.collection-access-button:focus-visible {
  outline: 3px solid rgba(255, 107, 127, 0.48);
  outline-offset: 4px;
}

@media screen and (max-width: 680px) {
  .section-heading .collection-access-button {
    width: auto;
    min-height: 46px;
    padding-inline: 20px;
    font-size: 0.9rem;
    align-self: flex-start;
  }
}




/* === TRUE FULL-CARD TEASER THUMBNAIL FIX === */
.teaser-card {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate;
}

.teaser-card__media {
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.teaser-card__video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Existing badge/title/content stays on top of the full-card image. */
.teaser-card__content,
.teaser-card__badge,
.teaser-card__label,
.teaser-card__title,
.teaser-card__meta,
.teaser-card__overlay {
  position: relative;
  z-index: 2 !important;
}

/* Make any existing bottom overlay cover the image rather than reserve layout space. */
.teaser-card__content {
  margin-top: 0 !important;
}

/* === END TRUE FULL-CARD TEASER THUMBNAIL FIX === */


/* === GUARANTEED MOBILE/TABLET THUMBNAIL FULL-FILL ===
   Use the card itself as the thumbnail canvas so iOS/Android
   cannot letterbox the native <video poster>. */
@media screen and (max-width: 1180px) {
  .teaser-card {
    background-image: var(--teaser-poster) !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
  }

  /* Hide only the native video/poster rendering while the card thumbnail is shown.
     The card remains clickable and the existing modal/loading JS still works. */
  .teaser-card__video {
    opacity: 0 !important;
  }

  .teaser-card::after,
  .teaser-card__content {
    opacity: 1 !important;
  }
}

/* ===== FINAL TEASER CARD FIX ===== */

.teaser-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.teaser-card__media {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
}

.teaser-card__video {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 100% !important;
    min-height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    aspect-ratio: auto !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
}

/* Keep badge + title over thumbnail */
.teaser-card__content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 5 !important;

    margin: 0 !important;
    background: transparent !important;
}

/* MOBILE + TABLET */
@media (max-width: 1024px) {

    .teaser-card {
        aspect-ratio: 4 / 5 !important;

        background-image: var(--teaser-poster) !important;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .teaser-card__media {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;
    }

    .teaser-card__video {
        position: absolute !important;
        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        min-width: 100% !important;
        min-height: 100% !important;

        aspect-ratio: auto !important;

        object-fit: cover !important;
        object-position: center center !important;
    }
}

/* ===== END FINAL TEASER CARD FIX ===== */

/* === END GUARANTEED MOBILE/TABLET THUMBNAIL FULL-FILL === */


/* STATIC TEASER THUMBNAILS: no teaser MP4 loads until click */
.teaser-card__thumbnail {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}




/* Final teaser video fit */
.teaser-card {
  position: relative !important;
  overflow: hidden !important;
}
.teaser-card__video {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* === REPAIRED TEASER MEDIA ONLY === */
.teaser-card { position: relative; overflow: hidden; }
.teaser-card__video {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}


/* =========================================
   FULLSCREEN TEASER VIEWER
   Hidden completely until a teaser is clicked
   ========================================= */

.payi-viewer {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  z-index: 99999 !important;

  background: #000;

  align-items: center;
  justify-content: center;

  margin: 0 !important;
  padding: 0 !important;
}

.payi-viewer.is-open {
  display: flex !important;
}

.payi-viewer__video {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100dvh;
  object-fit: contain;
  background: #000;
}

.payi-viewer__back {
  -webkit-appearance: none;
  appearance: none;

  position: fixed !important;

  top: max(24px, env(safe-area-inset-top)) !important;
  right: max(24px, env(safe-area-inset-right)) !important;

  left: auto !important;
  bottom: auto !important;

  z-index: 100001 !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;

  min-height: 46px;
  padding: 0 20px;

  margin: 0;

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      rgba(48, 5, 14, 0.96),
      rgba(18, 2, 6, 0.96)
    ) !important;

  border: 1px solid rgba(255, 75, 105, 0.48) !important;
  border-radius: 999px !important;

  font-family: inherit !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;

  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(220, 0, 45, 0.16);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  -webkit-tap-highlight-color: transparent;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.payi-viewer__back:hover {
  background:
    linear-gradient(
      135deg,
      #ff234f,
      #b90027
    ) !important;

  border-color: rgba(255, 90, 115, 0.8) !important;

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(230, 0, 48, 0.24);

  transform: translateY(-1px);
}

.payi-viewer__back:active {
  background:
    linear-gradient(
      135deg,
      #e81740,
      #9f001f
    ) !important;

  transform: scale(0.97);
}

.payi-viewer__back:focus-visible {
  outline: 2px solid #ff4668;
  outline-offset: 3px;
}


/* PHONE + TABLET + iPAD */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {

  .payi-viewer__back {
    top: max(16px, env(safe-area-inset-top)) !important;
    right: max(16px, env(safe-area-inset-right)) !important;

    left: auto !important;

    min-height: 44px;
    padding: 0 17px;

    font-size: 13px;

    color: #ffffff !important;

    background:
      linear-gradient(
        135deg,
        rgba(48, 5, 14, 0.97),
        rgba(18, 2, 6, 0.97)
      ) !important;

    border: 1px solid rgba(255, 75, 105, 0.48) !important;
    border-radius: 999px !important;
  }
}

.payi-viewer__back:hover {
  background: linear-gradient(135deg, #ff234f, #b90027);
  border-color: rgba(255, 90, 115, 0.8);

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(230, 0, 48, 0.24);

  transform: translateY(-1px);
}

.payi-viewer__back:active {
  transform: scale(0.97);
}

.payi-viewer__back:focus-visible {
  outline: 2px solid #ff4668;
  outline-offset: 3px;
}

/* Phones + iPad */
@media (max-width: 1024px) {
  .payi-viewer__back {
    top: max(16px, env(safe-area-inset-top));
    left: max(16px, env(safe-area-inset-left));
    min-height: 44px;
    padding: 0 17px;
    font-size: 13px;
  }
}

/* =========================================================
   FINAL FULLSCREEN TEASER VIEWER
   Keep this block at the end of style.css.
   ========================================================= */

.payi-viewer {
  display: none !important;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 99999 !important;
  background: #000 !important;
  align-items: center !important;
  justify-content: center !important;
}

.payi-viewer.is-open {
  display: flex !important;
}

.payi-viewer__video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100vw !important;
  max-height: 100dvh !important;
  object-fit: contain !important;
  background: #000 !important;
}

.payi-viewer__back {
  -webkit-appearance: none !important;
  appearance: none !important;
  position: fixed !important;
  top: max(24px, env(safe-area-inset-top)) !important;
  right: max(24px, env(safe-area-inset-right)) !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 100001 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  min-height: 46px !important;
  padding: 0 20px !important;
  margin: 0 !important;

  color: #fff !important;
  background: linear-gradient(135deg, #ff234f, #b90027) !important;
  border: 1px solid rgba(255, 90, 115, 0.8) !important;
  border-radius: 999px !important;

  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;

  cursor: pointer !important;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(230, 0, 48, 0.22) !important;

  -webkit-tap-highlight-color: transparent;
}

.payi-viewer__back:hover {
  background: linear-gradient(135deg, #ff365e, #ce002d) !important;
  transform: translateY(-1px);
}

.payi-viewer__back:active {
  transform: scale(0.97);
}

.payi-viewer__back:focus-visible {
  outline: 2px solid #ff4668 !important;
  outline-offset: 3px !important;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .payi-viewer__back {
    top: max(16px, env(safe-area-inset-top)) !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    left: auto !important;
    min-height: 44px !important;
    padding: 0 17px !important;
    font-size: 13px !important;
  }
}


/* FINAL GLOBAL PAYI VIEWER BACK BUTTON - ALL PAGES */
#payiViewer #payiViewerBack.payi-viewer__back {
  -webkit-appearance: none !important;
  appearance: none !important;

  position: fixed !important;
  top: max(24px, env(safe-area-inset-top)) !important;
  right: max(24px, env(safe-area-inset-right)) !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 2147483647 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  width: auto !important;
  min-width: 0 !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  margin: 0 !important;

  color: #fff !important;
  background: linear-gradient(135deg, #ff234f, #b90027) !important;
  border: 1px solid rgba(255, 90, 115, 0.80) !important;
  border-radius: 999px !important;

  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;

  cursor: pointer !important;
  box-shadow:
    0 10px 30px rgba(0,0,0,.45),
    0 0 28px rgba(230,0,48,.22) !important;

  -webkit-tap-highlight-color: transparent !important;
}

#payiViewer #payiViewerBack.payi-viewer__back:hover {
  background: linear-gradient(135deg, #ff365e, #ce002d) !important;
  transform: translateY(-1px);
}

#payiViewer #payiViewerBack.payi-viewer__back:active {
  transform: scale(.97);
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  #payiViewer #payiViewerBack.payi-viewer__back {
    top: max(16px, env(safe-area-inset-top)) !important;
    right: max(16px, env(safe-area-inset-right)) !important;
    left: auto !important;
    min-height: 44px !important;
    padding: 0 17px !important;
    font-size: 13px !important;
  }
}



/* =========================================================
   PREMIUM REFINEMENT: PACKAGES, PAYMENT, SEARCH & RESPONSIVE
   Keeps the original Payi Adam dark crimson visual identity.
   ========================================================= */
.sr-only{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.section-intro{max-width:720px;margin-top:14px;color:var(--color-text-muted,#c6b7ba);font-size:clamp(15px,1.3vw,18px);line-height:1.7}
.package-section,.payment-section{position:relative;padding:clamp(82px,9vw,140px) 0;border-top:1px solid rgba(255,255,255,.035);scroll-margin-top:100px}
.package-section{background:radial-gradient(circle at 14% 20%,rgba(178,0,37,.13),transparent 32%),linear-gradient(180deg,rgba(18,2,4,.3),rgba(3,1,2,.55))}
.package-group{margin-top:clamp(42px,6vw,76px)}
.package-group__heading{display:flex;align-items:center;gap:18px;margin-bottom:24px}
.package-group__heading h3{margin:4px 0 0;font-size:clamp(22px,2.5vw,34px);letter-spacing:-.035em}
.package-number{display:grid;place-items:center;flex:0 0 48px;height:48px;border:1px solid rgba(255,64,96,.38);border-radius:50%;color:#ff6681;background:rgba(255,27,67,.08);font-size:13px;font-weight:800;letter-spacing:.08em;box-shadow:0 0 28px rgba(215,0,43,.11)}
.pricing-grid{display:grid;gap:20px}.pricing-grid--two{grid-template-columns:repeat(2,minmax(0,1fr))}.pricing-grid--single{grid-template-columns:minmax(0,760px)}
.pricing-card{position:relative;overflow:hidden;padding:clamp(24px,3.2vw,42px);border:1px solid rgba(255,255,255,.08);border-radius:28px;background:linear-gradient(145deg,rgba(35,8,12,.92),rgba(12,3,5,.94));box-shadow:0 28px 70px rgba(0,0,0,.25);transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease}
.pricing-card:before{content:"";position:absolute;inset:auto -20% -55% 30%;height:250px;background:radial-gradient(circle,rgba(219,0,48,.16),transparent 68%);pointer-events:none}
.pricing-card:hover{transform:translateY(-5px);border-color:rgba(255,68,100,.28);box-shadow:0 34px 90px rgba(0,0,0,.38),0 0 42px rgba(185,0,38,.08)}
.pricing-card--highlight,.pricing-card--featured{border-color:rgba(255,50,87,.32);background:linear-gradient(145deg,rgba(67,8,19,.94),rgba(18,3,7,.96))}
.pricing-card__top{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:24px}.pricing-save{color:#f5b7c1;font-size:12px;font-weight:750;text-transform:uppercase;letter-spacing:.08em}
.pricing-card h3{font-size:clamp(24px,2.6vw,36px);margin:0 0 12px;letter-spacing:-.04em}.pricing-price{margin:0 0 25px;color:#fff;font-size:clamp(34px,4.5vw,58px);font-weight:850;letter-spacing:-.055em}.pricing-price del{margin-left:8px;color:#8f7479;font-size:.42em;font-weight:650}
.pricing-card ul{display:grid;gap:13px;margin:0 0 28px;padding:0;list-style:none}.pricing-card li{position:relative;padding-left:28px;color:#e1d6d8;line-height:1.5}.pricing-card li:before{content:"✓";position:absolute;left:0;top:0;color:#ff4267;font-weight:900}
.pricing-warning{margin:-4px 0 25px;padding:13px 15px;border:1px solid rgba(255,43,79,.22);border-radius:14px;background:rgba(255,23,64,.07);color:#ffc1cc;font-weight:750;text-transform:uppercase;letter-spacing:.025em}.button--full{width:100%;justify-content:center}.package-note{margin-top:28px;padding:20px 24px;border:1px solid rgba(255,255,255,.07);border-radius:18px;background:rgba(255,255,255,.025);color:#c9b9bc;line-height:1.65}.package-note strong{color:#fff}
.payment-section{background:radial-gradient(circle at 82% 20%,rgba(127,0,24,.13),transparent 32%),#050203}.payment-layout{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:38px}.payment-card{padding:28px 24px;border:1px solid rgba(255,255,255,.07);border-radius:22px;background:linear-gradient(155deg,rgba(35,8,12,.76),rgba(12,3,5,.78));min-height:225px}.payment-card__icon{display:grid;place-items:center;width:43px;height:43px;margin-bottom:28px;border-radius:50%;background:linear-gradient(135deg,#ff3158,#b8002a);font-size:12px;font-weight:850;box-shadow:0 8px 30px rgba(206,0,44,.24)}.payment-card h3{margin:0 0 10px;font-size:21px}.payment-card p{margin:0;color:#bcaeb0;line-height:1.65}.payment-contact{display:flex;align-items:center;justify-content:space-between;gap:30px;margin-top:22px;padding:clamp(26px,4vw,44px);border:1px solid rgba(255,56,91,.17);border-radius:26px;background:linear-gradient(120deg,rgba(69,7,18,.68),rgba(17,3,6,.88))}.payment-contact h3{margin:4px 0 8px;font-size:clamp(22px,2.4vw,32px)}.payment-contact p:last-child{margin:0;color:#c5b7b9;line-height:1.6}
.collection-tools{display:grid;grid-template-columns:minmax(230px,1fr) auto auto;align-items:center;gap:12px;margin-bottom:24px;padding:14px;border:1px solid rgba(255,255,255,.07);border-radius:20px;background:rgba(19,5,8,.76);backdrop-filter:blur(18px);-webkit-backdrop-filter:blur(18px)}.collection-search input,.collection-tools select{width:100%;min-height:48px;border:1px solid rgba(255,255,255,.09);border-radius:14px;background:#0d0507;color:#fff;padding:0 16px;font:inherit;outline:none}.collection-search input:focus,.collection-tools select:focus{border-color:rgba(255,64,96,.62);box-shadow:0 0 0 3px rgba(255,38,76,.08)}.collection-result{padding:0 10px;color:#a99498;font-size:13px;white-space:nowrap}.continue-watching{display:flex;align-items:center;justify-content:space-between;gap:20px;margin:-4px 0 24px;padding:19px 22px;border:1px solid rgba(255,58,94,.2);border-radius:18px;background:linear-gradient(120deg,rgba(71,8,19,.78),rgba(20,4,7,.86))}.continue-watching div{display:grid;gap:3px}.continue-watching strong{font-size:18px}.continue-watching span{color:#bcaeb1;font-size:13px}
.teaser-card[hidden]{display:none!important}.teaser-card{content-visibility:auto;contain-intrinsic-size:280px 420px}.teaser-card__video{transform:translateZ(0);-webkit-transform:translateZ(0)}
@media (max-width:1024px){.pricing-grid--two{grid-template-columns:1fr}.payment-layout{grid-template-columns:repeat(2,minmax(0,1fr))}.pricing-card:hover{transform:none}.collection-tools{grid-template-columns:1fr auto}.collection-result{grid-column:1/-1;padding:2px 4px}.site-header{padding-top:env(safe-area-inset-top)}.site-shell{padding-bottom:env(safe-area-inset-bottom)}}
@media (max-width:640px){.package-section,.payment-section{padding:74px 0}.package-group__heading{align-items:flex-start}.package-number{flex-basis:42px;height:42px}.pricing-card{border-radius:22px;padding:24px 20px}.pricing-card__top{align-items:flex-start;flex-direction:column}.payment-layout{grid-template-columns:1fr}.payment-card{min-height:0}.payment-contact{align-items:stretch;flex-direction:column}.payment-contact .button{width:100%;justify-content:center}.collection-tools{grid-template-columns:1fr}.collection-tools select{width:100%}.continue-watching{align-items:stretch;flex-direction:column}.continue-watching .button{width:100%;justify-content:center}.age-gate__card{max-height:calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 30px);overflow:auto}.hero{min-height:100svh}}
@media (prefers-reduced-motion:reduce){*,*:before,*:after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

/* =========================================================
   RESTORED THEME: AGE TRANSITION, UNIFIED BACKGROUNDS,
   RESPONSIVE PACKAGE GRID
   ========================================================= */

/* Smooth hand-off from the age gate while preserving the original design. */
.site-shell {
  opacity: 0;
  transform: scale(1.012);
  filter: blur(8px);
}

.site-shell.site-shell--entering,
.site-shell.site-shell--visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.site-shell.site-shell--entering {
  transition: opacity 680ms cubic-bezier(.2,.8,.2,1),
              transform 820ms cubic-bezier(.2,.8,.2,1),
              filter 680ms ease;
}

.site-shell.site-shell--visible { transition: none; }
.age-gate { transition: opacity 580ms ease, visibility 580ms ease; }
.age-gate__card {
  transition: opacity 500ms ease,
              transform 680ms cubic-bezier(.2,.8,.2,1),
              filter 500ms ease;
}
.age-gate.age-gate--leaving { opacity: 0; pointer-events: none; }
.age-gate.age-gate--leaving .age-gate__card {
  opacity: 0;
  transform: translateY(-22px) scale(.972);
  filter: blur(7px);
}

/* One synchronized cinematic background for every main section. */
:root {
  --payi-section-background:
    radial-gradient(circle at 12% 22%, rgba(176, 0, 32, .14), transparent 34%),
    radial-gradient(circle at 88% 72%, rgba(92, 0, 17, .11), transparent 32%),
    linear-gradient(180deg, rgba(13, 1, 3, .68), rgba(4, 0, 1, .84));
}

.content-section,
.content-section--alternate,
.private-access-section,
.package-section,
.payment-section,
.official-links,
.collection-hero,
.collection-library,
.collection-unlock {
  background: var(--payi-section-background) !important;
  border-top: 1px solid rgba(255, 72, 96, .05);
  border-bottom: 1px solid rgba(255, 72, 96, .03);
}

.collection-page .site-main,
.collection-page .collection-main { background: transparent; }

/* Three equal individual package cards, then equal-width combo cards below. */
.pricing-grid--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.pricing-grid--three .pricing-card { height: 100%; }
.pricing-grid--combo .pricing-card { min-width: 0; }

/* Sticky-header anchor alignment, without changing the original navigation design. */
#personal,
#dsmelayu,
#private-access,
#packages,
#payment,
#official-links { scroll-margin-top: 108px; }

@media (max-width: 1100px) {
  .pricing-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid--combo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .pricing-grid--three,
  .pricing-grid--combo { grid-template-columns: 1fr; }

  .site-shell { transform: translateY(10px) scale(1.006); }

  #personal,
  #dsmelayu,
  #private-access,
  #packages,
  #payment,
  #official-links { scroll-margin-top: calc(82px + env(safe-area-inset-top)); }
}

@media (prefers-reduced-motion: reduce) {
  .site-shell,
  .age-gate,
  .age-gate__card {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}

/* =========================================================
   STATIC CONTINUOUS BACKGROUND — UPDATE 4
   One fixed background across index, Personal and DS Melayu.
   Section wrappers no longer add bands, lines or moving layers.
   ========================================================= */
html,
body {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(176, 0, 32, 0.14),
      transparent 35%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(92, 0, 17, 0.10),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #0d0103 0%,
      #050101 54%,
      #020000 100%
    ) !important;

  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* Keep the cinematic background fixed and completely static. */
.ambient-background {
  position: fixed !important;
  inset: 0 !important;
  z-index: -10 !important;

  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(145, 0, 28, 0.22),
      transparent 38%
    ),
    radial-gradient(
      circle at 80% 42%,
      rgba(85, 0, 17, 0.15),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      #160205 0%,
      #0d0103 46%,
      #050101 100%
    ) !important;

  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.ambient-orb {
  animation: none !important;
  transform: none !important;
}

/* Remove every section-level colour band and separator line. */
.site-main,
.collection-main,
.hero,
.collection-hero,
.collection-library,
.collection-unlock,
.content-section,
.content-section--alternate,
.private-access-section,
.package-section,
.payment-section,
.official-links,
.site-footer {
  background: transparent !important;
  background-image: none !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

/* Prevent decorative section layers from creating visible background blocks. */
.hero::before,
.hero::after,
.collection-hero::before,
.collection-hero::after,
.collection-library::before,
.collection-library::after,
.content-section::before,
.content-section::after,
.package-section::before,
.package-section::after,
.payment-section::before,
.payment-section::after,
.official-links::before,
.official-links::after,
.site-footer::before,
.site-footer::after {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Keep only content spacing; no visual divider between hero and library. */
.collection-hero {
  border-bottom: 0 !important;
}

.collection-library {
  border-top: 0 !important;
}

/* Header stays readable but does not introduce a hard horizontal line. */
.site-header {
  border-bottom-color: transparent !important;
}

/* =========================================================
   FINAL MOBILE + TABLET THUMBNAIL FILL FIX
   Desktop remains unchanged.
   Mobile/tablet uses the real PNG <img> created by script.js.
   ========================================================= */
@media screen and (max-width: 1180px),
       screen and (hover: none),
       screen and (pointer: coarse) {

  .teaser-card,
  #personal .teaser-card,
  #dsmelayu .teaser-card,
  #blasphemy .teaser-card,
  .teaser-grid--library .teaser-card {
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
  }

  .teaser-card__thumbnail {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 100% !important;
    min-height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;

    object-fit: cover !important;
    object-position: center center !important;
    
    transform: scale(1.30) !important;
	transform-origin: center center !important;

    border: 0 !important;
    border-radius: inherit !important;

    z-index: 1 !important;
    pointer-events: none !important;
  }

  .teaser-card__video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 0 !important;
  }

  .teaser-card::after {
    z-index: 2 !important;
    pointer-events: none !important;
  }

  .teaser-card__content {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 3 !important;
  }
}

/* =========================================================
   DS MELAYU CATEGORY SECTIONS
   ========================================================= */

.collection-category-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 54px;
}

.collection-category-section + .collection-category-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.collection-category-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.collection-category-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.12;
}

.collection-category-heading > div > p:last-child {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.collection-category-note {
  display: inline;
  font-size: 0.48em;
  font-weight: 500;
  color: var(--text-muted);
  white-space: normal;
}

.collection-category-note a {
  display: inline-block;
  color: #ffd54a;
  font-weight: 800;
  text-decoration: none;

  padding: 3px 9px;
  margin: 0 3px;

  border: 1px solid rgba(255, 213, 74, 0.55);
  border-radius: 999px;

  background: rgba(255, 213, 74, 0.12);

  box-shadow:
    0 0 12px rgba(255, 213, 74, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.collection-category-note a:hover,
.collection-category-note a:focus-visible {
  color: #1a1200;
  background: #ffd54a;
  border-color: #ffd54a;

  box-shadow:
    0 0 18px rgba(255, 213, 74, 0.42);

  transform: translateY(-1px);
  outline: none;
}

.teaser-grid--placeholder {
  margin-top: 0;
}

.teaser-card--placeholder {
  position: relative;
  cursor: default;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 255, 255, 0.08),
      transparent 44%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    ) !important;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.teaser-card--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      135deg,
      transparent 35%,
      rgba(255, 255, 255, 0.035),
      transparent 65%
    );
  pointer-events: none;
}

.teaser-card--placeholder:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.32);
}

.teaser-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.teaser-placeholder__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.55rem;
  line-height: 1;
}

.teaser-placeholder h3 {
  max-width: 220px;
  margin: 2px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.teaser-placeholder p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.collection-category-section--premium {
  margin-top: 18px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(170, 30, 45, 0.12),
      transparent 52%
    );
}

.teaser-card--premium-placeholder {
  border-color: rgba(203, 74, 88, 0.4);
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(202, 53, 70, 0.17),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    ) !important;
}

.teaser-card--premium-placeholder .teaser-placeholder__icon {
  border-color: rgba(203, 74, 88, 0.42);
  background: rgba(203, 74, 88, 0.12);
}


/* Mobile and iPad */
@media screen and (max-width: 1180px),
       screen and (hover: none),
       screen and (pointer: coarse) {

  .collection-category-section {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .collection-category-heading {
    display: block;
    margin-bottom: 20px;
  }

  .collection-category-note {
    display: block;
    margin-top: 7px;
    font-size: 0.52em;
    line-height: 1.5;
  }

  .teaser-card--placeholder {
    transform: none !important;
  }
}


/* Small phones */
@media screen and (max-width: 560px) {

  .collection-category-section {
    padding-top: 25px;
    padding-bottom: 34px;
  }

  .collection-category-heading h2 {
    font-size: 1.55rem;
  }

  .collection-category-heading > div > p:last-child {
    font-size: 0.86rem;
  }

  .teaser-placeholder {
    padding: 16px;
    gap: 7px;
  }

  .teaser-placeholder__icon {
    width: 43px;
    height: 43px;
    font-size: 1.2rem;
  }

  .teaser-placeholder h3 {
    font-size: 0.84rem;
  }

  .teaser-placeholder p {
    font-size: 0.68rem;
  }
}

/* FINAL PLACEHOLDER CARD ALIGNMENT FIX */
.teaser-card--placeholder {
  position: relative !important;
  overflow: hidden !important;
}

.teaser-card--placeholder .teaser-placeholder {
  position: absolute !important;
  inset: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  width: 100% !important;
  height: 100% !important;

  padding: 24px !important;
  text-align: center !important;
}

.teaser-card--placeholder .teaser-placeholder__icon {
  display: grid !important;
  place-items: center !important;

  width: 54px !important;
  height: 54px !important;

  margin: 0 0 3px !important;
  border-radius: 50% !important;
}

/* =========================================================
   DS MELAYU — CHANNEL AVAILABILITY + ACCESS COMPARISON
   ========================================================= */


/* ---------- Section availability labels ---------- */

.collection-availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  margin-top: 12px;
  padding: 7px 12px;

  border-radius: 999px;

  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
}

.collection-availability--both {
  color: #d9d9d9;

  border: 1px solid rgba(255, 255, 255, 0.13);

  background: rgba(255, 255, 255, 0.055);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.collection-availability__dot {
  width: 7px;
  height: 7px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: #62d890;

  box-shadow:
    0 0 10px rgba(98, 216, 144, 0.48);
}


/* Premium-only section label */

.collection-availability--premium {
  color: #ffe47b;

  border: 1px solid rgba(255, 213, 74, 0.35);

  background: rgba(255, 213, 74, 0.08);

  box-shadow:
    0 0 18px rgba(255, 213, 74, 0.07);
}

.collection-availability--premium a {
  color: #ffd54a;

  font-weight: 900;

  text-decoration: none;

  border-bottom: 1px solid rgba(255, 213, 74, 0.55);

  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.collection-availability--premium a:hover,
.collection-availability--premium a:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
}

.collection-availability__star {
  color: #ffd54a;

  text-shadow:
    0 0 12px rgba(255, 213, 74, 0.45);
}


/* ---------- Channel comparison ---------- */

.channel-comparison {
  position: relative;

  padding:
    18px 0
    clamp(56px, 7vw, 90px);
}

.channel-comparison__heading {
  max-width: 760px;

  margin-bottom: 30px;
}

.channel-comparison__heading h2 {
  margin: 0;

  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.channel-comparison__heading > p:last-child {
  max-width: 680px;

  margin: 16px 0 0;

  color: var(--muted);

  line-height: 1.7;
}


/* Two cards */

.channel-comparison__grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 22px;
}


/* Individual channel */

.channel-plan {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 100%;

  padding: clamp(26px, 4vw, 42px);

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.11);

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.055),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(35, 10, 13, 0.88),
      rgba(8, 2, 3, 0.96)
    );

  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.25);
}


/* Standard */

.channel-plan--standard {
  border-color:
    rgba(255, 255, 255, 0.12);
}


/* Premium */

.channel-plan--premium {
  border-color:
    rgba(255, 213, 74, 0.32);

  background:
    radial-gradient(
      circle at 80% 0%,
      rgba(255, 213, 74, 0.12),
      transparent 39%
    ),
    radial-gradient(
      circle at 0% 60%,
      rgba(185, 24, 48, 0.16),
      transparent 48%
    ),
    linear-gradient(
      145deg,
      rgba(47, 12, 15, 0.94),
      rgba(9, 2, 3, 0.98)
    );

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(255, 213, 74, 0.035);
}


/* Premium badge */

.channel-plan__premium-badge {
  position: absolute;

  top: 20px;
  right: 20px;

  padding: 6px 11px;

  color: #ffd54a;

  border:
    1px solid
    rgba(255, 213, 74, 0.38);

  border-radius: 999px;

  background:
    rgba(255, 213, 74, 0.09);

  font-size: 0.66rem;
  font-weight: 900;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}


/* Header */

.channel-plan__header {
  padding-right: 70px;
}

.channel-plan__type {
  display: block;

  margin-bottom: 10px;

  color: #ff647c;

  font-size: 0.7rem;
  font-weight: 900;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.channel-plan--premium .channel-plan__type {
  color: #ffd54a;
}

.channel-plan__header h3 {
  margin: 0;

  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.channel-plan__header p {
  max-width: 480px;

  margin: 13px 0 0;

  color: var(--muted);

  line-height: 1.6;
}


/* Features */

.channel-plan__features {
  display: grid;

  gap: 4px;

  margin-top: 30px;
}

.channel-plan__feature {
  display: flex;
  align-items: center;

  gap: 11px;

  padding: 12px 0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.065);

  color: rgba(255, 255, 255, 0.86);

  font-size: 0.92rem;
  font-weight: 650;
}

.channel-plan__feature > span {
  display: grid;
  place-items: center;

  width: 23px;
  height: 23px;

  flex: 0 0 auto;

  border-radius: 50%;

  font-size: 0.78rem;
  font-weight: 900;
}


/* Included */

.channel-plan__feature--yes > span {
  color: #82e5a5;

  background:
    rgba(80, 204, 125, 0.1);

  border:
    1px solid
    rgba(80, 204, 125, 0.23);
}


/* Not included */

.channel-plan__feature--no {
  color:
    rgba(255, 255, 255, 0.45);
}

.channel-plan__feature--no > span {
  color: #ff7589;

  background:
    rgba(255, 73, 99, 0.08);

  border:
    1px solid
    rgba(255, 73, 99, 0.2);
}


/* Premium features */

.channel-plan__feature--premium {
  color: #ffe9a0;
}

.channel-plan__feature--premium > span {
  color: #ffd54a;

  background:
    rgba(255, 213, 74, 0.1);

  border:
    1px solid
    rgba(255, 213, 74, 0.28);

  box-shadow:
    0 0 12px
    rgba(255, 213, 74, 0.08);
}


/* Bottom */

.channel-plan__footer {
  margin-top: auto;

  padding-top: 26px;

  color: var(--muted);

  font-size: 0.82rem;
  font-weight: 700;
}

.channel-plan__footer a {
  display: inline-flex;
  align-items: center;

  color: #ffd54a;

  text-decoration: none;

  font-weight: 900;

  transition:
    color 180ms ease,
    transform 180ms ease;
}

.channel-plan__footer a:hover,
.channel-plan__footer a:focus-visible {
  color: #ffffff;

  transform:
    translateX(3px);
}


/* Summary underneath both cards */

.channel-comparison__summary {
  max-width: 900px;

  margin: 26px auto 0;

  padding: 16px 20px;

  border:
    1px solid
    rgba(255, 255, 255, 0.09);

  border-radius: 16px;

  background:
    rgba(255, 255, 255, 0.035);

  color: var(--muted);

  text-align: center;

  line-height: 1.6;
}

.channel-comparison__summary strong {
  color: #ffffff;
}


/* =========================================================
   CHANNEL COMPARISON — MOBILE + IPAD
   ========================================================= */

@media screen and (max-width: 1180px),
       screen and (hover: none),
       screen and (pointer: coarse) {

  .channel-comparison {
    padding-bottom: 56px;
  }

  .channel-comparison__grid {
    grid-template-columns: 1fr;
  }

  .channel-plan {
    padding: 28px;
  }
}


/* Small phones */

@media screen and (max-width: 560px) {

  .collection-availability {
    align-items: flex-start;

    max-width: 100%;

    padding: 7px 10px;

    font-size: 0.66rem;

    line-height: 1.35;
  }

  .collection-availability__dot {
    margin-top: 3px;
  }

  .channel-comparison__heading h2 {
    font-size: 2rem;
  }

  .channel-plan {
    padding: 24px 20px;

    border-radius: 22px;
  }

  .channel-plan__header {
    padding-right: 0;
    padding-top: 35px;
  }

  .channel-plan__premium-badge {
    top: 18px;
    left: 20px;
    right: auto;
  }

  .channel-plan__header h3 {
    font-size: 1.65rem;
  }

  .channel-plan__feature {
    font-size: 0.82rem;
  }

  .channel-comparison__summary {
    padding: 14px 16px;

    font-size: 0.8rem;

    text-align: left;
  }
}

/* =========================================================
   DS MELAYU — COLLECTION SEARCH + CATEGORY FILTERS
   ========================================================= */

.collection-tools {
  display: grid;
  gap: 16px;
}


/* Search bar */

.collection-search {
  width: 100%;
}

.collection-search input {
  width: 100%;
}


/* Category filter buttons */

.collection-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.collection-filter {
  appearance: none;

  padding: 9px 14px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.045);

  color: rgba(255, 255, 255, 0.72);

  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;

  cursor: pointer;

  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.collection-filter:hover {
  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.22);

  background: rgba(255, 255, 255, 0.075);

  transform: translateY(-1px);
}

.collection-filter.is-active {
  color: #ffffff;

  border-color: rgba(255, 71, 101, 0.48);

  background: rgba(190, 24, 51, 0.24);

  box-shadow:
    0 0 18px rgba(190, 24, 51, 0.12);
}


/* Premium-only button */

.collection-filter--premium {
  color: #ffe17a;

  border-color: rgba(255, 213, 74, 0.25);

  background: rgba(255, 213, 74, 0.055);
}

.collection-filter--premium.is-active {
  color: #1a1200;

  border-color: #ffd54a;

  background: #ffd54a;

  box-shadow:
    0 0 18px rgba(255, 213, 74, 0.22);
}


/* Bottom row: sorting + count */

.collection-tools__bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 16px;
}

.collection-tools__bottom select {
  min-width: 165px;
}

.collection-result {
  color: rgba(255, 255, 255, 0.55);

  font-size: 0.8rem;
  font-weight: 700;
}


/* =========================================================
   MOBILE + IPAD
   ========================================================= */

@media screen and (max-width: 1180px),
       screen and (hover: none),
       screen and (pointer: coarse) {

  .collection-category-filters {
    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 4px;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .collection-category-filters::-webkit-scrollbar {
    display: none;
  }

  .collection-filter {
    flex: 0 0 auto;

    white-space: nowrap;
  }

}


/* Small phones */

@media screen and (max-width: 560px) {

  .collection-tools {
    gap: 13px;
  }

  .collection-filter {
    padding: 8px 12px;

    font-size: 0.7rem;
  }

  .collection-tools__bottom {
    align-items: stretch;

    flex-direction: column;
  }

  .collection-tools__bottom select {
    width: 100%;
  }

  .collection-result {
    padding-left: 2px;
  }

}

/* =========================================================
   CHANNEL MEDIA COUNT
   ========================================================= */

.channel-plan__media-count {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;

  width: fit-content;

  margin-top: 20px;
  padding: 10px 14px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04);

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.channel-plan__media-number {
  color: #ffffff;

  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;

  letter-spacing: -0.03em;

  font-variant-numeric: tabular-nums;
}

.channel-plan__media-count span {
  color: var(--muted);

  font-size: 0.85rem;
  font-weight: 700;
}


/* Premium variation */

.channel-plan__media-count--premium {
  border-color: rgba(255, 213, 74, 0.24);

  background: rgba(255, 213, 74, 0.06);

  box-shadow:
    0 0 18px rgba(255, 213, 74, 0.04);
}

.channel-plan__media-count--premium
.channel-plan__media-number {
  color: #ffd54a;
}


/* Mobile / iPad */

@media screen and (max-width: 1180px),
       screen and (hover: none),
       screen and (pointer: coarse) {

  .channel-plan__media-count {
    margin-top: 17px;
  }
}


/* Small phones */

@media screen and (max-width: 560px) {

  .channel-plan__media-count {
    padding: 9px 12px;
  }

  .channel-plan__media-number {
    font-size: 1.45rem;
  }

  .channel-plan__media-count span {
    font-size: 0.78rem;
  }
}

/* =========================================================
   CHANNEL MEDIA BREAKDOWN
   Photos + Videos = Total Media
   ========================================================= */

.channel-plan__media-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;

  margin-top: 20px;
}

.channel-plan__media-stats .channel-plan__media-count {
  margin-top: 0;
}


/* Individual photo / video stat */

.channel-plan__media-detail {
  display: flex;
  flex-direction: column;

  gap: 3px;

  padding: 9px 12px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.025);
}

.channel-plan__media-label {
  color: var(--muted);

  font-size: 0.66rem;
  font-weight: 800;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.channel-plan__media-subnumber {
  color: #ffffff;

  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;

  font-variant-numeric: tabular-nums;
}


/* + and = symbols */

.channel-plan__media-symbol {
  color: rgba(255, 255, 255, 0.38);

  font-size: 1rem;
  font-weight: 900;
}


/* Premium version */

.channel-plan__media-stats--premium
.channel-plan__media-detail {
  border-color: rgba(255, 213, 74, 0.15);

  background: rgba(255, 213, 74, 0.025);
}

.channel-plan__media-stats--premium
.channel-plan__media-subnumber {
  color: #ffe585;
}

.channel-plan__media-stats--premium
.channel-plan__media-symbol {
  color: rgba(255, 213, 74, 0.5);
}


/* Mobile / iPad */

@media screen and (max-width: 1180px),
       screen and (hover: none),
       screen and (pointer: coarse) {

  .channel-plan__media-stats {
    margin-top: 17px;
  }

}


/* Small phones */

@media screen and (max-width: 560px) {

  .channel-plan__media-stats {
    display: grid;

    grid-template-columns:
      minmax(0, 1fr)
      auto
      minmax(0, 1fr);

    gap: 7px;
  }

  .channel-plan__media-detail {
    padding: 8px 10px;
  }

  .channel-plan__media-stats
  > .channel-plan__media-count {
    grid-column: 1 / -1;

    justify-self: start;
  }

  .channel-plan__media-stats
  > .channel-plan__media-symbol:nth-of-type(2) {
    display: none;
  }

}

/* =========================================================
   CUSTOMER FEEDBACK SECTION
   ========================================================= */

.feedback-section {
  position: relative;

  padding:
    clamp(58px, 8vw, 96px)
    0;
}


/* Heading */

.feedback-section__heading {
  max-width: 720px;

  margin-bottom: 30px;
}

.feedback-section__heading h2 {
  margin: 0;

  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.feedback-section__heading > p:last-child {
  max-width: 620px;

  margin: 14px 0 0;

  color: var(--muted);

  line-height: 1.65;
}


/* Feedback grid */

.feedback-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;
}


/* Individual feedback card */

.feedback-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 270px;

  padding: 24px;

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(190, 24, 51, 0.13),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      rgba(35, 8, 12, 0.88),
      rgba(8, 2, 3, 0.96)
    );

  box-shadow:
    0 22px 55px
    rgba(0, 0, 0, 0.22);
}


/* Top row */

.feedback-card__top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 14px;

  margin-bottom: 20px;
}


/* Stars */

.feedback-card__stars {
  color: #ffd54a;

  font-size: 0.92rem;

  letter-spacing: 0.08em;

  text-shadow:
    0 0 12px
    rgba(255, 213, 74, 0.18);
}


/* Channel badge */

.feedback-card__channel {
  padding: 6px 9px;

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.045);

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 0.64rem;
  font-weight: 800;

  white-space: nowrap;
}


/* Review text */

.feedback-card__comment {
  margin: 0;

  color:
    rgba(255, 255, 255, 0.88);

  font-size: 1rem;
  font-weight: 600;

  line-height: 1.65;
}


/* Customer */

.feedback-card__customer {
  display: flex;
  flex-direction: column;

  gap: 4px;

  margin-top: auto;
  padding-top: 24px;
}

.feedback-card__customer strong {
  color: #ffffff;

  font-size: 0.88rem;
}

.feedback-card__customer span {
  color: var(--muted);

  font-size: 0.74rem;
}


/* Bottom message */

.feedback-section__note {
  margin-top: 22px;

  color:
    rgba(255, 255, 255, 0.45);

  font-size: 0.76rem;
  font-weight: 700;

  text-align: center;

  letter-spacing: 0.04em;
}


/* =========================================================
   FEEDBACK — MOBILE / IPAD
   ========================================================= */

@media screen and (max-width: 1180px),
       screen and (hover: none),
       screen and (pointer: coarse) {

  .feedback-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* Small phones */

@media screen and (max-width: 560px) {

  .feedback-section {
    padding:
      48px
      0;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    min-height: 245px;

    padding: 20px;

    border-radius: 19px;
  }

  .feedback-card__top {
    align-items: flex-start;
  }

  .feedback-card__comment {
    font-size: 0.92rem;
  }

}

/* =========================================================
   INLINE CUSTOMER FEEDBACK FORM
   ========================================================= */

.feedback-submit-panel {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(190, 24, 51, 0.14),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(34, 7, 11, 0.94),
      rgba(8, 2, 3, 0.98)
    );

  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.25);
}

.feedback-submit-panel__heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.feedback-submit-panel__heading h3 {
  margin: 0;

  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.feedback-submit-panel__heading > p:last-child {
  margin: 12px 0 0;

  color: var(--muted);
  line-height: 1.65;
}

.inline-feedback-form {
  display: grid;
  gap: 22px;
}

.inline-feedback-form__grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}

.feedback-field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.feedback-field input[type="month"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.feedback-field label,
.feedback-field legend {
  color: rgba(255, 255, 255, 0.86);

  font-size: 0.78rem;
  font-weight: 800;
}

.feedback-field input,
.feedback-field select,
.feedback-field textarea {
  width: 100%;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.045);

  color: #ffffff;

  font: inherit;
  outline: none;
}

.feedback-field input,
.feedback-field select {
  min-height: 50px;
  padding: 0 15px;
}

.feedback-field textarea {
  min-height: 150px;
  padding: 15px;

  resize: vertical;
  line-height: 1.6;
}

.feedback-field input::placeholder,
.feedback-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.feedback-field select option {
  color: #111111;
}

.feedback-field__hint {
  color: rgba(255, 255, 255, 0.4);

  font-size: 0.7rem;
}


/* Star rating */

.feedback-rating-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.feedback-rating {
  display: inline-flex;

  flex-direction: row-reverse;
  justify-content: flex-end;

  gap: 5px;

  width: fit-content;
}

.feedback-rating input {
  position: absolute;

  opacity: 0;
  pointer-events: none;
}

.feedback-rating label {
  color: rgba(255, 255, 255, 0.18);

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;

  transition:
    color 150ms ease,
    transform 150ms ease,
    text-shadow 150ms ease;
}

.feedback-rating label:hover,
.feedback-rating label:hover ~ label,
.feedback-rating input:checked ~ label {
  color: #ffd54a;

  text-shadow:
    0 0 14px rgba(255, 213, 74, 0.22);
}


/* Consent */

.feedback-consent {
  display: flex;
  align-items: flex-start;

  gap: 11px;

  color: var(--muted);

  font-size: 0.76rem;
  line-height: 1.55;
}

.feedback-consent input {
  width: 17px;
  height: 17px;

  flex: 0 0 auto;

  margin-top: 2px;

  accent-color: #d51b3d;
}


/* Mobile */

@media screen and (max-width: 760px) {
	
	.feedback-joined-selects {
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
}

.feedback-joined-selects select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

  .inline-feedback-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feedback-field {
    min-width: 0;
    width: 100%;
  }

  .feedback-field input[type="month"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  
  .feedback-joined-selects {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.feedback-joined-selects select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 50px;

  padding: 0 15px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.045);

  color: #ffffff;

  font: inherit;
  outline: none;

  box-sizing: border-box;
}

.feedback-joined-selects select option {
  color: #111111;
}

  .feedback-submit-panel {
    padding: 22px;
  }

  .feedback-submit {
    width: 100%;
  }

}

/* ========================================
   FEEDBACK SUBMISSION MESSAGE
======================================== */

.feedback-submit-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.feedback-submit-message--success {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.35);
  color: #8ff0b5;
}

.feedback-submit-message--error {
  background: rgba(255, 70, 70, 0.12);
  border: 1px solid rgba(255, 70, 70, 0.35);
  color: #ff9c9c;
}

.feedback-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* =========================================================
   ADMIN FEEDBACK DASHBOARD
   ========================================================= */

.admin-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 70px;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.admin-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.admin-subtitle {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.admin-refresh {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
}

.admin-refresh:hover {
  background: rgba(255, 255, 255, 0.1);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.stat-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
}

.feedback-list {
  display: grid;
  gap: 16px;
}

.feedback-card {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
}

.feedback-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.feedback-name {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.feedback-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.6;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pending {
  color: #ffd56a;
  background: rgba(255, 193, 7, 0.12);
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.status-approved {
  color: #8ff0b5;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.25);
}

.status-rejected {
  color: #ff9c9c;
  background: rgba(255, 70, 70, 0.12);
  border: 1px solid rgba(255, 70, 70, 0.25);
}

.feedback-stars {
  color: #ffd84d;
  font-size: 1.15rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.feedback-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  white-space: pre-wrap;
}

.feedback-empty,
.feedback-error,
.feedback-loading {
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.55);
}

.feedback-error {
  color: #ff9c9c;
}

.feedback-section__heading > .feedback-section__intro-note {
  max-width: 620px;

  margin: 14px 0 0;

  color: rgba(255, 255, 255, 0.45);

  font-size: 0.76rem;
  font-weight: 700;

  line-height: 1.65;
  letter-spacing: 0.04em;
}

/* =========================================================
   ADMIN FEEDBACK - TABLET
   ========================================================= */

@media (max-width: 800px) {

  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-card__top {
    flex-direction: column;
  }
}


/* =========================================================
   ADMIN FEEDBACK - MOBILE
   ========================================================= */

@media (max-width: 480px) {

  .admin-shell {
    width: min(100% - 24px, 1200px);
    padding-top: 24px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ADMIN FEEDBACK - ENHANCED DASHBOARD
   ========================================================= */

.admin-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 90, 115, 0.9);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card {
  width: 100%;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.055);
}

.stat-card--active {
  border-color: rgba(255, 60, 90, 0.35);
  background:
    linear-gradient(
      145deg,
      rgba(255, 50, 80, 0.09),
      rgba(255, 255, 255, 0.025)
    );
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.admin-search {
  flex: 1 1 420px;
}

.admin-search input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  font: inherit;
}

.admin-search input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.admin-search input:focus {
  border-color: rgba(255, 70, 100, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

.admin-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-filter-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.admin-filter-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.admin-filter-tab--active {
  color: #ffffff;
  border-color: rgba(255, 65, 95, 0.32);
  background: rgba(255, 50, 80, 0.11);
}

.admin-results-info {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  font-weight: 650;
}

.feedback-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.feedback-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: rgba(255, 65, 90, 0.3);
}

.feedback-card__identity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.feedback-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 800;
}

.feedback-name {
  margin: 0;
}

.feedback-meta {
  display: flex;
  align-items: center;
  gap: 8px 14px;
  flex-wrap: wrap;
}

.feedback-meta span {
  position: relative;
}

.feedback-meta span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
  color: rgba(255, 255, 255, 0.18);
}

.feedback-content-box {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.feedback-content-label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feedback-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.feedback-card__actions-right {
  display: flex;
  align-items: center;
  gap: 9px;
}

.feedback-action {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.feedback-action:hover {
  transform: translateY(-1px);
}

.feedback-action--edit {
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.045);
}

.feedback-action--edit:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.075);
}

.feedback-action--reject {
  color: #ff9c9c;
  border-color: rgba(255, 70, 70, 0.2);
  background: rgba(255, 70, 70, 0.07);
}

.feedback-action--reject:hover {
  border-color: rgba(255, 70, 70, 0.35);
  background: rgba(255, 70, 70, 0.12);
}

.feedback-action--approve {
  color: #8ff0b5;
  border-color: rgba(46, 204, 113, 0.22);
  background: rgba(46, 204, 113, 0.08);
}

.feedback-action--approve:hover {
  border-color: rgba(46, 204, 113, 0.38);
  background: rgba(46, 204, 113, 0.14);
}

.feedback-content-box .feedback-text {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.feedback-content-box {
  padding: 10px 14px;
  min-height: 0;
}

.feedback-content-box .feedback-content-label {
  margin: 0 0 6px 0;
}

.feedback-content-box .feedback-text {
  margin: 0;
  padding: 0;
  line-height: 1.45;
  min-height: 0;
}

.feedback-content-label {
  margin-bottom: 4px;
}

/* =========================================================
   ADMIN FEEDBACK - ENHANCED TABLET
   ========================================================= */

@media (max-width: 800px) {

  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-search {
    flex-basis: auto;
  }

  .feedback-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .feedback-meta span::after {
    display: none;
  }
}


/* =========================================================
   ADMIN FEEDBACK - ENHANCED MOBILE
   ========================================================= */

@media (max-width: 560px) {

  .admin-filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-filter-tab {
    width: 100%;
  }

  .feedback-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .feedback-card__actions-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .feedback-action {
    width: 100%;
  }
}

/* =========================================================
   ADMIN PAGE - STICKY FOOTER
   ========================================================= */

body.collection-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.collection-page .site-header {
  flex-shrink: 0;
}

body.collection-page .admin-shell {
  flex: 1 0 auto;
  width: min(1200px, calc(100% - 40px));
}

body.collection-page .site-footer {
  margin-top: auto;
  flex-shrink: 0;
}

/* =========================================================
   ADMIN FEEDBACK - INLINE EDITOR
   ========================================================= */

.feedback-edit-textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  font: inherit;
  line-height: 1.55;
}

.feedback-edit-textarea:focus {
  border-color: rgba(255, 70, 100, 0.45);
  background: rgba(255, 255, 255, 0.05);
}

.feedback-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.feedback-edit-cancel,
.feedback-edit-save {
  min-height: 40px;
  padding: 0 15px;
  border-radius: 11px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.feedback-edit-cancel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.75);
}

.feedback-edit-save {
  border: 1px solid rgba(46, 204, 113, 0.25);
  background: rgba(46, 204, 113, 0.1);
  color: #8ff0b5;
}

/* =========================================================
   PUBLIC FEEDBACK - RESPONSIVE NATURAL CARD SIZING
   ========================================================= */

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.feedback-card {
  height: auto !important;
  min-height: 0 !important;

  display: flex;
  flex-direction: column;

  padding: 20px;
}

.feedback-card__comment {
  margin: 18px 0;
  padding: 0;

  line-height: 1.6;
}

.feedback-card__customer {
  margin-top: 18px;
}

/* Tablet */
@media (max-width: 1000px) {
  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .feedback-grid {
    grid-template-columns: 1fr;
  }

  .feedback-card {
    padding: 18px;
  }
}