* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.lb-dcv2-icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.lb-dcv2-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(10, 14, 24, 0.94), rgba(10, 14, 24, 0.94)) padding-box,
    linear-gradient(118deg, rgba(255, 79, 191, 0.42), rgba(79, 102, 255, 0.34), rgba(0, 224, 211, 0.16)) border-box;
  box-shadow: 0 20px 42px rgba(4, 8, 15, 0.58), 0 0 20px rgba(79, 102, 255, 0.14);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
}

.lb-dcv2-media {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.lb-dcv2-carousel {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 12, 22, 0.94);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 8px 22px rgba(3, 6, 12, 0.34);
}

.lb-dcv2-slide {
  display: none;
  aspect-ratio: 2 / 3;
}

.lb-dcv2-slide.is-active {
  display: block;
}

.lb-dcv2-slide__placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.lb-dcv2-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  cursor: zoom-in;
}

.lb-dcv2-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 7, 15, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-dcv2-lightbox__img {
  max-width: min(92vw, 860px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(3, 6, 12, 0.72);
  display: block;
}

.lb-dcv2-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(10, 14, 24, 0.9);
  color: rgba(247, 244, 255, 0.92);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.14s ease, border-color 0.14s ease;
}

.lb-dcv2-lightbox__close:hover {
  background: rgba(20, 26, 44, 0.96);
  border-color: rgba(255, 255, 255, 0.28);
}

.lb-dcv2-slide__placeholder--one {
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 178, 230, 0.28), transparent 40%),
    radial-gradient(circle at 22% 76%, rgba(0, 224, 211, 0.15), transparent 36%),
    linear-gradient(145deg, #1a2340 0%, #151d34 46%, #2a1938 100%);
}

.lb-dcv2-slide__placeholder--two {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 79, 191, 0.28), transparent 36%),
    radial-gradient(circle at 82% 72%, rgba(79, 102, 255, 0.28), transparent 40%),
    linear-gradient(145deg, #1d1734 0%, #121b32 52%, #1f2d40 100%);
}

.lb-dcv2-slide__placeholder--three {
  background:
    radial-gradient(circle at 66% 18%, rgba(0, 224, 211, 0.2), transparent 36%),
    radial-gradient(circle at 24% 70%, rgba(255, 79, 191, 0.24), transparent 38%),
    linear-gradient(145deg, #131d36 0%, #1a1e38 50%, #2c1938 100%);
}

.lb-dcv2-carousel__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.lb-dcv2-carousel__arrow {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 14, 24, 0.88);
  color: rgba(247, 244, 255, 0.84);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.lb-dcv2-carousel__count {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: rgba(227, 233, 252, 0.66);
}

.lb-dcv2-carousel__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.lb-dcv2-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

.lb-dcv2-carousel__dot.is-active {
  background: linear-gradient(102deg, #ff4fbf, #4f66ff, #00e0d3);
  box-shadow: 0 0 8px rgba(79, 102, 255, 0.36), 0 0 7px rgba(255, 79, 191, 0.22);
}

.lb-dcv2-info {
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.lb-dcv2-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.lb-dcv2-header__identity {
  display: grid;
  gap: 6px;
}

.lb-dcv2-header__settingsBtn {
  flex-shrink: 0;
  margin-top: 4px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 191, 0.38);
  background: rgba(10, 14, 24, 0.82);
  color: rgba(247, 244, 255, 0.88);
  font-size: 11px;
  font-weight: 620;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: border-color 0.14s ease, background 0.14s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lb-dcv2-header__settingsBtn:hover {
  border-color: rgba(79, 102, 255, 0.5);
  background: rgba(18, 24, 40, 0.92);
}

.lb-dcv2-header__settingsBtn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 224, 211, 0.24), 0 0 0 4px rgba(0, 224, 211, 0.1);
}

.lb-dcv2-header__badge {
  margin: 0;
  width: fit-content;
  min-height: 31px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 79, 191, 0.64);
  background: rgba(11, 16, 27, 0.86);
  color: rgba(255, 255, 255, 0.97);
  font-size: 13px;
  font-weight: 620;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0 14px rgba(255, 79, 191, 0.24), 0 0 14px rgba(79, 102, 255, 0.14);
}

.lb-dcv2-header__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lb-dcv2-header__location {
  margin: 0;
  color: rgba(227, 233, 252, 0.84);
  font-size: 16px;
}

.lb-dcv2-optional {
  display: grid;
  gap: 5px;
}

.lb-dcv2-scroller {
  --dcv2-fade-width: 34px;
  --dcv2-fade-bg: rgba(10, 14, 24, 0.95);
  position: relative;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 14, 24, 0.76);
  padding: 7px;
  overflow: hidden;
}

.lb-dcv2-scroller::before,
.lb-dcv2-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  width: var(--dcv2-fade-width);
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.lb-dcv2-scroller::before {
  left: 0;
  background: linear-gradient(to right, var(--dcv2-fade-bg), rgba(10, 14, 24, 0));
}

.lb-dcv2-scroller::after {
  right: 0;
  background: linear-gradient(to left, var(--dcv2-fade-bg), rgba(10, 14, 24, 0));
}

.lb-dcv2-scroller.is-scrollable:not(.is-at-start)::before {
  opacity: 0.95;
}

.lb-dcv2-scroller.is-scrollable:not(.is-at-end)::after {
  opacity: 0.95;
}

.lb-dcv2-scroller__track {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1px;
}

.lb-dcv2-scroller__track::-webkit-scrollbar {
  display: none;
}

.lb-dcv2-chip {
  min-height: 31px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(11, 16, 27, 0.86), rgba(11, 16, 27, 0.86)) padding-box,
    linear-gradient(110deg, rgba(255, 79, 191, 0.22), rgba(79, 102, 255, 0.2), rgba(0, 224, 211, 0.14)) border-box;
  color: rgba(247, 244, 255, 0.93);
  font-size: 12px;
  font-weight: 560;
  line-height: 1;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.lb-dcv2-optional__hint {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 255, 0.5);
}

.lb-dcv2-optional__hintArrow {
  color: #FF8AD4;
}

.lb-dcv2-scroller__indicator {
  display: none;
  height: 3px;
  border-radius: 999px;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.lb-dcv2-scroller.is-scrollable + .lb-dcv2-optional__hint + .lb-dcv2-scroller__indicator {
  display: block;
}

.lb-dcv2-scroller__indicatorThumb {
  display: block;
  height: 100%;
  width: 26%;
  border-radius: inherit;
  background: linear-gradient(105deg, rgba(255, 79, 191, 0.84), rgba(207, 87, 232, 0.84) 40%, rgba(79, 102, 255, 0.84) 70%, rgba(0, 224, 211, 0.84));
  box-shadow: 0 0 8px rgba(79, 102, 255, 0.24), 0 0 6px rgba(255, 79, 191, 0.2);
  transform: translateX(0);
  transition: transform 0.14s linear, width 0.14s linear;
}

.lb-dcv2-core {
  display: grid;
  gap: 7px;
}

.lb-dcv2-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.lb-dcv2-stat {
  min-height: 39px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(10, 14, 24, 0.74);
  color: rgba(247, 244, 255, 0.96);
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.lb-dcv2-stat__icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  display: block;
}

.lb-dcv2-prompts {
  display: grid;
  gap: 8px;
}

.lb-dcv2-prompt {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 25, 0.68);
  padding: 10px 11px 10px 13px;
  display: grid;
  gap: 4px;
  position: relative;
}

.lb-dcv2-prompt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  bottom: 9px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 79, 191, 0.86), rgba(79, 102, 255, 0.76), rgba(0, 224, 211, 0.64));
  opacity: 0.9;
}

.lb-dcv2-prompt__label {
  margin: 0;
  color: rgba(214, 208, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.lb-dcv2-prompt__answer {
  margin: 0;
  color: rgba(250, 248, 255, 0.98);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.42;
}

.lb-dcv2-footer {
  margin-top: 2px;
}

.lb-dcv2-crush {
  width: 100%;
  min-height: 47px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(105deg, #ff4fbf 0%, #cf57e8 42%, #4f66ff 100%);
  color: #fff;
  font: 700 16px/1 var(--font-ui);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(255, 79, 191, 0.34), 0 12px 24px rgba(79, 102, 255, 0.28);
  transition: filter .16s ease, box-shadow .16s ease, transform .12s ease;
}

.lb-dcv2-crush__icon {
  width: 19px;
  height: 19px;
  min-width: 19px;
  color: rgba(255, 255, 255, 0.96);
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.lb-dcv2-toast {
  position: fixed;
  left: 50%;
  bottom: calc(14px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(0, 224, 211, 0.34);
  background: rgba(9, 14, 24, 0.94);
  color: rgba(173, 255, 247, 0.96);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 40;
}

.lb-dcv2-carousel__arrow:hover,
.lb-dcv2-crush:hover {
  filter: brightness(1.05);
}

.lb-dcv2-crush:hover {
  box-shadow: 0 14px 28px rgba(255, 79, 191, 0.38), 0 14px 28px rgba(79, 102, 255, 0.32);
}

.lb-dcv2-crush:active {
  transform: translateY(1px) scale(0.992);
}

.lb-dcv2-carousel__arrow:focus-visible,
.lb-dcv2-carousel__dot:focus-visible,
.lb-dcv2-crush:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 224, 211, 0.24), 0 0 0 4px rgba(0, 224, 211, 0.1);
}

@media (max-width: 900px) {
  .lb-dcv2-card {
    grid-template-columns: minmax(0, 43%) minmax(0, 57%);
  }
}

@media (max-width: 760px) {
  .lb-dcv2-card {
    grid-template-columns: 1fr;
  }

  .lb-dcv2-media {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .lb-dcv2-header__title {
    font-size: clamp(24px, 7vw, 32px);
  }
}
