/* Dark Neon Pink Glassmorphism Coverflow (CSS-only skin) */
.ngc {
  --bg-near-black: #050306;
  --bg-card-a: #120812;
  --bg-card-b: #200b1b;
  --pink-primary: #d91f74;
  --pink-hi: #f08ac6;
  --pink-deep: #7f0f43;
  --text-main: #fff7fc;
  --text-sub: #a9a1ac;
  font-family: "Kanit", "Noto Sans Thai", sans-serif;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 6px 0 14px;
  border-radius: 24px;
  overflow: hidden;
  color: var(--text-main);
}

.ngc-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 24px;
  overflow: hidden;
  padding: 14px 0 12px;
  background:
    radial-gradient(90% 65% at 10% 0%, rgba(186, 28, 102, 0.1), transparent 56%),
    radial-gradient(80% 68% at 95% 12%, rgba(125, 14, 66, 0.16), transparent 55%),
    radial-gradient(80% 60% at 50% 100%, rgba(173, 26, 97, 0.14), transparent 62%),
    linear-gradient(170deg, #09060b 0%, #060409 48%, #08050a 100%);
  border: 1px solid rgba(166, 54, 116, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 20px 46px rgba(0, 0, 0, 0.56),
    0 0 52px rgba(121, 14, 66, 0.22);
}

.ngc-aurora {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.ngc-aurora::before {
  content: "";
  position: absolute;
  inset: -26% -34%;
  background:
    radial-gradient(ellipse at 24% 30%, rgba(140, 24, 74, 0.4), transparent 44%),
    radial-gradient(ellipse at 80% 70%, rgba(95, 16, 58, 0.36), transparent 41%),
    radial-gradient(ellipse at 52% 8%, rgba(180, 44, 106, 0.16), transparent 36%);
  filter: blur(34px);
  animation: ngcAuroraDrift 13s ease-in-out infinite alternate;
}
@keyframes ngcAuroraDrift {
  from { transform: translate3d(-2%, 0, 0) scale(1); opacity: 0.7; }
  to { transform: translate3d(2%, 2%, 0) scale(1.05); opacity: 1; }
}

/* Header */
.ngc-head {
  position: relative;
  z-index: 3;
  margin: 0 14px 10px;
  padding: 12px 132px 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(12, 9, 14, 0.72);
  border: 1px solid rgba(210, 84, 150, 0.35);
  backdrop-filter: blur(16px) saturate(1.14);
  -webkit-backdrop-filter: blur(16px) saturate(1.14);
  box-shadow:
    0 -1px 16px rgba(168, 11, 82, 0.32),
    0 8px 20px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* "ดูทั้งหมด" แบบ pseudo เพื่อคงโครงเดิมตามที่ขอ */
.ngc-head::after {
  content: "ดูทั้งหมด  \203A";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 11px;
  font-size: 0.74rem;
  font-weight: 700;
  color: rgba(247, 237, 243, 0.9);
  border: 1px solid rgba(208, 92, 150, 0.45);
  background:
    linear-gradient(180deg, rgba(38, 24, 36, 0.86), rgba(18, 12, 17, 0.94));
  box-shadow:
    0 0 14px rgba(168, 11, 82, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 0.02em;
}

.ngc-clock {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #f0a4cc;
  border: 1.5px solid rgba(218, 106, 161, 0.7);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 174, 220, 0.22), transparent 50%),
    linear-gradient(165deg, rgba(150, 30, 85, 0.38), rgba(60, 12, 41, 0.56));
  box-shadow:
    0 0 15px rgba(168, 11, 82, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -3px 9px rgba(0, 0, 0, 0.35);
}

.ngc-head-copy {
  min-width: 0;
  flex: 1;
}
.ngc-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ngc-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-main);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}
.ngc-badge {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, #d11e67, #911247);
  box-shadow:
    0 0 12px rgba(146, 23, 72, 0.62),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.ngc-sub {
  margin: 4px 0 0;
  font-size: 0.74rem;
  line-height: 1.32;
  color: var(--text-sub);
}

/* Stage */
.ngc-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}
.ngc-viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 306px;
  perspective: 1280px;
  perspective-origin: 50% 46%;
  touch-action: pan-y;
  outline: none;
  cursor: grab;
  transform-style: preserve-3d;
  overflow: hidden;
}
.ngc.is-dragging .ngc-viewport,
.ngc-stage.is-dragging .ngc-viewport { cursor: grabbing; }

/* ซ่อนปุ่ม < > ตามดีไซน์ล่าสุด */
.ngc-nav,
.ngc-nav[hidden],
.ngc-nav-prev,
.ngc-nav-next {
  display: none !important;
}

/* Card shell */
.ngc-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(208px, 56vw, 320px);
  min-height: clamp(244px, 60vw, 360px);
  padding: 22px 18px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-main);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.02) 36%, transparent 68%),
    linear-gradient(180deg, rgba(28, 14, 24, 0.8), rgba(13, 9, 15, 0.9));
  border: 1.4px solid rgba(162, 55, 109, 0.52);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transform: translate3d(-50%, -50%, 0) scale(0.86);
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    transform 620ms cubic-bezier(0.2, 0.86, 0.24, 1),
    opacity 520ms ease,
    filter 520ms ease,
    box-shadow 560ms ease,
    border-color 560ms ease;
}

/* top edge + bottom corner glow accents */
.ngc-card::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 132, 188, 0.72), transparent);
  filter: blur(0.2px);
  pointer-events: none;
}
.ngc-card::after {
  content: "";
  position: absolute;
  left: -18%;
  bottom: -26%;
  width: 66%;
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(137, 26, 73, 0.34), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.ngc-card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(116deg, transparent 20%, rgba(255, 255, 255, 0.08) 43%, transparent 62%),
    radial-gradient(ellipse at 50% -8%, rgba(184, 52, 112, 0.26), transparent 54%);
  opacity: 0.85;
}

.ngc-card.is-side {
  border-color: rgba(126, 38, 80, 0.42);
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.54),
    0 0 12px rgba(96, 20, 56, 0.28);
}
.ngc-card:not(.is-active):not(.is-side) {
  border-color: rgba(104, 32, 66, 0.34);
}
.ngc-card.is-active {
  border-color: rgba(228, 122, 182, 0.84);
  box-shadow:
    0 0 0 1px rgba(206, 96, 156, 0.36),
    0 0 20px rgba(182, 34, 103, 0.48),
    0 0 46px rgba(115, 14, 62, 0.4),
    0 22px 50px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.ngc-crown {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 3;
  color: #dc76aa;
  font-size: 13px;
  opacity: 0.44;
  filter: drop-shadow(0 0 6px rgba(146, 34, 80, 0.68));
  transition: opacity 0.28s ease, transform 0.28s ease, color 0.28s ease;
}
.ngc-card.is-active .ngc-crown {
  opacity: 1;
  transform: scale(1.12);
  color: #ff9ad6;
  filter: drop-shadow(0 0 10px rgba(210, 56, 124, 0.95));
}

/* YouTube 3D icon + orbital light trail */
.ngc-yt-wrap {
  /* ค่าเริ่มต้น: วิ่งครบรอบ 4 วินาที (ปรับได้จากจุดเดียว) */
  --ngc-orbit-speed: 4s;
  --ngc-orbit-phase: -0.92s;
  --ngc-orbit-path: path("M 10 63 A 46 27 -19 1 1 100 47 A 46 27 -19 1 1 10 63");
  position: relative;
  z-index: 2;
  width: 98px;
  height: 98px;
  margin: 4px auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}
.ngc-yt-wrap::before {
  content: none;
  display: none;
}

.ngc-orbit {
  position: absolute;
  inset: -14px;
  pointer-events: none;
  overflow: visible;
  clip-path: none;
  -webkit-mask-image: none;
  mask-image: none;
}
.ngc-orbit-back {
  z-index: 1;
  opacity: 1;
}
.ngc-orbit-front {
  /* ชั้นหน้าเคยมาสก์ครึ่งบนทำให้บน iPad ดูมืด/โดนตัด — ใช้วงเดียวสว่างครบ */
  display: none !important;
}

.ngc-orbit-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.ngc-orbit-svg path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

/* ริบบิ้นโปร่งรอง (กว้าง-แคบไม่เท่ากันตามโค้ง) */
.ngc-orbit-ribbon {
  stroke: rgba(222, 118, 178, 0.2);
  stroke-width: 0.95;
  stroke-dasharray: 26 19 10 45;
  filter: blur(0.25px);
}
.ngc-orbit-ribbon-soft {
  stroke: rgba(166, 58, 111, 0.16);
  stroke-width: 3.6;
  stroke-dasharray: 20 26 14 40;
  filter: blur(2px);
}
.ngc-orbit-back .ngc-orbit-ribbon {
  stroke: rgba(147, 49, 96, 0.2);
}
.ngc-orbit-front .ngc-orbit-ribbon {
  stroke: rgba(236, 132, 190, 0.34);
}

.ngc-orbit-tail {
  animation: ngcOrbitDash var(--ngc-orbit-speed) linear infinite;
  animation-delay: var(--ngc-orbit-phase);
}
/* Outer bloom */
.ngc-orbit-tail-far {
  stroke: rgba(208, 42, 122, 0.16);
  stroke-width: 10.5;
  stroke-dasharray: 54 46;
  filter: blur(4.8px);
}
/* Inner glow */
.ngc-orbit-tail-near {
  stroke: rgba(234, 98, 170, 0.48);
  stroke-width: 3.05;
  stroke-dasharray: 49 51;
  filter: blur(1.9px);
}
/* Core trail */
.ngc-orbit-tail-core {
  stroke: rgba(255, 232, 245, 0.94);
  stroke-width: 0.82;
  stroke-dasharray: 42 58;
  filter: drop-shadow(0 0 2.2px rgba(239, 152, 205, 0.72));
}
/* Head-adjacent hot segment (ช่วยให้หัว-หางติดกันและสว่างกว่าจุดอื่น) */
.ngc-orbit-tail-hot {
  stroke: rgba(255, 248, 252, 0.98);
  stroke-width: 1.08;
  stroke-dasharray: 11 89;
  filter: drop-shadow(0 0 3.2px rgba(250, 183, 223, 0.76));
}

.ngc-orbit-back .ngc-orbit-tail-far { opacity: 0.88; }
.ngc-orbit-back .ngc-orbit-tail-near { opacity: 0.9; }
.ngc-orbit-back .ngc-orbit-tail-core { opacity: 0.86; }
.ngc-orbit-back .ngc-orbit-tail-hot { opacity: 0.72; }

.ngc-orbit-back .ngc-orbit-ribbon {
  stroke: rgba(210, 96, 156, 0.28);
}
.ngc-orbit-back .ngc-orbit-ribbon-soft {
  stroke: rgba(176, 60, 118, 0.2);
}

.ngc-orbit-front .ngc-orbit-tail-far {
  stroke: rgba(222, 66, 144, 0.22);
  filter: blur(3px);
}
.ngc-orbit-front .ngc-orbit-tail-near {
  stroke: rgba(242, 126, 188, 0.62);
}
.ngc-orbit-front .ngc-orbit-tail-core {
  stroke: rgba(255, 242, 249, 0.97);
}
.ngc-orbit-front .ngc-orbit-tail-hot {
  stroke: rgba(255, 252, 254, 1);
}

.ngc-orbit-head,
.ngc-orbit-dust {
  position: absolute;
  left: 0;
  top: 0;
  offset-path: var(--ngc-orbit-path);
  -webkit-offset-path: var(--ngc-orbit-path);
  offset-rotate: auto;
  -webkit-offset-rotate: auto;
  offset-anchor: center;
  -webkit-offset-anchor: center;
  pointer-events: none;
  animation: ngcOrbitHead var(--ngc-orbit-speed) linear infinite;
  animation-delay: var(--ngc-orbit-phase);
}

/* หัวแสงเล็กคม ไม่เป็นก้อนขาว */
.ngc-orbit-head {
  width: 2.6px;
  height: 2.6px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #ffffff 0%, #ffe2f0 40%, rgba(255, 136, 201, 0.9) 72%, rgba(246, 60, 154, 0) 100%);
  box-shadow:
    0 0 0 0.4px rgba(255, 255, 255, 0.95),
    0 0 5px rgba(250, 173, 218, 0.86),
    0 0 11px rgba(212, 55, 133, 0.58);
}
.ngc-orbit-head::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 240, 0.54) 0%, rgba(255, 129, 196, 0.24) 42%, rgba(255, 69, 167, 0) 78%);
  filter: blur(0.65px);
}
.ngc-orbit-head::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(90deg, transparent, rgba(255, 246, 251, 0.9), transparent),
    linear-gradient(180deg, transparent, rgba(255, 246, 251, 0.86), transparent);
  opacity: 0.84;
  filter:
    drop-shadow(0 0 3px rgba(255, 191, 226, 0.72))
    drop-shadow(0 0 6px rgba(229, 79, 161, 0.54));
}

.ngc-orbit-dust {
  width: 1.3px;
  height: 1.3px;
  border-radius: 50%;
  background: rgba(249, 205, 230, 0.72);
  box-shadow:
    0 0 2px rgba(235, 157, 204, 0.68),
    0 0 5px rgba(198, 65, 133, 0.42);
}
.ngc-orbit-dust.d1 { animation-delay: calc(var(--ngc-orbit-phase) - 0.58s); }
.ngc-orbit-dust.d2 { animation-delay: calc(var(--ngc-orbit-phase) - 1.24s); width: 1px; height: 1px; }
.ngc-orbit-dust.d3 { animation-delay: calc(var(--ngc-orbit-phase) - 0.84s); }
.ngc-orbit-dust.d4 { animation-delay: calc(var(--ngc-orbit-phase) - 1.62s); width: 1px; height: 1px; }

.ngc-orbit-back .ngc-orbit-head {
  opacity: 0.82;
  transform: none;
}
.ngc-orbit-back .ngc-orbit-head::after { opacity: 0.7; }
.ngc-orbit-back .ngc-orbit-dust { opacity: 0.7; }

.ngc-orbit-front .ngc-orbit-head { opacity: 0.98; }
.ngc-orbit-front .ngc-orbit-dust { opacity: 0.8; }

@keyframes ngcOrbitDash {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -100; }
}
@keyframes ngcOrbitHead {
  from { offset-distance: 0%; -webkit-offset-distance: 0%; }
  to { offset-distance: 100%; -webkit-offset-distance: 100%; }
}
@supports not ((offset-path: path("M 0 0 L 1 1")) or (-webkit-offset-path: path("M 0 0 L 1 1"))) {
  .ngc-orbit-head,
  .ngc-orbit-dust {
    display: none;
  }
}

.ngc-yt {
  position: relative;
  z-index: 3;
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  color: transparent;
  border: 1px solid rgba(248, 176, 220, 0.46);
  background:
    radial-gradient(120% 95% at 27% 18%, rgba(255, 193, 226, 0.44) 0%, rgba(255, 193, 226, 0) 56%),
    linear-gradient(164deg, #ff6f9e 0%, #d22362 52%, #7b113a 100%);
  box-shadow:
    0 11px 20px rgba(86, 12, 42, 0.6),
    0 0 13px rgba(191, 47, 108, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 239, 248, 0.42),
    inset 0 -5px 11px rgba(72, 10, 33, 0.38);
  overflow: hidden;
}
.ngc-yt::before {
  content: "";
  position: absolute;
  inset: 1.2px;
  border-radius: 14px;
  background:
    radial-gradient(90% 58% at 50% 6%, rgba(255, 236, 247, 0.34), rgba(255, 236, 247, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.04) 46%, transparent 66%);
  pointer-events: none;
}
.ngc-yt::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42%;
  height: 42%;
  transform: translate(-44%, -50%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(180deg, #ffffff 0%, #ffeef8 100%);
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.36));
  opacity: 0.98;
}
.ngc-yt > i {
  display: none !important;
}

/* ลดความฟุ้งของเอฟเฟกต์บนการ์ดข้าง */
.ngc-card:not(.is-active) .ngc-orbit {
  opacity: 0.36;
}
.ngc-card:not(.is-active) .ngc-orbit-front {
  opacity: 0.26;
}
.ngc-card:not(.is-active) .ngc-orbit-tail,
.ngc-card:not(.is-active) .ngc-orbit-head,
.ngc-card:not(.is-active) .ngc-orbit-dust {
  animation-play-state: paused;
}

/* Content */
.ngc-email {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 2px 0 10px;
  padding: 0 2px;
  box-sizing: border-box;
  font-size: 0.93rem;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.ngc-date {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  margin-bottom: 15px;
  font-size: 0.86rem;
  color: var(--text-sub);
}
.ngc-date i {
  color: rgba(255, 192, 224, 0.85);
  font-size: 0.92em;
}
.ngc-date strong {
  color: #d4478e;
  font-weight: 800;
  text-shadow: 0 0 8px rgba(117, 16, 62, 0.46);
}

.ngc-cta {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(205, 112, 170, 0.76);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none !important;
  color: #f9e7f1 !important;
  background: linear-gradient(180deg, #17111b 0%, #0a0710 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  box-shadow:
    0 0 0 1px rgba(247, 174, 218, 0.1) inset,
    0 6px 18px rgba(0, 0, 0, 0.52),
    0 0 12px rgba(182, 63, 125, 0.26);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.ngc-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 188, 222, 0.16) 0%, rgba(255, 188, 222, 0.02) 36%, transparent 62%);
  pointer-events: none;
}
.ngc-cta > * { position: relative; z-index: 1; }

.ngc-card.is-active .ngc-cta {
  color: #fff6fb !important;
  border-color: rgba(242, 160, 212, 0.94);
  background: linear-gradient(180deg, #1f1523 0%, #0f0912 100%);
  box-shadow:
    0 0 0 1px rgba(255, 178, 221, 0.13) inset,
    0 9px 22px rgba(0, 0, 0, 0.58),
    0 0 17px rgba(194, 66, 131, 0.34),
    inset 0 -4px 10px rgba(74, 7, 36, 0.32);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.52);
}
.ngc-card.is-side .ngc-cta,
.ngc-card:not(.is-active):not(.is-side) .ngc-cta {
  border-color: rgba(140, 42, 84, 0.55);
  color: rgba(188, 121, 156, 0.86) !important;
}

.ngc-cta:hover {
  transform: translateY(-1px);
}
.ngc-card.is-active .ngc-cta:hover {
  border-color: rgba(252, 185, 224, 0.96);
  background: linear-gradient(180deg, #2a1a2c 0%, #130b15 100%);
  box-shadow:
    0 0 0 1px rgba(255, 196, 229, 0.18) inset,
    0 12px 28px rgba(0, 0, 0, 0.62),
    0 0 21px rgba(214, 82, 148, 0.44);
}

.ngc-tagline {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(189, 132, 163, 0.48);
  font-weight: 600;
}
.ngc-tagline::before,
.ngc-tagline::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156, 46, 96, 0.48), transparent);
}

.ngc-dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 6px;
  min-height: 16px;
  padding: 8px 0 2px;
}
.ngc-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}
.ngc-dot.is-on {
  width: 18px;
  background: linear-gradient(90deg, #d11e67, #8f1448);
  box-shadow: 0 0 10px rgba(168, 11, 82, 0.56);
}

/* Responsive — มือถือให้โทน/มิติแบบเดียวกับ iPad แต่สเกลเล็กลง */
@media (max-width: 767.98px) {
  .ngc-head {
    padding-right: 14px;
  }
  .ngc-head::after {
    display: none;
  }
  .ngc-viewport {
    height: 300px;
    perspective: 1180px;
  }
  .ngc-card {
    width: clamp(186px, 52vw, 236px);
    min-height: 242px;
    padding: 18px 14px 12px;
    border-radius: 22px;
    overflow: visible;
  }
  .ngc-yt-wrap {
    width: 74px;
    height: 74px;
    margin: 0 auto 8px;
    --ngc-orbit-path: path("M 8 48 A 34 20 -19 1 1 76 36 A 34 20 -19 1 1 8 48");
  }
  .ngc-orbit {
    inset: -11px;
    overflow: visible;
  }
  .ngc-orbit-front,
  .ngc-orbit-back {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .ngc-orbit-back {
    opacity: 1;
  }
  .ngc-orbit-front {
    display: none !important;
  }
  .ngc-yt {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .ngc-yt::before { border-radius: 9px; }
  .ngc-yt::after {
    width: 40%;
    height: 40%;
  }
  .ngc-crown {
    top: 10px;
    right: 12px;
    font-size: 11px;
  }
  .ngc-email { font-size: 0.72rem; margin-bottom: 7px; }
  .ngc-date { font-size: 0.7rem; margin-bottom: 10px; gap: 4px; }
  .ngc-cta { font-size: 0.8rem; padding: 10px 12px; gap: 6px; }
  .ngc-tagline { font-size: 6.5px; letter-spacing: 0.12em; margin-top: 8px; }
}

@media (max-width: 420px) {
  .ngc-shell { padding-top: 12px; }
  .ngc-head { margin: 0 10px 8px; padding: 10px 12px; }
  .ngc-clock { width: 34px; height: 34px; font-size: 13px; }
  .ngc-title { font-size: 0.98rem; }
  .ngc-sub { font-size: 0.69rem; }
  .ngc-viewport {
    height: 282px;
    perspective: 1100px;
  }
  .ngc-card {
    width: clamp(172px, 50vw, 210px);
    min-height: 228px;
    padding: 16px 12px 11px;
    border-radius: 20px;
    overflow: visible;
  }
  .ngc-yt-wrap {
    width: 68px;
    height: 68px;
    margin: 0 auto 7px;
    --ngc-orbit-path: path("M 7 44 A 31 18 -19 1 1 71 34 A 31 18 -19 1 1 7 44");
  }
  .ngc-orbit { inset: -10px; overflow: visible; }
  .ngc-yt {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .ngc-yt::before { border-radius: 8px; }
  .ngc-email { font-size: 0.68rem; margin-bottom: 6px; }
  .ngc-date { font-size: 0.66rem; margin-bottom: 9px; }
  .ngc-cta { font-size: 0.76rem; padding: 9px 11px; }
  .ngc-tagline { font-size: 6px; letter-spacing: 0.11em; margin-top: 7px; }
  .ngc-nav {
    width: 36px;
    height: 36px;
    top: 58%;
  }
  .ngc-nav-prev { left: 5px; }
  .ngc-nav-next { right: 5px; }
}

@media (min-width: 768px) {
  .ngc,
  .ngc-shell {
    border-radius: 26px;
    overflow: visible;
  }
  .ngc-shell {
    padding: 16px 0 18px;
    /* เก็บมุมโค้งของพื้นหลังโดยไม่ตัดลูกแสง */
    -webkit-mask-image: none;
    mask-image: none;
  }
  .ngc-head {
    margin: 0 16px 12px;
    padding: 13px 140px 13px 15px;
    border-radius: 18px;
  }
  .ngc-head::after {
    right: 12px;
    height: 36px;
    font-size: 0.78rem;
  }
  .ngc-stage,
  .ngc-viewport {
    overflow: visible !important;
  }
  .ngc-viewport {
    height: 400px;
    perspective: 1360px;
    padding: 12px 0 18px;
    box-sizing: content-box;
  }
  .ngc-card {
    width: min(280px, 36vw);
    min-height: 300px;
    padding: 32px 20px 18px;
    border-radius: 26px;
    overflow: visible !important;
  }
  .ngc-card-shine {
    /* ลดเงาทับด้านบนที่ทำให้วงแสงดูมืดบน iPad */
    background:
      linear-gradient(116deg, transparent 20%, rgba(255, 255, 255, 0.06) 43%, transparent 62%),
      radial-gradient(ellipse at 50% -8%, rgba(184, 52, 112, 0.12), transparent 54%);
  }
  .ngc-yt-wrap {
    width: 104px;
    height: 104px;
    margin: 6px auto 12px;
    --ngc-orbit-path: path("M 9 66 A 48 28 -19 1 1 101 48 A 48 28 -19 1 1 9 66");
  }
  .ngc-orbit {
    inset: -18px;
    overflow: visible !important;
  }
  .ngc-orbit-front {
    display: none !important;
  }
  .ngc-orbit-back {
    opacity: 1 !important;
  }
  .ngc-tagline {
    margin-top: 12px;
    margin-bottom: 2px;
  }
  .ngc-nav-prev { left: 12px; }
  .ngc-nav-next { right: 12px; }
}

/* ตรวจเทียบกับ ref 1536x638 */
@media (min-width: 1280px) {
  .ngc-shell { padding: 16px 0 14px; }
  .ngc-head {
    margin: 0 18px 14px;
    padding: 13px 146px 13px 16px;
  }
  .ngc-title { font-size: 1.16rem; }
  .ngc-sub { font-size: 0.77rem; }
  .ngc-viewport {
    height: 360px;
    perspective: 1460px;
  }
  .ngc-card {
    width: min(328px, 22vw);
    min-height: 332px;
    padding: 32px 20px 18px;
    overflow: visible !important;
  }
  .ngc-yt-wrap {
    width: 106px;
    height: 106px;
    --ngc-orbit-path: path("M 10 70 A 51 29 -19 1 1 110 50 A 51 29 -19 1 1 10 70");
  }
  .ngc-orbit { inset: -18px; overflow: visible !important; }
  .ngc-stage,
  .ngc-viewport {
    overflow: visible !important;
  }
  .ngc-viewport {
    height: 420px;
  }
  .ngc-yt { width: 60px; height: 60px; font-size: 32px; }
  .ngc-email { font-size: 0.96rem; }
  .ngc-date { font-size: 0.9rem; margin-bottom: 16px; }
  .ngc-cta { font-size: 1rem; padding: 13px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .ngc-aurora::before,
  .ngc-orbit-tail,
  .ngc-orbit-head,
  .ngc-orbit-dust {
    animation: none !important;
  }
  .ngc-card,
  .ngc-nav,
  .ngc-dot {
    transition: none !important;
  }
  .ngc-orbit-head,
  .ngc-orbit-dust {
    offset-distance: 20%;
    -webkit-offset-distance: 20%;
  }
  .ngc-card:not(.is-active) .ngc-orbit {
    opacity: 0.5;
  }
}
