
/* QMAX V139 — Why It Works permanent discovery entry.
   Isolated additive styles only. */

.hmc-why-explore-entry {
  border-color: rgba(173, 100, 232, .26);
}

.hmc-why-explore-button {
  width: 100%;
}

.hmc-why-sidebar-card {
  position: relative;
  display: block;
  width: calc(100% - 20px);
  margin: 12px 10px 14px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(207, 193, 219, .72);
  border-radius: 18px;
  color: #fff;
  background: #08070b;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, .34),
    0 0 0 1px rgba(139, 61, 255, .07),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  cursor: pointer;
  text-align: left;
  transform: translateY(0);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    filter 170ms ease;
}

.hmc-why-sidebar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(0deg, rgba(2,2,4,.72), transparent 48%);
}

.hmc-why-sidebar-card__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 13px 10px;
  border-bottom: 1px solid rgba(205, 191, 217, .20);
  background:
    linear-gradient(180deg, rgba(91, 35, 130, .42), rgba(18, 13, 24, .88));
}

.hmc-why-sidebar-card__copy strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: .01em;
}

.hmc-why-sidebar-card__copy small {
  color: rgba(236, 229, 242, .88);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: .02em;
}

.hmc-why-sidebar-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  background: #050507;
}

.hmc-why-sidebar-card__play {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 228, 248, .88);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 38% 28%, rgba(200, 133, 255, .32), transparent 28%),
    linear-gradient(180deg, #552469, #1c0e24);
  box-shadow:
    0 7px 16px rgba(0,0,0,.36),
    0 0 18px rgba(139,61,255,.20);
  font-size: 14px;
}

.hmc-why-sidebar-card:hover {
  transform: translateY(-2px);
  border-color: rgba(238, 225, 248, .94);
  filter: brightness(1.025);
  box-shadow:
    0 16px 32px rgba(0,0,0,.42),
    0 0 24px rgba(125, 48, 184, .16),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.hmc-why-sidebar-card:active {
  transform: translateY(1px);
}

.hmc-why-sidebar-card:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px #050507,
    0 0 0 5px rgba(181,124,255,.90),
    0 14px 30px rgba(0,0,0,.40);
}

@media (max-width: 760px) {
  .hmc-why-sidebar-card {
    width: calc(100% - 16px);
    margin: 10px 8px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hmc-why-sidebar-card {
    transition: none;
  }

  .hmc-why-sidebar-card:hover,
  .hmc-why-sidebar-card:active {
    transform: none;
  }
}
