/* Option 2 live host — layout chrome for experience.html (additive). */
.luner-frame.manifest-renderer-live {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 16px 14px 20px;
  box-sizing: border-box;
}

.luner-frame.manifest-renderer-live[data-presentation-layout="product-split"] .slot-body,
.luner-frame.manifest-renderer-live .slot-body.split-desktop {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 12px;
  align-items: start;
}

.luner-frame.manifest-renderer-live[data-presentation-layout="activity-focus"] .slot-body,
.luner-frame.manifest-renderer-live .slot-body.activity-desktop {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.luner-frame.manifest-renderer-live .slot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.luner-frame.manifest-renderer-live .slot-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.luner-frame.manifest-renderer-live .luner-presentation-product:not([hidden]) {
  display: flex;
  justify-content: center;
  max-height: 180px;
}

.luner-frame.manifest-renderer-live .luner-presentation-product img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
}

.luner-frame.manifest-renderer-live[data-presentation-surface="glass"] .slot-copy,
.luner-frame.manifest-renderer-live[data-presentation-surface="glass"] .field-group {
  background: var(--presentation-glass-bg, var(--content-style-glass-bg));
  border: 1px solid var(--presentation-glass-border, var(--content-style-glass-border));
  border-radius: 14px;
  padding: 12px;
  box-shadow: var(--presentation-glass-shadow, var(--content-style-glass-shadow));
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .luner-frame.manifest-renderer-live[data-presentation-surface="glass"] .slot-copy,
  .luner-frame.manifest-renderer-live[data-presentation-surface="glass"] .field-group {
    background: rgba(255, 255, 255, .62);
  }
}

.luner-frame.manifest-renderer-live [data-manifest-role="hud"],
.luner-frame.manifest-renderer-live .game-hud {
  font-size: 11px;
  opacity: 0.85;
}

@media (max-width: 480px) {
  .luner-frame.manifest-renderer-live[data-presentation-layout="product-split"] .slot-body,
  .luner-frame.manifest-renderer-live .slot-body.split-desktop {
    grid-template-columns: 1fr;
  }
}
