* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #050302;
  color: #fff6d7;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
}

.poster-shell {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #050302;
}

.poster-shell picture,
.poster-img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.poster-img {
  object-fit: fill;
  user-select: none;
  -webkit-user-drag: none;
}

.hotspot {
  position: absolute;
  z-index: 5;
  display: block;
  border-radius: 999px;
  font-size: 0;
  color: transparent;
  outline-offset: 4px;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 215, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(255, 241, 156, 0.18), rgba(179, 98, 6, 0.08));
  box-shadow:
    0 0 10px rgba(255, 252, 202, 0.88),
    0 0 24px rgba(255, 213, 48, 0.78),
    0 0 48px rgba(255, 166, 0, 0.44),
    inset 0 0 14px rgba(255, 247, 188, 0.26);
  animation: hotspotGoldBreath 1.75s ease-in-out infinite;
  transform: translateZ(0);
}

.hotspot::before,
.hotspot::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.hotspot::before {
  display: block;
  inset: -8px;
  border: 2px solid rgba(255, 229, 92, 0.94);
  box-shadow:
    0 0 0 1px rgba(255, 255, 223, 0.70),
    0 0 12px rgba(255, 250, 185, 0.90),
    0 0 28px rgba(255, 203, 34, 0.84),
    0 0 54px rgba(255, 150, 0, 0.50),
    inset 0 0 12px rgba(255, 247, 180, 0.48);
  animation: hotspotGoldRing 1.75s ease-in-out infinite;
}

.hotspot::after {
  display: block;
  inset: -5px;
  background:
    linear-gradient(
      108deg,
      transparent 0%,
      transparent 30%,
      rgba(255, 199, 38, 0.16) 39%,
      rgba(255, 255, 236, 0.96) 48%,
      rgba(255, 223, 88, 0.92) 53%,
      rgba(255, 177, 20, 0.20) 62%,
      transparent 72%,
      transparent 100%
    );
  filter: blur(0.35px);
  mix-blend-mode: screen;
  transform: translateX(-86%);
  animation: hotspotGoldSweep 1.28s cubic-bezier(.33, .02, .2, 1) infinite;
}

.hotspot[data-hotspot="register"] {
  box-shadow:
    0 0 12px rgba(255, 252, 202, 0.92),
    0 0 28px rgba(255, 216, 50, 0.86),
    0 0 56px rgba(255, 75, 34, 0.38),
    inset 0 0 15px rgba(255, 246, 185, 0.30);
}

.hotspot[data-hotspot="service"] {
  box-shadow:
    0 0 12px rgba(255, 252, 202, 0.88),
    0 0 26px rgba(255, 212, 52, 0.82),
    0 0 52px rgba(255, 150, 0, 0.42),
    inset 0 0 15px rgba(255, 246, 185, 0.28);
}

.hotspot:focus-visible {
  outline: 3px solid rgba(255, 238, 147, 0.9);
  box-shadow: 0 0 0 8px rgba(255, 196, 48, 0.22);
}

@keyframes hotspotGoldBreath {
  0%,
  100% {
    opacity: 0.76;
    filter: saturate(1.08) brightness(1);
  }
  50% {
    opacity: 1;
    filter: saturate(1.45) brightness(1.18);
  }
}

@keyframes hotspotGoldRing {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.985);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes hotspotGoldSweep {
  0% {
    opacity: 0;
    transform: translateX(-92%) skewX(-14deg);
  }
  18% {
    opacity: 1;
  }
  58% {
    opacity: 1;
    transform: translateX(92%) skewX(-14deg);
  }
  100% {
    opacity: 0;
    transform: translateX(128%) skewX(-14deg);
  }
}

.lk-chat {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: #eef6ff;
}

.lk-chat-bubble {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.92), transparent 16%),
    linear-gradient(145deg, #7d4cff 0%, #3d7cff 54%, #05d2ff 100%);
  box-shadow: 0 18px 46px rgba(0,0,0,.42), 0 0 0 8px rgba(111,76,255,.16), inset 0 1px 0 rgba(255,255,255,.55);
  cursor: pointer;
}

.lk-chat-bubble-icon {
  font-size: 30px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.35));
}

.lk-chat-badge {
  position: absolute;
  right: 4px;
  top: 1px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ff6b00;
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
  box-shadow: 0 8px 18px rgba(255,107,0,.38);
}

.lk-chat-panel {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: min(360px, calc(100vw - 28px));
  height: min(560px, calc(100vh - 120px));
  border: 1px solid rgba(118, 162, 255, .34);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  background:
    radial-gradient(circle at 72% 70%, rgba(75, 57, 255, .22), transparent 36%),
    linear-gradient(180deg, rgba(21, 34, 68, .98), rgba(8, 15, 36, .98));
  box-shadow: 0 28px 90px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.06) inset;
  backdrop-filter: blur(18px) saturate(1.18);
}

.lk-chat-panel[hidden] {
  display: none;
}

.lk-chat-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(91, 82, 255, .34), rgba(34, 197, 255, .14));
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.lk-chat-head b {
  display: block;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 1000;
}

.lk-chat-head span {
  display: block;
  margin-top: 4px;
  color: #73ffad;
  font-size: 12px;
  font-weight: 900;
}

.lk-chat-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  color: #dce9ff;
  background: rgba(255,255,255,.09);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}


.lk-chat-services {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(9, 18, 43, .72);
}

.lk-chat-service-title {
  margin-bottom: 8px;
  color: #b8c9e8;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .06em;
}

.lk-chat-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
}

.lk-chat-service {
  min-width: 0;
  border: 1px solid rgba(118, 162, 255, .30);
  border-radius: 13px;
  padding: 8px 5px;
  color: #dce9ff;
  background: rgba(255,255,255,.07);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.lk-chat-service b,
.lk-chat-service span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.lk-chat-service b {
  font-size: 12px;
  font-weight: 1000;
}

.lk-chat-service span {
  margin-top: 3px;
  color: #88a4d8;
  font-size: 10px;
  font-weight: 800;
}

.lk-chat-service.is-active {
  border-color: rgba(115, 255, 173, .72);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(26, 201, 114, .34), rgba(41, 182, 255, .28));
  box-shadow: 0 10px 26px rgba(41, 182, 255, .16), inset 0 1px 0 rgba(255,255,255,.12);
}

.lk-chat-service.is-active span {
  color: #b7ffd3;
}

.lk-chat-body {
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.lk-chat-system {
  align-self: center;
  max-width: 88%;
  padding: 8px 12px;
  border-radius: 999px;
  color: #b8c9e8;
  background: rgba(255,255,255,.07);
  font-size: 12px;
  font-weight: 800;
}

.lk-chat-msg {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}

.lk-chat-msg.is-user {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  background: linear-gradient(135deg, #8457ff, #345dff 70%, #00b5ff);
  color: #fff;
}

.lk-chat-msg.is-agent {
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: #eef6ff;
}

.lk-chat-text {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 14px;
  line-height: 1.48;
  font-weight: 850;
}

.lk-chat-msg time {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  text-align: right;
  font-weight: 800;
}

.lk-chat-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(6, 13, 32, .72);
}

.lk-chat-form input {
  min-width: 0;
  flex: 1;
  height: 42px;
  border: 1px solid rgba(135, 159, 255, .38);
  border-radius: 14px;
  padding: 0 13px;
  color: #eff6ff;
  background: rgba(255,255,255,.07);
  outline: none;
  font-weight: 850;
}

.lk-chat-form input:focus {
  border-color: rgba(129, 202, 255, .82);
  box-shadow: 0 0 0 4px rgba(74, 144, 255, .14);
}

.lk-chat-form input:disabled {
  opacity: .62;
  cursor: not-allowed;
}

.lk-chat-form button:disabled {
  opacity: .46;
  cursor: not-allowed;
  filter: grayscale(.28);
}

.lk-chat-form button {
  width: 44px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #8b5cff, #29b6ff);
  cursor: pointer;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(41, 182, 255, .24);
}

.mobile-landing {
  display: none;
}

@media (max-width: 899px) {
  html,
  body {
    width: 100%;
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    background:
      radial-gradient(circle at 18% 0%, rgba(198, 6, 18, 0.46), transparent 26rem),
      radial-gradient(circle at 100% 12%, rgba(0, 98, 45, 0.38), transparent 24rem),
      linear-gradient(180deg, #070201 0%, #160303 46%, #040906 100%);
  }

  .poster-shell {
    display: none;
  }

  .mobile-landing {
    display: block;
    min-height: 100vh;
    padding: 12px 12px 18px;
    color: #fff4cc;
    background:
      linear-gradient(rgba(255, 211, 77, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 211, 77, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
  }

  .m-hero,
  .m-card,
  .m-benefits article {
    border: 1px solid rgba(255, 218, 98, 0.62);
    border-radius: 20px;
    overflow: hidden;
    background:
      linear-gradient(145deg, rgba(132, 5, 10, 0.96), rgba(40, 3, 5, 0.95) 56%, rgba(0, 57, 31, 0.92));
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.50),
      inset 0 0 0 1px rgba(255, 247, 176, 0.12),
      0 0 28px rgba(255, 189, 35, 0.16);
  }

  .m-hero {
    position: relative;
    min-height: 360px;
    margin: 0 0 12px;
  }

  .m-hero-img {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.20) 52%, rgba(0,0,0,0.78)),
      url("/assets/poster-mobile.png?v=20260702-mobile-depth-2col");
    background-size: 132% auto;
    background-position: center 0%;
    filter: saturate(1.12) contrast(1.04);
  }

  .m-hero-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    text-align: center;
    text-shadow: 0 3px 12px rgba(0,0,0,.82);
  }

  .m-kicker {
    color: #ffe08a;
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 900;
  }

  .m-hero h1 {
    margin: 8px 0 4px;
    color: transparent;
    background: linear-gradient(180deg, #fff9d5 0%, #ffd35d 44%, #a96a12 78%, #fff0a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 1000;
    letter-spacing: .03em;
  }

  .m-hero p,
  .m-main-offer p {
    margin: 0;
    color: #ffe8a5;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 900;
  }

  .m-card {
    position: relative;
    margin: 12px 0;
    padding: 18px 16px;
  }

  .m-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 20% 0%, rgba(255,255,225,.22), transparent 24%),
      linear-gradient(115deg, transparent 0%, transparent 36%, rgba(255,255,225,.16) 48%, transparent 62%);
    mix-blend-mode: screen;
  }

  .m-main-offer {
    text-align: center;
    padding: 22px 16px 20px;
  }

  .m-brand-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffe9a6;
    background: linear-gradient(90deg, rgba(11,79,45,.94), rgba(132,5,10,.92));
    border: 1px solid rgba(255, 226, 115, .54);
    font-size: 18px;
    font-weight: 1000;
  }

  .m-k-logo {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(145deg, #29b7ff, #0053bb);
    font-weight: 1000;
  }

  .m-year {
    margin-top: 12px;
    color: transparent;
    background: linear-gradient(180deg, #fff7c8 0%, #ffd15e 38%, #a95b09 76%, #fff0a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 68px;
    line-height: .95;
    font-weight: 1000;
    letter-spacing: .02em;
    text-shadow: 0 10px 28px rgba(255, 185, 38, .24);
  }

  .m-main-offer h2,
  .m-section-title {
    position: relative;
    z-index: 1;
    margin: 8px 0 12px;
    color: #ffe39a;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 1000;
    text-align: center;
    letter-spacing: .04em;
    text-shadow: 0 2px 10px rgba(0,0,0,.55);
  }

  .m-offer {
    position: relative;
    z-index: 1;
    margin: 12px auto;
    max-width: 330px;
    border-radius: 999px;
    padding: 12px 14px;
    color: #fff4cc;
    font-size: 24px;
    font-weight: 1000;
    background: linear-gradient(180deg, #b50010, #6b0207);
    border: 1px solid rgba(255, 225, 110, .76);
    box-shadow: 0 0 26px rgba(255, 205, 53, .28), inset 0 1px 0 rgba(255,255,255,.22);
  }

  .m-offer b {
    color: #ffe28a;
    font-size: 34px;
  }

  .m-actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .m-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    font-weight: 1000;
    letter-spacing: .06em;
    overflow: hidden;
  }

  .m-btn::after {
    content: none;
    position: absolute;
    inset: -10px;
    background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(255,255,230,.96) 48%, rgba(255,205,46,.76) 56%, transparent 72%);
    transform: translateX(-110%) skewX(-16deg);
    animation: none;
    mix-blend-mode: screen;
  }

  .m-btn-primary {
    color: #241000;
    background: linear-gradient(180deg, #fff0a6, #f0bd3a 50%, #a65d09);
    border: 1px solid rgba(255, 255, 210, .78);
    box-shadow: 0 0 20px rgba(255, 214, 63, .48), 0 12px 26px rgba(0,0,0,.30);
  }

  .m-btn-service {
    color: #fff2bd;
    background: linear-gradient(180deg, #b91818, #6f0508);
    border: 1px solid rgba(255, 225, 110, .72);
    box-shadow: 0 0 18px rgba(255, 207, 53, .32), 0 12px 26px rgba(0,0,0,.30);
  }

  .m-table-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 224, 101, .55);
    background: rgba(2, 19, 12, .70);
  }

  .m-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .m-table th,
  .m-table td {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255, 218, 98, .20);
    text-align: center;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
  }

  .m-table th {
    color: #ffe08a;
    background: linear-gradient(90deg, rgba(125,4,9,.92), rgba(7,61,35,.92));
    font-size: 16px;
  }

  .m-table td {
    color: #fff0b8;
  }

  .m-table tr:last-child td {
    border-bottom: 0;
  }

  .m-table td:nth-child(2) {
    color: #ff6b4a;
  }

  .m-flow-badge {
    position: relative;
    z-index: 1;
    width: fit-content;
    margin: 0 auto 14px;
    padding: 8px 22px;
    border-radius: 999px;
    color: #2b1200;
    background: linear-gradient(180deg, #fff0a6, #d6a84f);
    font-size: 23px;
    font-weight: 1000;
  }

  .m-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .m-benefits article {
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "icon title"
      "icon desc";
    align-items: center;
    min-height: 82px;
    padding: 11px 10px;
    background:
      linear-gradient(135deg, rgba(3,68,39,.96), rgba(112,5,10,.96));
  }

  .m-benefits span {
    grid-area: icon;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: linear-gradient(145deg, #fff2b8, #d6a84f 52%, #8e5511);
    font-size: 20px;
    box-shadow: 0 0 20px rgba(255, 214, 63, .22);
  }

  .m-benefits b {
    grid-area: title;
    color: #ffe39a;
    font-size: 17px;
    line-height: 1.1;
    font-weight: 1000;
    white-space: nowrap;
  }

  .m-benefits em {
    grid-area: desc;
    color: #f8d98b;
    font-style: normal;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;
    white-space: nowrap;
  }

  .m-sticky {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px 0 0;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 226, 115, .38);
    background: rgba(9, 4, 3, .70);
    backdrop-filter: blur(16px) saturate(1.12);
    box-shadow: 0 14px 40px rgba(0,0,0,.42);
  }

  .m-sticky .m-btn {
    min-height: 50px;
    font-size: 18px;
  }

  @keyframes mGoldSweep {
    0% { opacity: 0; transform: translateX(-115%) skewX(-16deg); }
    25% { opacity: 1; }
    60% { opacity: 1; transform: translateX(90%) skewX(-16deg); }
    100% { opacity: 0; transform: translateX(125%) skewX(-16deg); }
  }
}

@media (max-width: 380px) {
  .m-hero {
    min-height: 330px;
  }
  .m-hero h1 {
    font-size: 34px;
  }
  .m-year {
    font-size: 60px;
  }
  .m-main-offer h2,
  .m-section-title {
    font-size: 25px;
  }
  .m-table th,
  .m-table td {
    font-size: 16px;
    padding: 12px 6px;
  }
}

@media (max-width: 899px) {
  .mobile-raster {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(100%, 520px);
    min-height: 100vh;
    margin: 0 auto;
    padding: 10px 10px 16px;
    background:
      linear-gradient(rgba(255, 211, 77, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 211, 77, 0.035) 1px, transparent 1px),
      radial-gradient(circle at 20% 0%, rgba(198, 6, 18, 0.24), transparent 18rem),
      radial-gradient(circle at 100% 12%, rgba(0, 98, 45, 0.20), transparent 18rem),
      #050302;
    background-size: 28px 28px, 28px 28px, auto, auto, auto;
  }

  .mobile-module {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    overflow: hidden;
  }

  .mobile-module img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-drag: none;
  }

  .module-hotspot {
    position: absolute;
    z-index: 3;
    left: var(--x);
    top: var(--y);
    width: var(--w);
    height: var(--h);
    display: block;
    border-radius: 999px;
    color: transparent;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    overflow: visible;
    background:
      radial-gradient(circle at 50% 42%, rgba(255, 255, 218, 0.20), transparent 48%),
      linear-gradient(180deg, rgba(255, 239, 132, 0.22), rgba(174, 94, 5, 0.10));
    box-shadow:
      0 0 10px rgba(255, 252, 202, 0.95),
      0 0 24px rgba(255, 215, 46, 0.90),
      0 0 46px rgba(255, 167, 0, 0.62),
      0 0 72px rgba(255, 112, 0, 0.24),
      inset 0 0 12px rgba(255, 248, 190, 0.34);
    animation: hotspotGoldBreath 1.7s ease-in-out infinite;
  }

  .module-hotspot::before,
  .module-hotspot::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: inherit;
  }

  .module-hotspot::before {
    inset: -7px;
    border: 2px solid rgba(255, 229, 92, 0.96);
    box-shadow:
      0 0 0 1px rgba(255, 255, 223, 0.72),
      0 0 12px rgba(255, 250, 185, 0.96),
      0 0 28px rgba(255, 204, 34, 0.92),
      0 0 54px rgba(255, 150, 0, 0.58),
      inset 0 0 12px rgba(255, 247, 180, 0.50);
    animation: hotspotGoldRing 1.7s ease-in-out infinite;
  }

  .module-hotspot::after {
    inset: -5px;
    background:
      linear-gradient(
        108deg,
        transparent 0%,
        transparent 30%,
        rgba(255, 199, 38, 0.16) 39%,
        rgba(255, 255, 236, 0.98) 48%,
        rgba(255, 223, 88, 0.95) 53%,
        rgba(255, 177, 20, 0.22) 62%,
        transparent 72%,
        transparent 100%
      );
    filter: blur(0.35px);
    mix-blend-mode: screen;
    transform: translateX(-86%) skewX(-14deg);
    animation: hotspotGoldSweep 1.24s cubic-bezier(.33, .02, .2, 1) infinite;
  }

  .module-hotspot:focus-visible {
    outline: 3px solid rgba(255, 238, 147, 0.9);
    outline-offset: 2px;
  }
}
