@charset "UTF-8";
/* ─── Promo Sticky Bar ─── */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--dreem-app-z-layer-100, 10000);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.promo-bar.is-visible {
  transform: translateY(0);
}
.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 44px 8px 16px;
  background: linear-gradient(92deg, oklch(35% 0.12 158deg) 0%, oklch(45% 0.16 158deg) 35%, oklch(50% 0.18 158deg) 50%, oklch(45% 0.16 170deg) 70%, oklch(35% 0.12 185deg) 100%);
  position: relative;
  overflow: hidden;
}
.promo-bar__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.06) 60%, transparent 80%);
  background-size: 200% 100%;
  animation: promo-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
.promo-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: var(--dreem-landing-max-width);
  z-index: 1;
}
.promo-bar__sparkle {
  font-size: 16px;
  color: #b8ffd6;
  margin-top: -2px;
  animation: promo-sparkle-pulse 2s ease-in-out infinite;
}
.promo-bar__text {
  font-family: var(--dreem-app-small-font);
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}
.promo-bar__text strong {
  font-weight: 600;
  color: #e0ffe8;
}
.promo-bar__text-subtle {
  opacity: 0.8;
}
.promo-bar__countdown {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-family: var(--dreem-app-font);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 4px 10px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.promo-bar__countdown-segment {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.promo-bar__countdown-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
  min-width: 20px;
  text-align: center;
}
.promo-bar__countdown-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}
.promo-bar__countdown-sep {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 1px;
}
.promo-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 18px;
  font-family: var(--dreem-app-font);
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: #fff;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.promo-bar__cta:hover {
  background: #e0ffe8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(53, 227, 133, 0.3);
}
.promo-bar__cta:active {
  transform: translateY(0);
}
.promo-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 7px;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}
.promo-bar__close:hover {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

body.has-promo-bar .dreem-header-wrapper {
  top: var(--promo-bar-offset, 44px);
}

@keyframes promo-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes promo-sparkle-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
@media screen and (max-width: 868px) {
  .promo-bar__inner {
    padding: 10px 36px 10px 12px;
  }
  .promo-bar__content {
    gap: 8px;
  }
  .promo-bar__sparkle {
    display: none;
  }
  .promo-bar__text {
    font-size: 12px;
  }
  .promo-bar__cta {
    font-size: 12px;
    padding: 4px 14px;
  }
  .promo-bar__countdown {
    padding: 3px 8px;
  }
  .promo-bar__countdown-value {
    font-size: 12px;
    min-width: 16px;
  }
  .promo-bar__countdown-label {
    font-size: 9px;
  }
  .promo-bar__close {
    right: 8px;
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .promo-bar__text {
    font-size: 11px;
  }
  .promo-bar__countdown {
    padding: 2px 6px;
    border-radius: 6px;
  }
  .promo-bar__countdown-value {
    font-size: 11px;
  }
  .promo-bar__cta {
    font-size: 11px;
    padding: 4px 12px;
  }
}
/* ─── Webinar Hello Bar ─── */
.webinar-hello-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--dreem-app-z-layer-100, 10000);
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.webinar-hello-bar.is-visible {
  transform: translateY(0);
}
.webinar-hello-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 16px;
  background: linear-gradient(92deg, oklch(35% 0.12 158deg) 0%, oklch(45% 0.16 158deg) 35%, oklch(50% 0.18 158deg) 50%, oklch(45% 0.16 170deg) 70%, oklch(35% 0.12 185deg) 100%);
  position: relative;
  overflow: hidden;
}
.webinar-hello-bar__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.06) 40%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.06) 60%, transparent 80%);
  background-size: 200% 100%;
  animation: hello-bar-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
.webinar-hello-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: var(--dreem-landing-max-width);
  z-index: 1;
}
.webinar-hello-bar__sparkle {
  font-size: 16px;
  color: #b8ffd6;
  margin-top: -2px;
  animation: hello-bar-sparkle-pulse 2s ease-in-out infinite;
}
.webinar-hello-bar__text {
  font-family: var(--dreem-app-font);
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  text-align: center;
}
.webinar-hello-bar__text strong {
  font-weight: 600;
  color: #e0ffe8;
}
.webinar-hello-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 18px;
  font-family: var(--dreem-app-font);
  font-size: 13px;
  font-weight: 600;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 1.4;
}
.webinar-hello-bar__cta:hover {
  background: #e0ffe8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(53, 227, 133, 0.3);
}
.webinar-hello-bar__cta:active {
  transform: translateY(0);
}

body.has-webinar-hello-bar .dreem-header-wrapper {
  top: var(--webinar-hello-bar-offset, 44px);
}

@keyframes hello-bar-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes hello-bar-sparkle-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}
@media screen and (max-width: 868px) {
  .webinar-hello-bar__inner {
    padding: 10px 12px;
  }
  .webinar-hello-bar__content {
    gap: 8px;
  }
  .webinar-hello-bar__sparkle {
    display: none;
  }
  .webinar-hello-bar__text {
    font-size: 12px;
  }
  .webinar-hello-bar__cta {
    font-size: 12px;
    padding: 4px 14px;
  }
}
@media screen and (max-width: 480px) {
  .webinar-hello-bar__text {
    font-size: 11px;
  }
  .webinar-hello-bar__cta {
    font-size: 11px;
    padding: 4px 12px;
  }
}
/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--dreem-app-font);
  background-color: #000;
  color: var(--dreem-app-color);
  overflow: hidden auto;
}

:root {
  --dreem-app-font: "Space Grotesk", sans-serif;
  --dreem-app-small-font: "Inter", sans-serif;
  --dreem-app-color-accent: oklch(63.5% 0.184672 158.1);
  --dreem-app-wrapper-radius: 26px;
  --dreem-app-block-radius: 12px;
  --dreem-app-base-radius: 3px;
  --dreem-app-element-radius: 4px;
  --dreem-app-transition: 0.25s all cubic-bezier(0.25, 0.1, 0.25, 1);
  --dreem-app-corner-shape-value: superellipse(1.2);
  --dreem-app-radius-step: 6px;
  --dreem-landing-header-height: 160px;
  --dreem-landing-padding: 80px;
  --dreem-landing-max-width: 1600px;
  --dreem-landing-hero-title-size: 80px;
  --dreem-landing-section-title-size: 60px;
  --dreem-landing-description-size: 24px;
  --dreem-landing-grid: repeat(4, 1fr);
  --dreem-landing-card-label-size: 20px;
  --dreem-landing-card-description-size: 16px;
  --dreem-landing-card-info-padding: 24px;
  --dreem-landing-screenshot-height: 950px;
  --dreem-app-background-layer-1: #060606;
  --dreem-app-background-layer-2: #121212;
  --dreem-app-background-layer-3: #1a1a1a;
  --dreem-app-background-layer-4: #2b2b2b;
  --dreem-app-background-layer-5: #414141;
  --dreem-app-color: #fcfcfd;
  --dreem-app-z-layer-1: 1;
  --dreem-app-z-layer-2: 100;
  --dreem-app-z-layer-3: 200;
  --dreem-app-z-layer-4: 400;
  --dreem-app-z-layer-5: 500;
  --dreem-app-z-layer-6: 600;
  --dreem-app-z-layer-7: 700;
  --dreem-app-z-layer-8: 800;
  --dreem-app-z-layer-9: 900;
  --dreem-app-z-layer-10: 1000;
  --dreem-app-z-layer-20: 2000;
  --dreem-app-z-layer-30: 3000;
  --dreem-app-z-layer-100: 10000;
}

@supports (corner-shape: var(--dreem-app-corner-shape-value)) {
  :root {
    --dreem-app-wrapper-radius: calc(26px + var(--dreem-app-radius-step) / 2);
    --dreem-app-block-radius: calc(12px + var(--dreem-app-radius-step) / 2);
    --dreem-app-element-radius: calc(4px + var(--dreem-app-radius-step) / 2);
  }
}
.dreem-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100dvh;
  padding: 0;
  margin: 0;
  gap: 30px;
  position: relative;
}
.dreem-wrapper-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  animation: dreem-bg-fade-in 1.5s ease-out forwards;
  pointer-events: none;
  min-width: 100dvw;
}
.dreem-wrapper-bg img {
  width: 100%;
  max-height: 100%;
  pointer-events: none;
  object-fit: cover;
  object-position: top;
}
.dreem-wrapper.no-bg::before {
  display: none;
}
@media screen and (max-width: 1400px) {
  .dreem-wrapper {
    --dreem-landing-padding: 60px;
    --dreem-landing-hero-title-size: 60px;
    --dreem-landing-section-title-size: 40px;
    --dreem-landing-description-size: 20px;
    --dreem-landing-gallery-height: 1000px;
    --dreem-landing-card-label-size: 18px;
    --dreem-landing-card-description-size: 14px;
    --dreem-landing-card-info-padding: 18px;
    --dreem-landing-footer-gallery-gap: 16px;
    --dreem-landing-section-gap: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .dreem-wrapper {
    --dreem-landing-card-label-size: 16px;
    --dreem-landing-card-description-size: 12px;
    --dreem-landing-card-info-padding: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .dreem-wrapper {
    --dreem-landing-padding: 60px;
    --dreem-landing-header-height: 90px;
    --dreem-landing-hero-title-size: 50px;
    --dreem-landing-section-title-size: 30px;
    --dreem-landing-description-size: 16px;
    --dreem-landing-grid: repeat(2, 1fr);
    --dreem-landing-gallery-height: 800px;
    --dreem-landing-header-logo-height: 50px;
    --dreem-landing-footer-gallery-gap: 12px;
    --dreem-landing-footer-gallery-col-1-margin: -100px 0 0 0;
    --dreem-landing-section-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .dreem-wrapper {
    --dreem-landing-padding: 24px;
    --dreem-landing-header-height: 84px;
    --dreem-landing-hero-title-size: 40px;
    --dreem-landing-gallery-height: 600px;
    --dreem-landing-card-info-padding: 12px;
    --dreem-landing-footer-gallery-gap: 16px;
    --dreem-landing-footer-gallery-gap: 10px;
    --dreem-landing-footer-gallery-col-margin: 100px 0 -100px 0;
    --dreem-landing-footer-gallery-col-1-margin: -50px 0 0 0;
    --dreem-landing-section-gap: 50px;
    --dreem-landing-grid-display: flex;
    --dreem-landing-card-min-width: 250px;
    --dreem-landing-button-padding: 8px 16px;
    --dreem-landing-button-font-size: 13px;
    --dreem-landing-header-logo-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .dreem-wrapper {
    --dreem-landing-padding: 16px;
    --dreem-landing-header-height: 76px;
    --dreem-landing-hero-title-size: 30px;
    --dreem-landing-gallery-height: 600px;
    --dreem-landing-card-info-padding: 12px;
    --dreem-landing-footer-gallery-gap: 16px;
    --dreem-landing-footer-gallery-gap: 10px;
    --dreem-landing-footer-gallery-col-margin: 100px 0 -100px 0;
    --dreem-landing-footer-gallery-col-1-margin: -50px 0 0 0;
    --dreem-landing-section-gap: 40px;
    --dreem-landing-section-col-gap: 20px;
    --dreem-landing-section-row-gap: 20px;
    --dreem-landing-button-padding: 8px 16px;
    --dreem-landing-button-font-size: 13px;
  }
}
.dreem-header-nav-link {
  padding: 8px 14px;
  font-size: var(--dreem-landing-button-font-size, 16px);
  line-height: 30px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  opacity: 0.65;
  transition: var(--dreem-app-transition);
  border-radius: 6px;
  white-space: nowrap;
}
.dreem-header-nav-link:hover {
  opacity: 1;
}
.dreem-header-nav-link.active {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--dreem-app-color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 10px;
}
.dreem-header-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}
.dreem-btn {
  outline: none;
  border: none;
  padding: var(--dreem-landing-button-padding, 12px 24px);
  font-size: var(--dreem-landing-button-font-size, 16px);
  font-weight: 500;
  cursor: pointer;
  line-height: 24px;
  border-radius: 100px;
  background-color: transparent;
  color: inherit;
  transition: var(--dreem-app-transition);
  font-family: var(--dreem-app-font);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
}
.dreem-btn:hover {
  background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.dreem-btn.primary {
  background-color: var(--dreem-app-color-accent);
}
.dreem-btn.primary:hover {
  background-color: color-mix(in srgb, var(--dreem-app-color-accent) 80%, #000000 20%);
}
.dreem-btn.secondary {
  background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.dreem-btn.secondary:hover {
  background-color: color-mix(in srgb, currentColor 20%, transparent);
}
.dreem-section {
  padding: var(--dreem-landing-padding);
  display: flex;
  gap: var(--dreem-landing-section-gap, 80px);
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  margin: 10px 0;
  flex-wrap: wrap;
  overflow: hidden;
}
.dreem-section.col {
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.dreem-section-title {
  font-size: var(--dreem-landing-section-title-size);
  line-height: 120%;
  font-weight: 400;
}
.dreem-section-col {
  display: flex;
  min-width: 300px;
  flex-direction: column;
  gap: var(--dreem-landing-section-col-gap, 40px);
  flex: 1;
}
.dreem-section-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--dreem-landing-section-row-gap, 40px);
  max-width: 960px;
}
.dreem-section-actions {
  display: flex;
  gap: 20px;
}
.dreem-outfit-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 939/640;
  overflow: hidden;
}
.dreem-outfit-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}
.dreem-logo {
  display: flex;
  height: var(--dreem-landing-header-logo-height, 60px);
  transition: var(--dreem-app-transition);
  aspect-ratio: 120/45;
}
.dreem-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: var(--dreem-landing-header-inner-height, var(--dreem-landing-header-height));
  width: 100%;
  z-index: calc(var(--dreem-app-z-layer-3) + 1);
  transition: var(--dreem-app-transition);
}
.dreem-header > * {
  pointer-events: all;
}
.dreem-header-wrapper {
  transition: var(--dreem-app-transition);
  position: sticky;
  top: 0px;
  z-index: var(--dreem-app-z-layer-3);
  width: 100%;
  height: var(--dreem-landing-header-height);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 0 var(--dreem-landing-padding);
  pointer-events: none;
}
.dreem-header-wrapper.is-scrolled {
  --dreem-landing-header-inner-height: 80px;
  --dreem-landing-header-logo-height: 40px;
  --dreem-landing-button-padding: 8px 16px;
  --dreem-landing-button-font-size: 13px;
  --glass-opacity: 1;
}
.dreem-header-wrapper .--progressive-glass {
  transition: all 1s ease;
  opacity: var(--glass-opacity, 0);
  position: absolute;
  width: 100%;
  left: 0;
  height: var(--dreem-landing-header-inner-height);
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: var(--dreem-app-z-layer-3);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .dreem-header-wrapper .--progressive-glass {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
.dreem-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.dreem-header-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .dreem-header-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--dreem-app-z-layer-3) + 2);
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 80px 32px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .dreem-header-menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .dreem-header-menu .dreem-header-nav-links {
    flex-direction: column;
    margin-right: 0;
    width: 100%;
    max-width: 280px;
    gap: 8px;
  }
  .dreem-header-menu .dreem-header-nav-link {
    font-size: 18px;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }
  .dreem-header-menu .dreem-btn {
    font-size: 18px;
    padding: 12px 24px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
  .dreem-header-menu .dreem-header-actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .dreem-header-menu .dreem-header-actions .dreem-btn {
    width: 100%;
  }
}
.dreem-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: calc(var(--dreem-app-z-layer-3) + 3);
  position: relative;
}
.dreem-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.dreem-burger span:nth-child(2) {
  margin: 6px 0;
}
.dreem-burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.dreem-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.dreem-burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 600px) {
  .dreem-burger {
    display: block;
  }
}
.dreem-hero-title {
  font-size: var(--dreem-landing-hero-title-size);
  line-height: 120%;
  font-weight: 400;
  letter-spacing: -2px;
  opacity: 0;
}
.dreem-hero-title .hero-char {
  display: inline-block;
  will-change: opacity, transform;
}
.dreem-hero-title-wrapper {
  height: calc(var(--dreem-landing-hero-title-size) * 1.2 * 2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dreem-hero-title .typing-cursor {
  display: inline-block;
  width: 4px;
  height: var(--dreem-landing-hero-title-size);
  background-color: var(--dreem-app-color-accent);
  margin-left: 8px;
  border-radius: 10px;
  margin-bottom: -8px;
  animation: blink 1s step-end infinite;
  box-shadow: 0 0 10px var(--dreem-app-color-accent) 0 0 4px var(--dreem-app-color-accent);
}
@keyframes blink {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.dreem-chat {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  border-radius: 20px;
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  padding: 15px;
  background-color: color-mix(in srgb, currentColor 10%, var(--dreem-app-background-layer-2));
  position: relative;
  opacity: 0;
  z-index: 1;
}
.dreem-chat-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  width: 100%;
}
.dreem-chat-wrapper::after {
  content: "";
  position: absolute;
  inset: 0px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--dreem-app-color-accent), #00ff88, rgba(255, 255, 255, 0), var(--dreem-app-color-accent));
  background-size: 200% 100%;
  background-repeat: repeat-x;
  will-change: background-position;
  animation: dreem-chat-border-move 3s linear infinite reverse, chat-wrapper-glow-appear 1.5s ease 2s forwards;
  filter: blur(40px);
  opacity: 0;
}
@keyframes chat-wrapper-glow-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.3;
  }
}
.dreem-chat-arrow {
  position: absolute;
  transform: rotate(35deg);
  top: -40px;
  right: 100px;
  width: 40px;
  clip-path: inset(0 0 100% 0);
  animation: draw-arrow 1s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
  animation-delay: 1s;
  opacity: 0;
  z-index: var(--dreem-app-z-layer-2);
}
@keyframes draw-arrow {
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.dreem-chat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 3px;
  background: linear-gradient(90deg, var(--dreem-app-color-accent), color-mix(in srgb, var(--dreem-app-color-accent) 20%, transparent), color-mix(in srgb, var(--dreem-app-color-accent) 80%, #fff), var(--dreem-app-color-accent));
  background-size: 200% 100%;
  animation: dreem-chat-border-move 3s linear infinite reverse;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
  z-index: var(--dreem-app-z-layer-1);
  opacity: 1;
  transition: opacity 0.5s;
}
@keyframes dreem-chat-border-move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200% 0;
  }
}
.dreem-chat textarea {
  width: 100%;
  min-height: 0;
  padding: 8px 6px;
  border: none;
  outline: none;
  background-color: transparent;
  color: inherit;
  font-family: var(--dreem-app-small-font);
  font-size: 16px;
  line-height: 22px;
  resize: none;
}
.dreem-chat-icon {
  min-width: 36px;
  height: 36px;
  border-radius: 100px;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: transparent;
  color: inherit;
  transition: var(--dreem-app-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  outline: 1px solid transparent;
}
.dreem-chat-icon.send-btn {
  padding: 5px 1px;
}
.dreem-chat-icon span {
  padding: 0 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}
.dreem-chat-icon:hover {
  background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.dreem-chat-icon.active {
  background-color: color-mix(in srgb, currentColor 20%, transparent);
  color: var(--dreem-app-color-accent);
  outline: 1px solid color-mix(in srgb, currentColor 50%, transparent);
}
.dreem-chat-icon.active:hover {
  background-color: color-mix(in srgb, currentColor 30%, transparent);
}
.dreem-chat-icon.icon-hover {
  position: relative;
}
.dreem-chat-icon.icon-hover svg {
  opacity: 0.5;
}
.dreem-chat-icon.icon-hover.active svg {
  opacity: 1;
}
.dreem-chat-icon.icon-hover.send-btn svg {
  color: var(--dreem-app-color-accent);
  opacity: 1;
}
.dreem-chat-icon.icon-hover:hover svg {
  opacity: 1;
}
.dreem-chat-icon.icon-disabled {
  cursor: not-allowed;
  position: relative;
}
.dreem-chat-icon.icon-disabled svg {
  cursor: not-allowed;
  opacity: 0.3;
}
.dreem-chat-icon.icon-disabled:hover {
  background-color: transparent;
}
.dreem-chat-icon[name] svg[id$=-fill] {
  display: none;
}
.dreem-chat-icon[name] svg[id$=-line] {
  display: block;
}
.dreem-chat-icon[name].active svg[id$=-line] {
  display: none;
}
.dreem-chat-icon[name].active svg[id$=-fill] {
  display: block;
}
.dreem-chat-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dreem-chat-actions > *:last-child {
  margin-left: auto;
}
.dreem-chat-actions > *:first-child {
  margin-right: 10px;
}
.dreem-chat-actions-tool span {
  display: none;
}
.dreem-chat-actions-tool.active span {
  display: block;
}
.dreem-chat-attachments {
  overflow: auto hidden;
  scrollbar-color: color-mix(in srgb, currentColor 20%, transparent) transparent;
  display: none;
  align-items: center;
  gap: 5px;
}
.dreem-chat-attachments.has-attachments {
  display: flex;
}
.dreem-chat-attachments-item {
  position: relative;
  height: 100px;
}
.dreem-chat-attachments-item img {
  border-radius: var(--dreem-app-element-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  height: 100%;
  user-select: none;
  background-color: #fff;
}
.dreem-chat-attachments-item button {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  outline: none;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: var(--dreem-app-base-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4196078431);
  backdrop-filter: blur(10px);
  color: inherit;
  padding: 0;
}
.dreem-chat-attachments-item button:hover {
  background-color: rgba(0, 0, 0, 0.6117647059);
}
.dreem-chat-attachments-item select {
  position: absolute;
  bottom: 5px;
  left: 5px;
  max-width: calc(100% - 10px);
  border-radius: var(--dreem-app-base-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  background-color: rgba(0, 0, 0, 0.4196078431);
  backdrop-filter: blur(10px);
  color: #fff;
  outline: none;
  border: none;
  font-size: 12px;
  transition: var(--dreem-app-transition);
  font-family: var(--dreem-app-small-font);
  line-height: 20px;
  padding: 2px 24px 2px 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 14px;
  cursor: pointer;
}
.dreem-chat-attachments-item select:hover {
  background-color: rgba(0, 0, 0, 0.6117647059);
}
.dreem-description {
  font-size: var(--dreem-landing-description-size);
  line-height: 140%;
  color: color-mix(in srgb, currentColor 50%, transparent);
  max-width: 1000px;
  font-weight: 300;
}
.dreem-hero {
  width: 100%;
  text-align: center;
  padding: 0 var(--dreem-landing-padding) var(--dreem-landing-header-height) var(--dreem-landing-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 84px;
  min-height: var(--dreem-landing-hero-min-height, calc(100dvh - var(--dreem-landing-header-height)));
}
.dreem-hero .dreem-description {
  opacity: 0;
}
.dreem-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  padding: 0 var(--dreem-landing-padding);
}
.dreem-grid {
  width: 100%;
  max-width: var(--dreem-landing-max-width);
  display: var(--dreem-landing-grid-display, grid);
  grid-template-columns: var(--dreem-landing-grid);
  gap: 20px;
  overflow: hidden;
}
.dreem-grid-wrapper {
  width: 100%;
  text-align: center;
  padding: 0 var(--dreem-landing-padding) var(--dreem-landing-padding) var(--dreem-landing-padding);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .dreem-grid-wrapper {
    padding: 0 0 var(--dreem-landing-padding) 0;
  }
}
.dreem-grid:has(.active) .active {
  --img-scale: scale(1.1);
}
.dreem-grid:has(.active) .dreem-card:not(.active) {
  opacity: 0.6 !important;
}
.dreem-card {
  background-color: var(--dreem-app-background-layer-2);
  border-radius: var(--dreem-app-block-radius);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--dreem-app-transition);
  min-width: var(--dreem-landing-card-min-width, 0);
}
.dreem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  transition: var(--dreem-app-transition);
}
.dreem-card img,
.dreem-card video {
  width: 100%;
  height: 100%;
  transform: var(--img-scale, scale(1));
  object-fit: cover;
  transition: var(--dreem-app-transition);
  pointer-events: none;
}
.dreem-card img.video-absolute,
.dreem-card video.video-absolute {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 65%;
  aspect-ratio: 3/4;
  height: auto;
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
}
.dreem-card-icon {
  color: var(--dreem-app-color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.dreem-card-icon svg[id$=-fill] {
  display: none;
}
.dreem-card-icon svg[id$=-line] {
  display: block;
}
.dreem-card.active .dreem-card-icon svg[id$=-line] {
  display: none;
}
.dreem-card.active .dreem-card-icon svg[id$=-fill] {
  display: block;
}
.dreem-card-infor {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.1176470588);
  backdrop-filter: blur(10px);
  border-radius: var(--dreem-app-element-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  padding: var(--dreem-landing-card-info-padding);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  z-index: 1;
}
.dreem-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.dreem-card-label {
  font-size: var(--dreem-landing-card-label-size);
  line-height: 120%;
}
.dreem-card-description {
  font-size: var(--dreem-landing-card-description-size);
  line-height: 140%;
  opacity: 0.5;
}
.dreem-screenshot {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dreem-screenshot-web {
  max-height: 80%;
  width: 90%;
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  aspect-ratio: 1486/941;
}
.dreem-screenshot-mobile {
  position: absolute;
  bottom: -5%;
  right: 0;
  width: 25%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  aspect-ratio: 369/753;
  z-index: var(--dreem-app-z-layer-1);
}
.dreem-gallery {
  position: relative;
  width: 100%;
  height: var(--dreem-landing-gallery-height, 1360px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.dreem-gallery-absolute-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  z-index: var(--dreem-app-z-layer-1);
  box-shadow: 0 20px 100px rgba(0, 0, 0, 0.2);
  aspect-ratio: 3/4;
  will-change: transform;
  contain: layout paint style;
}
@media screen and (max-width: 768px) {
  .dreem-gallery-absolute-item {
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform-style: flat;
    will-change: transform;
    contain: layout paint;
    content-visibility: auto;
    contain-intrinsic-size: 100px 133px;
  }
}
.dreem-gallery-absolute-item.main {
  z-index: var(--dreem-app-z-layer-2);
  box-shadow: 0 20px 100px rgb(0, 0, 0);
  opacity: 1 !important;
}
@media screen and (max-width: 768px) {
  .dreem-gallery-absolute-item.main {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }
}
.dreem-gallery-absolute-item img,
.dreem-gallery-absolute-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 1 !important;
  display: block;
  pointer-events: none;
}
.dreem-gallery-absolute-item video {
  transition: opacity 0.15s ease-out, visibility 0.15s ease-out;
  will-change: opacity;
}
.dreem-gallery-absolute-item-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  color: rgb(0, 0, 0);
  padding: 0 10px;
  border-radius: var(--dreem-app-element-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  font-size: 12px;
  line-height: 26px;
  font-weight: 500;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  contain: layout style;
}
@media screen and (max-width: 768px) {
  .dreem-gallery-absolute-item-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    line-height: 22px;
    padding: 0 8px;
  }
}
.dreem-gallery-absolute-item-badge.main {
  background-color: var(--dreem-app-color-accent);
}
.dreem-gallery-absolute-item.arrow {
  z-index: var(--dreem-app-z-layer-2);
  aspect-ratio: 95/87;
  box-shadow: none;
  border-radius: 0;
  object-fit: contain;
}
.dreem-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 90px;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 120px;
  padding-bottom: 50px;
  margin-top: auto;
}
.dreem-footer-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  gap: 22px;
}
.dreem-footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  line-height: 20px;
  flex-wrap: wrap;
  font-weight: 500;
}
.dreem-footer-links a {
  opacity: 0.5;
  color: inherit;
  text-decoration: none;
  transition: var(--dreem-app-transition);
  text-align: center;
}
.dreem-footer-links a:hover {
  opacity: 1;
}
.dreem-footer-gallery {
  width: calc(100% + 60px);
  display: flex;
  align-items: center;
  gap: var(--dreem-landing-footer-gallery-gap, 20px);
  margin: 0 -30px;
}
.dreem-footer-gallery .col {
  margin: var(--dreem-landing-footer-gallery-col-margin, 0 0 -200px 0);
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--dreem-landing-footer-gallery-gap, 20px);
}
.dreem-footer-gallery .col img {
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
}
.dreem-footer-gallery .col:first-child {
  margin: var(--dreem-landing-footer-gallery-col-1-margin, -200px 0 0 0);
}
.dreem-footer-gallery .col:nth-child(2) {
  margin-top: -100px;
}
.dreem-footer-gallery .col:last-child {
  margin-top: -100px;
}
.dreem-footer-logo {
  max-width: 700px;
  position: absolute;
  top: 0px;
  width: 40%;
  pointer-events: none;
  height: auto;
}
.dreem-recaptcha-disclaimer {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.25px;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  background: linear-gradient(to top, var(--dreem-app-background-layer-1), transparent);
}
.dreem-recaptcha-disclaimer span {
  color: color-mix(in srgb, currentColor 30%, transparent);
}
.dreem-recaptcha-disclaimer a {
  text-decoration: none;
  opacity: 0.5;
  color: inherit;
  text-decoration: none;
  transition: var(--dreem-app-transition);
  text-align: center;
}
.dreem-recaptcha-disclaimer a:hover {
  opacity: 1;
}
.dreem-legal {
  padding: 0 var(--dreem-landing-padding) var(--dreem-landing-padding) var(--dreem-landing-padding);
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  gap: var(--dreem-landing-section-gap, 80px);
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
}
.dreem-legal-title {
  width: 100%;
  text-align: center;
  font-size: var(--dreem-landing-hero-title-size);
  line-height: 120%;
  font-weight: 400;
  letter-spacing: -2px;
}
.dreem-legal-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
  max-width: 1200px;
  gap: 10px;
  margin: 0 -20px;
}
.dreem-legal-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: inherit;
  background-color: color-mix(in srgb, currentColor 10%, transparent);
  text-decoration: none;
  width: 100%;
  padding: 30px;
}
.dreem-legal-item:hover {
  background-color: color-mix(in srgb, currentColor 15%, transparent);
  --dreem-landing-legal-item-icon-opacity: 1 !important;
}
.dreem-legal-item h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  margin: 0;
  text-align: left;
}
.dreem-legal-item p {
  opacity: 0.5;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  margin: 0;
  font-family: var(--dreem-app-small-font);
}
.dreem-legal-icon {
  opacity: var(--dreem-landing-legal-item-icon-opacity, 0.3) !important;
  transition: all 0.3s ease;
}
.dreem-legal-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.dreem-markdown {
  padding: 0 var(--dreem-landing-padding) var(--dreem-landing-padding) var(--dreem-landing-padding);
  display: flex;
  gap: var(--dreem-landing-section-gap, 80px);
  width: 100%;
  max-width: 1368px;
}
@media screen and (max-width: 900px) {
  .dreem-markdown {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.dreem-markdown-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.dreem-markdown-back {
  opacity: 0.6;
  margin-bottom: 30px;
  cursor: pointer;
}
.dreem-markdown-back:hover {
  opacity: 1;
}
.dreem-markdown-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  font-family: var(--dreem-app-small-font);
  color: var(--dreem-app-color);
}
.dreem-markdown-content h1 {
  font-family: var(--dreem-app-font);
  font-size: 48px;
  line-height: 120%;
  font-weight: 400;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  .dreem-markdown-content h1 {
    font-size: 32px;
  }
}
.dreem-markdown-content .time-update {
  font-size: 13px;
  opacity: 0.5;
  margin: 0 0 40px 0;
  font-style: italic;
}
.dreem-markdown-content .heading {
  font-family: var(--dreem-app-font);
  font-size: 32px;
  line-height: 130%;
  font-weight: 400;
  margin: 60px 0 24px 0;
  scroll-margin-top: 120px;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  .dreem-markdown-content .heading {
    font-size: 24px;
    margin: 40px 0 20px 0;
  }
}
.dreem-markdown-content .title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 32px 0 12px 0;
  color: color-mix(in srgb, currentColor 90%, transparent);
}
.dreem-markdown-content .des {
  font-size: 14px;
  line-height: 160%;
  font-weight: 400;
  opacity: 0.68;
  margin: 0;
}
.dreem-markdown-content .des + .des {
  margin-top: 16px;
}
.dreem-markdown-content .link {
  color: var(--dreem-app-color-accent);
  text-decoration: none;
  transition: var(--dreem-app-transition);
  position: relative;
  display: inline-block;
}
.dreem-markdown-content .link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.dreem-markdown-content .link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.dreem-markdown-content .list {
  padding-left: 24px;
  margin: 16px 0 24px 0;
}
.dreem-markdown-content .list-item {
  font-size: 14px;
  line-height: 160%;
  margin-bottom: 8px;
  opacity: 0.68;
  padding-left: 4px;
}
.dreem-markdown-content .list-item::marker {
  color: var(--dreem-app-color-accent);
}
.dreem-markdown-content .table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--dreem-app-element-radius);
  border: 1px solid color-mix(in srgb, currentColor 15%, transparent);
}
.dreem-markdown-content .table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.dreem-markdown-content .table th,
.dreem-markdown-content .table td {
  text-align: left;
  padding: 12px 20px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  font-size: 15px;
  line-height: 150%;
}
.dreem-markdown-content .table th {
  font-weight: 600;
  background-color: color-mix(in srgb, currentColor 10%, transparent);
  color: color-mix(in srgb, currentColor 80%, transparent);
}
.dreem-markdown-content .table td {
  opacity: 0.8;
}
.dreem-markdown-content .table tbody tr:last-child td {
  border-bottom: none;
}
.dreem-markdown-content .table tbody tr {
  transition: background-color 0.2s ease;
}
.dreem-markdown-content .table tbody tr:hover {
  background-color: color-mix(in srgb, currentColor 2%, transparent);
}
.dreem-markdown-content strong {
  font-weight: 600;
  color: var(--dreem-app-color);
  opacity: 1;
}
.dreem-markdown-navigator {
  flex-basis: 300px;
  position: sticky;
  top: calc(var(--dreem-landing-header-height) + 10px);
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dreem-markdown-navigator-mobile-toggle {
  display: none;
}
@media screen and (max-width: 900px) {
  .dreem-markdown-navigator {
    width: 100%;
    flex-basis: auto;
    position: sticky;
    top: calc(var(--dreem-landing-header-height) + 10px);
    background: color-mix(in srgb, var(--dreem-app-background-layer-2) 30%, currentColor 10%);
    backdrop-filter: blur(10px);
    border-radius: var(--dreem-app-block-radius);
    corner-shape: var(--dreem-app-corner-shape-value, unset);
    z-index: 10;
    gap: 0;
    border: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  }
  .dreem-markdown-navigator .dreem-markdown-navigator-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
  }
  .dreem-markdown-navigator .dreem-markdown-navigator-mobile-toggle::after {
    content: "";
    width: 4px;
    height: 4px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
    margin-top: -4px;
  }
  .dreem-markdown-navigator .dreem-markdown-navigator-sticky {
    display: none;
  }
  .dreem-markdown-navigator.open .dreem-markdown-navigator-mobile-toggle::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
  .dreem-markdown-navigator.open .dreem-markdown-navigator-sticky {
    display: flex;
    border-top: 1px solid color-mix(in srgb, currentColor 10%, transparent);
  }
}
.dreem-markdown-navigator-sticky {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  padding-left: 16px;
}
@media screen and (max-width: 900px) {
  .dreem-markdown-navigator-sticky {
    border-left: none;
    padding: 16px;
    max-height: 50vh;
    overflow-y: auto;
  }
}
.dreem-markdown-navigator-item {
  font-family: var(--dreem-app-small-font);
  font-size: 14px;
  line-height: 20px;
  color: inherit;
  opacity: 0.5;
  cursor: pointer;
  transition: var(--dreem-app-transition);
  position: relative;
}
.dreem-markdown-navigator-item:hover, .dreem-markdown-navigator-item.active {
  opacity: 1;
}
@media screen and (min-width: 901px) {
  .dreem-markdown-navigator-item.active::before {
    content: "";
    position: absolute;
    left: -17px;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--dreem-app-color-accent);
  }
}
.dreem-scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: color-mix(in srgb, currentColor 10%, var(--dreem-app-background-layer-1) 20%);
  backdrop-filter: blur(20px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--dreem-app-z-layer-3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  color: inherit;
}
.dreem-scroll-top-btn:hover {
  background-color: color-mix(in srgb, currentColor 20%, var(--dreem-app-background-layer-1) 30%);
}
.dreem-scroll-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .dreem-scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
.dreem-header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dreem-header-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  opacity: 0.6;
  transition: var(--dreem-app-transition);
}
.dreem-header-nav-link:hover {
  opacity: 1;
}
.dreem-header-nav-link.active {
  opacity: 1;
}
.dreem-pricing {
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  padding: 0 var(--dreem-landing-padding) var(--dreem-landing-padding);
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .dreem-pricing {
    gap: 60px;
  }
}
.dreem-pricing-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
}
.dreem-pricing-title {
  font-size: var(--dreem-landing-hero-title-size);
  line-height: 120%;
  font-weight: 400;
  letter-spacing: -2px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .dreem-pricing-title {
    font-size: 36px;
    letter-spacing: -1px;
  }
}
.dreem-pricing-subtitle {
  font-size: var(--dreem-landing-description-size);
  line-height: 150%;
  color: color-mix(in srgb, currentColor 60%, transparent);
  max-width: 600px;
  margin: 0;
  font-weight: 300;
}
.dreem-pricing-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.dreem-pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
  transition: var(--dreem-app-transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dreem-pricing-toggle-label.active {
  opacity: 1;
}
.dreem-pricing-toggle-badge {
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dreem-pricing-toggle-switch {
  position: relative;
  width: 56px;
  height: 30px;
  background-color: color-mix(in srgb, currentColor 15%, transparent);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--dreem-app-transition);
  padding: 3px;
  color: inherit;
}
.dreem-pricing-toggle-switch:hover {
  background-color: color-mix(in srgb, currentColor 25%, transparent);
}
.dreem-pricing-toggle-switch.active {
  background-color: var(--dreem-app-color-accent);
}
.dreem-pricing-toggle-switch.active .dreem-pricing-toggle-slider {
  transform: translateX(26px);
}
.dreem-pricing-toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.dreem-pricing-estimator {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.dreem-pricing-estimator-title {
  font-size: var(--dreem-landing-section-title-size);
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.dreem-pricing-estimator-description {
  font-size: 18px;
  line-height: 150%;
  opacity: 0.5;
  max-width: 600px;
  margin: 0 auto 20px auto;
  font-weight: 300;
  text-align: center;
}
.dreem-pricing-estimator-main-tabs {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.dreem-pricing-estimator-main-tab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--dreem-app-font);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: inherit;
  opacity: 0.3;
  transition: var(--dreem-app-transition);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
}
.dreem-pricing-estimator-main-tab:hover {
  opacity: 0.6;
}
.dreem-pricing-estimator-main-tab.active {
  opacity: 1;
  text-decoration-color: currentColor;
}
.dreem-pricing-estimator-main-tab-sep {
  font-size: 22px;
  font-weight: 300;
  opacity: 0.3;
  pointer-events: none;
}
.dreem-pricing-estimator-panel {
  display: flex;
  flex-direction: column;
}
.dreem-pricing-estimator-panel[hidden] {
  display: none;
}
.dreem-pricing-estimator-global-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 24px;
}
.dreem-pricing-estimator-global-tab-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.dreem-pricing-estimator-global-tab-label {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--dreem-app-small-font);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.5;
  white-space: nowrap;
}
.dreem-pricing-estimator-card {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  border-radius: var(--dreem-app-block-radius);
  overflow: hidden;
  gap: 4px;
}
@media screen and (max-width: 900px) {
  .dreem-pricing-estimator-card {
    grid-template-columns: 1fr;
  }
}
.dreem-pricing-estimator-inputs {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 0;
  background-color: color-mix(in srgb, currentColor 10%, transparent);
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
}
@media screen and (max-width: 900px) {
  .dreem-pricing-estimator-inputs {
    padding: 24px;
  }
}
.dreem-pricing-estimator-inputs-header {
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dreem-pricing-estimator-inputs-title {
  font-weight: 400;
  margin: 0;
}
.dreem-pricing-estimator-inputs-description {
  font-size: 14px;
  line-height: 150%;
  opacity: 0.5;
  margin: 0 0 4px;
}
.dreem-pricing-estimator-panel > .dreem-pricing-estimator-group:first-child {
  margin-top: 0;
}
.dreem-pricing-estimator-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 30px;
}
.dreem-pricing-estimator-group:first-child {
  padding-top: 0;
}
.dreem-pricing-estimator-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dreem-pricing-estimator-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dreem-pricing-estimator-group-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dreem-pricing-estimator-group-name {
  font-size: 12px;
  color: color-mix(in srgb, currentColor 50%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-family: var(--dreem-app-small-font);
}
.dreem-pricing-estimator-res-tabs {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, currentColor 10%, transparent);
  border-radius: 10px;
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  padding: 3px;
}
.dreem-pricing-estimator-res-btn {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--dreem-app-small-font);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  cursor: pointer;
  opacity: 0.4;
  transition: var(--dreem-app-transition);
  letter-spacing: 0.3px;
}
.dreem-pricing-estimator-res-btn:hover {
  opacity: 1;
}
.dreem-pricing-estimator-res-btn.active {
  background-color: color-mix(in srgb, currentColor 30%, transparent);
  opacity: 1;
}
.dreem-pricing-estimator-slider-row {
  display: flex;
  align-items: center;
  gap: 0px;
}
.dreem-pricing-estimator-slider-val {
  font-family: var(--dreem-app-font);
  font-size: 13px;
  font-weight: 600;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  padding: 4px;
  min-width: 50px;
  width: 50px;
  text-align: center;
  line-height: 1.5;
  flex-shrink: 0;
  color: inherit;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
.dreem-pricing-estimator-slider-val::-webkit-inner-spin-button, .dreem-pricing-estimator-slider-val::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.dreem-pricing-estimator-slider-val:focus {
  border-color: var(--dreem-app-color-accent);
  background-color: color-mix(in srgb, var(--dreem-app-color-accent) 6%, transparent);
}
.dreem-pricing-estimator-slider-unit {
  font-size: 13px;
  font-weight: 400;
  color: color-mix(in srgb, currentColor 40%, transparent);
  white-space: nowrap;
  flex-shrink: 0;
  width: 80px;
}
.dreem-pricing-estimator-range {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  min-width: 0;
  height: 2px;
  border-radius: 100px;
  color: var(--dreem-app-color);
  background: linear-gradient(to right, var(--dreem-app-color-accent) var(--progress, 9%), color-mix(in srgb, transparent 90%, var(--dreem-app-color)) var(--progress, 9%));
  cursor: pointer;
  outline: none;
  margin-right: 20px;
}
.dreem-pricing-estimator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 2px;
  height: 16px;
  border-radius: 10px;
  background-color: var(--dreem-app-color-accent);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}
.dreem-pricing-estimator-range::-moz-range-thumb {
  width: 2px;
  height: 16px;
  border-radius: 10px;
  border: none;
  background-color: var(--dreem-app-color-accent);
  cursor: pointer;
}
.dreem-pricing-estimator-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, color-mix(in srgb, var(--dreem-app-color-accent) 8%, var(--dreem-app-background-layer-2)) 0%, color-mix(in srgb, currentColor 12%, transparent) 100%);
}
.dreem-pricing-estimator-total {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dreem-pricing-estimator-total-num {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
}
.dreem-pricing-estimator-total-unit {
  font-size: 14px;
  font-weight: 400;
  color: color-mix(in srgb, currentColor 45%, transparent);
}
.dreem-pricing-estimator-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dreem-pricing-estimator-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  line-height: 20px;
  padding: 6px 0 0 0;
  border-top: 1px solid color-mix(in srgb, currentColor 5%, transparent);
}
.dreem-pricing-estimator-breakdown-label {
  color: color-mix(in srgb, currentColor 55%, transparent);
}
.dreem-pricing-estimator-breakdown-val {
  font-weight: 600;
  font-family: var(--dreem-app-small-font);
  font-size: 12px;
  color: color-mix(in srgb, currentColor 80%, transparent);
}
.dreem-pricing-estimator-breakdown-unit {
  opacity: 0.5;
}
.dreem-pricing-estimator-plan {
  border-top: 1px dashed color-mix(in srgb, currentColor 10%, transparent);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}
.dreem-pricing-estimator-plan-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--dreem-app-small-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.5;
}
.dreem-pricing-estimator-plan-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1;
}
.dreem-pricing-estimator-plan-desc {
  font-size: 13px;
  color: color-mix(in srgb, currentColor 50%, transparent);
  margin: 0;
  font-weight: 300;
  line-height: 1.5;
}
.dreem-pricing-estimator-plan-cta {
  margin-top: 4px;
  text-align: center;
  font-size: 14px;
}
.dreem-pricing-estimator-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: color-mix(in srgb, currentColor 35%, transparent);
  margin: 0;
  font-weight: 300;
}
.dreem-pricing-estimator-note svg {
  flex-shrink: 0;
}
.dreem-pricing-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .dreem-pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1080px) {
  .dreem-pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 700px) {
  .dreem-pricing-cards {
    grid-template-columns: 1fr;
  }
}
.dreem-pricing-card {
  background-color: var(--dreem-app-background-layer-2);
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: var(--dreem-app-transition);
  border: 1px solid transparent;
}
.dreem-pricing-card:hover {
  border-color: color-mix(in srgb, currentColor 15%, transparent);
  transform: translateY(-4px);
}
.dreem-pricing-card--popular {
  border-color: var(--dreem-app-color-accent);
  background: linear-gradient(180deg, color-mix(in srgb, var(--dreem-app-color-accent) 8%, var(--dreem-app-background-layer-2)) 0%, var(--dreem-app-background-layer-2) 100%);
}
.dreem-pricing-card--popular:hover {
  border-color: var(--dreem-app-color-accent);
}
.dreem-pricing-card--enterprise {
  background: linear-gradient(135deg, color-mix(in srgb, #6366f1 10%, var(--dreem-app-background-layer-2)) 0%, var(--dreem-app-background-layer-2) 100%);
}
.dreem-pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dreem-app-color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.dreem-pricing-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dreem-pricing-card-name {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
.dreem-pricing-card-description {
  font-size: 14px;
  line-height: 150%;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin: 0;
  font-family: var(--dreem-app-small-font);
  min-height: 42px;
}
.dreem-pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  min-height: 64px;
}
.dreem-pricing-card-prefix {
  font-size: 14px;
  color: color-mix(in srgb, currentColor 50%, transparent);
  width: 100%;
}
.dreem-pricing-card-amount {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1;
}
.dreem-pricing-card-period {
  font-size: 14px;
  color: color-mix(in srgb, currentColor 50%, transparent);
}
.dreem-pricing-card-credits {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--dreem-app-small-font);
  flex-wrap: wrap;
}
.dreem-pricing-card-credits-icon {
  color: var(--dreem-app-color-accent);
  font-size: 18px;
}
.dreem-pricing-card-credits-value {
  font-weight: 600;
}
.dreem-pricing-card-credits-label {
  color: color-mix(in srgb, currentColor 60%, transparent);
}
.dreem-pricing-card-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dreem-pricing-card-selector--placeholder .dreem-pricing-card-selector-static {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background-color: color-mix(in srgb, currentColor 5%, transparent);
  border: 1px dashed color-mix(in srgb, currentColor 15%, transparent);
  border-radius: var(--dreem-app-element-radius);
  font-size: 12px;
  font-family: var(--dreem-app-small-font);
  color: color-mix(in srgb, currentColor 70%, transparent);
}
.dreem-pricing-card-selector--placeholder .dreem-pricing-card-credits-icon {
  color: var(--dreem-app-color-accent);
}
.dreem-pricing-card-selector-label {
  font-size: 12px;
  color: color-mix(in srgb, currentColor 50%, transparent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--dreem-app-small-font);
}
.dreem-pricing-card-select {
  width: 100%;
  padding: 10px 40px 10px 12px;
  background-color: color-mix(in srgb, currentColor 8%, transparent);
  border: none;
  border-radius: var(--dreem-app-element-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  color: inherit;
  font-size: 12px;
  font-family: var(--dreem-app-small-font);
  cursor: pointer;
  transition: var(--dreem-app-transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.dreem-pricing-card-select:hover {
  background-color: color-mix(in srgb, currentColor 15%, transparent);
}
.dreem-pricing-card-select:focus {
  outline: none;
  border-color: var(--dreem-app-color-accent);
}
.dreem-pricing-card-select option {
  background-color: var(--dreem-app-background-layer-3);
  color: var(--dreem-app-color);
  padding: 12px;
}
.dreem-pricing-card-custom-select {
  position: relative;
}
.dreem-pricing-card-custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 40px 10px 12px;
  background-color: color-mix(in srgb, currentColor 8%, transparent);
  border: none;
  border-radius: var(--dreem-app-element-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  color: inherit;
  font-size: 12px;
  font-family: var(--dreem-app-small-font);
  cursor: pointer;
  transition: var(--dreem-app-transition);
  text-align: left;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
}
.dreem-pricing-card-custom-select-trigger:hover {
  background-color: color-mix(in srgb, currentColor 15%, transparent);
}
.dreem-pricing-card-custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 4px;
  background-color: var(--dreem-app-background-layer-5);
  border-radius: var(--dreem-app-element-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.dreem-pricing-card-custom-select.open .dreem-pricing-card-custom-select-dropdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dreem-pricing-card-custom-select-option {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 12px;
  font-family: var(--dreem-app-small-font);
  color: var(--dreem-app-color);
  cursor: pointer;
  border-radius: calc(var(--dreem-app-element-radius) - 2px);
  transition: var(--dreem-app-transition);
}
.dreem-pricing-card-custom-select-option:hover {
  background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.dreem-pricing-card-custom-select-option.selected {
  background-color: color-mix(in srgb, currentColor 8%, transparent);
}
.dreem-pricing-card-custom-select-credits {
  font-weight: 600;
}
.dreem-pricing-card-custom-select-separator {
  width: 1px;
  height: 12px;
  background-color: color-mix(in srgb, currentColor 25%, transparent);
  flex-shrink: 0;
  margin: 0 4px;
}
.dreem-pricing-card-custom-select-price {
  color: color-mix(in srgb, currentColor 60%, transparent);
}
.dreem-pricing-card-cta {
  width: 100%;
  text-align: center;
}
.dreem-pricing-card-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dreem-pricing-card-features li {
  font-size: 13px;
  line-height: 20px;
  font-family: var(--dreem-app-small-font);
  color: color-mix(in srgb, currentColor 40%, transparent);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.dreem-pricing-card-features li::before {
  content: "✓";
  color: var(--dreem-app-color-accent);
  font-weight: 600;
  flex-shrink: 0;
}
.dreem-pricing-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: transparent;
  border: none;
  color: color-mix(in srgb, currentColor 50%, transparent);
  cursor: help;
  padding: 0;
}
.dreem-pricing-tooltip:hover {
  color: inherit;
}
.dreem-pricing-tooltip:hover .dreem-pricing-tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dreem-pricing-tooltip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--dreem-app-background-layer-5);
  color: var(--dreem-app-color);
  padding: 12px 16px;
  border-radius: var(--dreem-app-element-radius);
  font-size: 13px;
  line-height: 150%;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  font-family: var(--dreem-app-small-font);
  text-align: left;
  font-weight: 400;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.dreem-pricing-tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--dreem-app-background-layer-5);
}
.dreem-pricing-comparison {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.dreem-pricing-comparison-title {
  font-size: var(--dreem-landing-section-title-size);
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.dreem-pricing-comparison-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--dreem-app-block-radius);
  background: var(--dreem-app-background-layer-2);
  border: 1px solid color-mix(in srgb, currentColor 8%, transparent);
}
.dreem-pricing-comparison-table {
  width: 100%;
  min-width: 900px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--dreem-app-small-font);
}
.dreem-pricing-comparison-table th,
.dreem-pricing-comparison-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, currentColor 6%, transparent);
  font-size: 14px;
  transition: background-color 0.15s ease;
  position: relative;
}
.dreem-pricing-comparison-table th:first-child,
.dreem-pricing-comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  padding-left: 28px;
  color: color-mix(in srgb, currentColor 85%, transparent);
}
.dreem-pricing-comparison-table th:last-child,
.dreem-pricing-comparison-table td:last-child {
  padding-right: 28px;
}
.dreem-pricing-comparison-table th {
  background: color-mix(in srgb, currentColor 3%, transparent);
  font-weight: 600;
  color: color-mix(in srgb, currentColor 60%, transparent);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.dreem-pricing-comparison-table th.dreem-pricing-comparison-highlight {
  background: color-mix(in srgb, var(--dreem-app-color-accent) 8%, transparent);
  color: var(--dreem-app-color-accent);
}
.dreem-pricing-comparison-table tbody tr:hover:not(.dreem-pricing-comparison-section) {
  background-color: color-mix(in srgb, currentColor 2%, transparent);
}
.dreem-pricing-comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.dreem-pricing-comparison-table tbody td.dreem-pricing-comparison-highlight {
  background: color-mix(in srgb, var(--dreem-app-color-accent) 4%, transparent);
}
.dreem-pricing-comparison-table .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dreem-app-color-accent);
}
.dreem-pricing-comparison-table .check svg {
  width: 18px;
  height: 18px;
}
.dreem-pricing-comparison-table .dash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, currentColor 20%, transparent);
  font-size: 16px;
  font-weight: 400;
}
.dreem-pricing-comparison-table .value {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, currentColor 70%, transparent);
}
.dreem-pricing-comparison-table .value--accent {
  color: var(--dreem-app-color-accent);
  font-weight: 600;
}
.dreem-pricing-comparison-section td {
  background: color-mix(in srgb, currentColor 10%, transparent) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  color: color-mix(in srgb, currentColor 30%, transparent) !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid color-mix(in srgb, currentColor 6%, transparent) !important;
  border-top: 1px solid color-mix(in srgb, currentColor 6%, transparent);
}
.dreem-pricing-comparison-section-icon {
  display: none;
}
.dreem-pricing-comparison-feature {
  min-width: 200px;
}
.dreem-pricing-comparison-highlight {
  position: relative;
}
.dreem-pricing-comparison-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-left: 1px solid color-mix(in srgb, var(--dreem-app-color-accent) 12%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--dreem-app-color-accent) 12%, transparent);
  pointer-events: none;
}
.dreem-pricing-faq {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.dreem-pricing-faq-title {
  font-size: var(--dreem-landing-section-title-size);
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.dreem-pricing-faq-subtitle {
  font-size: 16px;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin: -24px 0 0 0;
  text-align: center;
}
.dreem-pricing-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.dreem-pricing-faq-item {
  background-color: var(--dreem-app-background-layer-2);
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  overflow: hidden;
  transition: var(--dreem-app-transition);
}
.dreem-pricing-faq-item:hover {
  background-color: color-mix(in srgb, currentColor 8%, var(--dreem-app-background-layer-2));
}
.dreem-pricing-faq-item[open] .dreem-pricing-faq-question svg {
  transform: rotate(180deg);
}
.dreem-pricing-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  list-style: none;
}
.dreem-pricing-faq-question::-webkit-details-marker {
  display: none;
}
.dreem-pricing-faq-question::marker {
  display: none;
}
.dreem-pricing-faq-question svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.25s ease;
}
.dreem-pricing-faq-question span {
  flex: 1;
}
.dreem-pricing-faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 170%;
  color: color-mix(in srgb, currentColor 70%, transparent);
  font-family: var(--dreem-app-small-font);
}
.dreem-pricing-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--dreem-app-color-accent) 10%, var(--dreem-app-background-layer-2)) 0%, var(--dreem-app-background-layer-2) 50%, color-mix(in srgb, #6366f1 10%, var(--dreem-app-background-layer-2)) 100%);
  border-radius: var(--dreem-app-block-radius);
  corner-shape: var(--dreem-app-corner-shape-value, unset);
}
.dreem-pricing-cta-title {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 768px) {
  .dreem-pricing-cta-title {
    font-size: 24px;
  }
}
.dreem-pricing-cta-description {
  font-size: 16px;
  color: color-mix(in srgb, currentColor 60%, transparent);
  margin: 0;
  max-width: 500px;
}
.dreem-pricing-cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.dreem-footer--simple {
  padding: 40px var(--dreem-landing-padding);
  gap: 0;
}
.dreem-footer--simple .dreem-footer-text {
  padding: 0;
}

.full-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: color-mix(in srgb, var(--dreem-app-background) 50%, transparent);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--dreem-app-z-layer-4);
  backdrop-filter: blur(50px);
  font-family: var(--dreem-app-font);
  color: var(--dreem-app-color);
  animation: full-view-bdrop 0.25s ease-in-out;
  animation-fill-mode: forwards;
  animation-play-state: running;
}
@keyframes full-view-bdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.full-view-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 400;
  text-align: center;
}
.full-view-dropzone-icon {
  color: var(--dreem-app-color-accent);
}
.full-view-dropzone-text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
}
.full-view-dropzone-description {
  opacity: 0.5;
  font-size: 13px;
  line-height: 20px;
  font-family: var(--dreem-app-small-font);
}

.grecaptcha-badge {
  visibility: hidden;
}

@keyframes dreem-bg-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}@font-face {
  font-family: 'Space Grotesk';
  src: url('/landing/assets/SpaceGrotesk-Light-BrIJRV9W.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/landing/assets/SpaceGrotesk-Regular-DJWYkAIT.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/landing/assets/SpaceGrotesk-Medium-BH42mkrL.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/landing/assets/SpaceGrotesk-SemiBold-CetLVRVU.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/landing/assets/SpaceGrotesk-Bold-EGEMlKI3.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-Regular-DRVdRqcI.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-Italic-BMEQ2Kjv.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-Medium-B_8v_WHh.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-MediumItalic-n6BHLlTx.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-SemiBold-CtskMddL.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-SemiBoldItalic-DDHvlk21.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-Bold-CD3Pr7BX.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/landing/assets/Inter-BoldItalic-D3V_KwY_.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-color: var(--dreem-preloading-background, #060606);
  z-index: 999999;
  transition: opacity 0.5s ease;
  --dreem-preloading-color-base: var(--dreem-app-color-accent);
  --dreem-preloading-opacity: 0.4;
}
@media (prefers-color-scheme: light) {
  #preloader {
    --dreem-preloading-background: #f1f1f1;
  }
}

@keyframes shimmer-logo {
  0% {
    mask-position: 100% 0;
  }
  100% {
    mask-position: 0% 0;
  }
}
#preloader #preloader-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--dreem-preloading-color-base);
  mask-image: linear-gradient(45deg, rgba(0, 0, 0, var(--dreem-preloading-opacity)) 45%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, var(--dreem-preloading-opacity)) 55%);
  mask-size: 300% 100%;
  mask-repeat: no-repeat;
  animation: shimmer-logo 2s infinite;
  animation-delay: 1s;
}.snackbar-container {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
}

.snackbar {
  position: fixed;
  display: flex;
  align-items: center;
  min-width: 288px;
  max-width: 568px;
  padding: 0;
  margin: 12px;
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  font-family: var(--dreem-app-small-font, "Inter", sans-serif);
}
.snackbar.snackbar-bottom-left {
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
}
.snackbar.snackbar-bottom-center {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  transform-origin: bottom center;
}
.snackbar.snackbar-bottom-right {
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
}
.snackbar.snackbar-top-left {
  top: 0;
  left: 0;
  transform-origin: top left;
}
.snackbar.snackbar-top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  transform-origin: top center;
}
.snackbar.snackbar-top-right {
  top: 0;
  right: 0;
  transform-origin: top right;
}
.snackbar.snackbar-enter {
  opacity: 1;
  transform: scale(1);
}
.snackbar.snackbar-enter.snackbar-bottom-center, .snackbar.snackbar-enter.snackbar-top-center {
  transform: translateX(-50%) scale(1);
}
.snackbar.snackbar-exit {
  opacity: 0;
  transform: scale(0.8);
}
.snackbar.snackbar-exit.snackbar-bottom-center, .snackbar.snackbar-exit.snackbar-top-center {
  transform: translateX(-50%) scale(0.8);
}

.snackbar-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  width: 100%;
  corner-shape: var(--dreem-app-corner-shape-value, unset);
  border-radius: var(--dreem-app-block-radius);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.2);
  border: 1px solid color-mix(in srgb, currentColor 8%, transparent);
  color: var(--dreem-app-color);
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}
@media screen and (max-width: 768px) {
  .snackbar-content {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
}

.snackbar-icon {
  display: flex;
  align-items: center;
  opacity: 0.9;
  flex-shrink: 0;
}
.snackbar-icon svg {
  width: 24px;
  height: 24px;
}

.snackbar-message {
  flex: 1;
  padding: 8px 0;
  font-size: 13px;
  line-height: 20px;
}

.snackbar-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px;
  margin: -4px -4px -4px 0;
  font-size: 24px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.snackbar-close:hover {
  opacity: 1;
}
.snackbar-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.snackbar-success .snackbar-content {
  background-color: color-mix(in srgb, rgba(0, 255, 68, 0.472), var(--dreem-app-background-layer-5) 50%);
}

.snackbar-error .snackbar-content {
  background-color: color-mix(in srgb, rgba(255, 0, 0, 0.472), var(--dreem-app-background-layer-5) 50%);
}

.snackbar-warning .snackbar-content {
  background-color: color-mix(in srgb, rgba(255, 153, 0, 0.472), var(--dreem-app-background-layer-5) 50%);
}
.snackbar-warning .snackbar-close {
  background-color: color-mix(in srgb, rgba(255, 0, 0, 0.472), var(--dreem-app-background-layer-5) 50%);
}

.snackbar-info .snackbar-content {
  background-color: color-mix(in srgb, rgba(0, 0, 0, 0.472), var(--dreem-app-background-layer-5) 50%);
}

.snackbar-default .snackbar-content {
  background-color: color-mix(in srgb, rgba(255, 255, 255, 0.472), var(--dreem-app-background-layer-5) 50%);
}

@media (max-width: 600px) {
  .snackbar {
    min-width: auto;
    max-width: calc(100vw - 32px);
    left: 16px !important;
    right: 16px !important;
  }
  .snackbar.snackbar-bottom-center, .snackbar.snackbar-top-center {
    transform: scale(0.8);
  }
  .snackbar.snackbar-bottom-center.snackbar-enter, .snackbar.snackbar-top-center.snackbar-enter {
    transform: scale(1);
  }
  .snackbar.snackbar-bottom-center.snackbar-exit, .snackbar.snackbar-top-center.snackbar-exit {
    transform: scale(0.8);
  }
}/* Webinar Page Styles */
.dreem-webinar {
  /* ========================================
     Coming Soon
     ======================================== */
  /* ========================================
     Hero Section
     ======================================== */
  /* ========================================
     Badges
     ======================================== */
  /* ========================================
     Past Webinars Section
     ======================================== */
  /* ========================================
     Search
     ======================================== */
  /* ========================================
     Webinar Card
     ======================================== */
  /* ========================================
     Speaker
     ======================================== */
  /* ========================================
     Load More Button
     ======================================== */
  /* ========================================
     Not Found / No Results
     ======================================== */
}
.dreem-webinar-login {
  color: #757575;
  font-weight: 500;
}
.dreem-webinar-coming-soon {
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  padding: 160px var(--dreem-landing-padding) 80px;
  text-align: center;
}
.dreem-webinar-coming-soon-title {
  font-size: var(--dreem-landing-hero-title-size);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -1.6px;
  margin: 0 0 24px;
  color: white;
}
.dreem-webinar-coming-soon-description {
  font-size: var(--dreem-landing-description-size);
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto;
  max-width: 600px;
}
.dreem-webinar-hero {
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  padding: 100px var(--dreem-landing-padding) 80px;
}
.dreem-webinar-hero-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.dreem-webinar-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding-top: 20px;
}
.dreem-webinar-hero-right {
  flex: 1;
  max-width: 788px;
}
.dreem-webinar-hero-title {
  font-size: var(--dreem-landing-hero-title-size);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -1.6px;
  margin: 0;
  color: white;
}
.dreem-webinar-hero-description {
  font-size: var(--dreem-landing-description-size);
  line-height: 1.3;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.dreem-webinar-hero-image-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  background-color: #3d3d3d;
  border-radius: var(--dreem-app-block-radius);
  box-shadow: 0px 4px 200px 0px rgb(0, 0, 0);
  position: relative;
  overflow: hidden;
}
.dreem-webinar-hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.dreem-webinar-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  font-family: var(--dreem-app-font);
}
.dreem-webinar-badge.outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: transparent;
}
.dreem-webinar-badge.solid {
  background-color: var(--dreem-app-color-accent);
  color: white;
  border: none;
  position: absolute;
  top: 20px;
  left: 20px;
}
.dreem-webinar-past {
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  padding: 40px var(--dreem-landing-padding) 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}
.dreem-webinar-past-header {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}
.dreem-webinar-past-title {
  font-size: var(--dreem-landing-section-title-size);
  line-height: 1.2;
  font-weight: 400;
  color: white;
  margin: 0;
  white-space: nowrap;
}
.dreem-webinar-search {
  position: relative;
  width: 380px;
  max-width: 100%;
}
.dreem-webinar-search-input {
  width: 100%;
  height: 48px;
  padding: 0 48px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: transparent;
  color: white;
  font-size: 16px;
  font-family: var(--dreem-app-font);
  outline: none;
  transition: var(--dreem-app-transition);
}
.dreem-webinar-search-input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.dreem-webinar-search-input:focus {
  border-color: rgba(255, 255, 255, 0.4);
}
.dreem-webinar-search-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dreem-app-color-accent);
  pointer-events: none;
}
.dreem-webinar-card {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--dreem-app-block-radius);
  overflow: hidden;
  transition: var(--dreem-app-transition);
  cursor: pointer;
  justify-content: space-between;
}
.dreem-webinar-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.dreem-webinar-card-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.dreem-webinar-card-content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  max-width: 768px;
}
.dreem-webinar-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.dreem-webinar-card-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dreem-webinar-card-logo {
  height: 31px;
  width: auto;
  object-fit: contain;
}
.dreem-webinar-card-logo.byteplus {
  height: 22px;
}
.dreem-webinar-card-logo.contentjet {
  height: 19px;
}
.dreem-webinar-card-logo-separator {
  font-size: 16px;
  font-weight: 300;
}
.dreem-webinar-card-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
  margin: 0;
}
.dreem-webinar-card-description {
  font-size: 19px;
  font-weight: 300;
  line-height: 24px;
  opacity: 0.5;
  margin: 0;
}
.dreem-webinar-card-link {
  font-size: 17px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: #37cd7d;
  text-decoration: none;
  margin-top: auto;
  padding-top: 20px;
  transition: var(--dreem-app-transition);
}
.dreem-webinar-card-link:hover {
  color: var(--dreem-app-color-accent);
}
.dreem-webinar-card-speakers {
  display: flex;
  gap: 50px;
  padding: 50px;
  flex-shrink: 0;
  max-width: 716px;
  flex-wrap: wrap;
}
.dreem-webinar-speaker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  min-width: 160px;
}
.dreem-webinar-speaker-avatar {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
}
.dreem-webinar-speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.dreem-webinar-speaker-info {
  width: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.28px;
  text-shadow: 0px 4px 60px rgba(0, 0, 0, 0.4);
}
.dreem-webinar-speaker-name {
  color: white;
  font-weight: 500;
  font-size: 14px;
}
.dreem-webinar-speaker-role {
  color: rgba(252, 252, 253, 0.5);
  font-weight: 400;
}
.dreem-webinar-speaker-company {
  color: white;
  font-weight: 500;
}
.dreem-webinar-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: transparent;
  color: #757575;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--dreem-app-font);
  line-height: 24px;
  letter-spacing: 0.15px;
  cursor: pointer;
  transition: var(--dreem-app-transition);
}
.dreem-webinar-load-more-wp {
  width: calc(100% - var(--dreem-landing-padding) * 2);
  position: absolute;
  bottom: 40px;
  height: 261px;
  background: linear-gradient(to bottom, transparent, #000);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  padding: 10px;
}
.dreem-webinar-load-more:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
}
.dreem-webinar-not-found {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
}
.dreem-webinar-not-found p {
  color: #757575;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--dreem-app-font);
  line-height: 28px;
}

/* ========================================
   Detail Page
   ======================================== */
.dreem-webinar-detail {
  /* Hero */
  /* Countdown badge */
  /* Partners pill */
  /* Registration Form */
  /* Video Player */
  /* About Section */
  /* Things you'll learn checklist */
  /* Speakers Section (detail) */
}
.dreem-webinar-detail-hero {
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  padding: 120px var(--dreem-landing-padding) 80px;
}
.dreem-webinar-detail-hero-content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.dreem-webinar-detail-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 20px;
}
.dreem-webinar-detail-hero-right {
  flex: 1;
  min-width: 0;
}
.dreem-webinar-detail-hero-right #webinar-register-form {
  width: 100%;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.dreem-webinar-detail-hero-right #webinar-register-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dreem-webinar-detail-hero-right #webinar-register-form form .hs-form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dreem-webinar-detail-hero-right #webinar-register-form form .hs-form-field label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.dreem-webinar-detail-hero-right #webinar-register-form form .hs-error-msgs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dreem-webinar-detail-hero-right #webinar-register-form form .hs-error-msgs label {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgb(251, 138, 138) !important;
}
.dreem-webinar-detail-hero-right #webinar-register-form form .input input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  color: white;
  font-size: 15px;
  font-family: var(--dreem-app-font);
  outline: none;
  transition: var(--dreem-app-transition);
  border-radius: 10px;
}
.dreem-webinar-detail-hero-right #webinar-register-form form .input input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.dreem-webinar-detail-hero-right #webinar-register-form form .input input:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}
.dreem-webinar-detail-hero-right #webinar-register-form form input[type=submit] {
  background-color: var(--dreem-app-color-accent);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0 32px;
  height: 48px;
  font-size: 16px;
  font-weight: 500;
  transition: var(--dreem-app-transition);
  border-radius: 100px;
}
.dreem-webinar-detail-hero-right #webinar-register-form form input[type=submit]:hover {
  background-color: var(--dreem-app-color-accent-hover);
}
.dreem-webinar-detail-hero-title {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -1.12px;
  margin: 0;
  color: white;
  margin-top: 12px;
}
@media (max-width: 1599px) {
  .dreem-webinar-detail-hero-title {
    font-size: 40px;
  }
}
.dreem-webinar-detail-countdown-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 500;
  color: white;
  font-family: var(--dreem-app-font);
  margin-bottom: 36px;
}
.dreem-webinar-detail-countdown-label {
  color: var(--dreem-app-color-accent);
  font-weight: 600;
}
.dreem-webinar-detail-countdown-separator {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
}
.dreem-webinar-detail-countdown-text {
  font-weight: 400;
  font-size: 13px;
}
.dreem-webinar-detail-countdown-divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 2px;
}
.dreem-webinar-detail-partners {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 25px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 10px;
  height: 77px;
}
.dreem-webinar-detail-partners svg {
  height: 50px;
  width: 128px;
}
.dreem-webinar-detail-partner-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}
.dreem-webinar-detail-partner-logo.dreem {
  height: 22px;
}
.dreem-webinar-detail-partner-logo.drip-mark {
  height: 20px;
}
.dreem-webinar-detail-partner-logo.drip-word {
  height: 14px;
}
.dreem-webinar-detail-partner-separator {
  font-size: 16px;
  font-weight: 300;
}
.dreem-webinar-detail-form {
  background: color-mix(in srgb, currentColor 8%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--dreem-app-block-radius);
  padding: 43px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dreem-webinar-detail-form-title {
  font-size: 28px;
  font-weight: 500;
  color: white;
  margin: 0 0 30px;
  line-height: 1.2;
}
.dreem-webinar-detail-form-field {
  margin-bottom: 20px;
}
.dreem-webinar-detail-form-field input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  color: white;
  font-size: 15px;
  font-family: var(--dreem-app-font);
  outline: none;
  transition: var(--dreem-app-transition);
  border-radius: 100px;
}
.dreem-webinar-detail-form-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.dreem-webinar-detail-form-field input:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}
.dreem-webinar-detail-form-actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.dreem-webinar-detail-form-actions .dreem-btn.primary {
  justify-content: center;
  height: 48px;
  font-size: 16px;
  width: fit-content;
  flex-shrink: 0;
}
.dreem-webinar-detail-form-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.5;
  margin-right: 50px;
}
.dreem-webinar-detail-video {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dreem-app-block-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--dreem-app-transition);
  aspect-ratio: 16/9;
}
.dreem-webinar-detail-video:hover {
  background: rgba(255, 255, 255, 0.06);
}
.dreem-webinar-detail-video img {
  opacity: 0.65;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dreem-webinar-detail-video-play {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 2;
  position: absolute;
}
.dreem-webinar-detail-video-play:hover {
  transform: scale(1.1);
}
.dreem-webinar-detail-video-play img {
  width: 80px;
  height: 80px;
}
.dreem-webinar-detail-about {
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  padding: 40px var(--dreem-landing-padding) 80px;
}
.dreem-webinar-detail-about-content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}
.dreem-webinar-detail-about-media {
  flex: 1;
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--dreem-app-block-radius);
  position: relative;
}
.dreem-webinar-detail-about-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--dreem-app-block-radius);
}
.dreem-webinar-detail-about-text {
  flex: 1;
  min-width: 0;
  font-size: 19px;
  line-height: 1.6;
  word-break: break-word;
}
.dreem-webinar-detail-about-text h1,
.dreem-webinar-detail-about-text h2,
.dreem-webinar-detail-about-text h3,
.dreem-webinar-detail-about-text h4,
.dreem-webinar-detail-about-text h5,
.dreem-webinar-detail-about-text h6 {
  color: white;
  font-weight: 500;
  line-height: 1.25;
  margin: 8px 0 0;
}
.dreem-webinar-detail-about-text h1 {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.dreem-webinar-detail-about-text h2 {
  font-size: 22px;
}
.dreem-webinar-detail-about-text h3 {
  font-size: 18px;
}
.dreem-webinar-detail-about-text h4,
.dreem-webinar-detail-about-text h5,
.dreem-webinar-detail-about-text h6 {
  font-size: 15px;
}
.dreem-webinar-detail-about-text a {
  color: var(--dreem-app-color-accent);
  text-decoration: none;
  transition: var(--dreem-app-transition);
}
.dreem-webinar-detail-about-text a:hover {
  text-decoration: underline;
}
.dreem-webinar-detail-about-text p {
  font-size: 19px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 300;
  min-height: 24px;
  margin-bottom: 10px;
}
.dreem-webinar-detail-about-text ul,
.dreem-webinar-detail-about-text ol {
  margin: 10px 0 20px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dreem-webinar-detail-about-text li {
  padding-left: 32px;
  font-size: 19px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  position: relative;
}
.dreem-webinar-detail-about-text li::before {
  content: "";
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%2340c47a' stroke-width='1.25'/%3E%3Cpath d='M6 10.5l2.8 2.8 5.2-5.6' stroke='%2340c47a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.dreem-webinar-detail-about-title {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.15;
  color: white;
  margin: 0;
  letter-spacing: -0.8px;
}
.dreem-webinar-detail-about-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dreem-webinar-detail-about-description p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  font-weight: 300;
}
.dreem-webinar-detail-about-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: white;
  margin: 16px 0 0;
  line-height: 1.3;
}
.dreem-webinar-detail-learn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dreem-webinar-detail-learn-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dreem-webinar-detail-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.dreem-webinar-detail-learn-list li span {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}
.dreem-webinar-detail-speakers {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: calc(var(--dreem-landing-max-width));
  margin: 100px 0;
  max-width: calc(var(--dreem-landing-max-width) + var(--dreem-landing-padding) * 2);
  padding: 0 var(--dreem-landing-padding);
  --avatar-size: 250px;
}
@media screen and (max-width: 1600px) {
  .dreem-webinar-detail-speakers {
    --avatar-direction: column;
    --speakers-padding: 40px;
    --avatar-size: 200px;
    --speakers-mt: 0px;
    --speakers-title-mt: 40px;
    --speakers-title-size: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .dreem-webinar-detail-speakers {
    --avatar-direction: column;
    --speakers-padding: 30px;
    --avatar-size: 170px;
    --speakers-mt: 0px;
    --speakers-title-mt: 40px;
    --speakers-title-size: 40px;
  }
}
@media screen and (max-width: 800px) {
  .dreem-webinar-detail-speakers {
    --avatar-direction: column;
    --avatar-item-direction: row;
    --speakers-padding: 30px;
    --avatar-size: 120px;
    --speakers-mt: 0px;
    --speakers-title-mt: 40px;
    --speakers-title-size: 40px;
    --info-width: auto;
    --avatar-item-width: 100%;
    --avatar-info-align: flex-start;
    --avatar-text-align: left;
  }
}
.dreem-webinar-detail-speakers-title {
  font-size: var(--speakers-title-size, 60px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  margin-top: var(--speakers-title-mt, calc(var(--avatar-size) / 2 + var(--speakers-padding, 80px)));
}
.dreem-webinar-detail-speakers-wrapper {
  display: flex;
  flex-direction: var(--avatar-direction, row);
  align-items: var(--avatar-info-align, center);
  position: relative;
  width: fit-content;
  padding: 0 var(--speakers-padding, 80px) var(--speakers-padding, 80px) var(--speakers-padding, 80px);
  gap: var(--speakers-padding, 80px);
}
.dreem-webinar-detail-speakers-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - var(--speakers-mt, calc(var(--avatar-size) / 2)));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  margin-top: var(--speakers-mt, calc(var(--avatar-size) / 2));
}
.dreem-webinar-detail-speakers-list {
  display: flex;
  justify-content: center;
  gap: var(--speakers-padding, 80px);
  flex-wrap: wrap;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.dreem-webinar-detail-speakers-item {
  display: flex;
  align-items: center;
  flex-direction: var(--avatar-item-direction, column);
  gap: 30px;
  width: var(--avatar-item-width, auto);
}
.dreem-webinar-detail-speakers-item-avatar {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.dreem-webinar-detail-speakers-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
}
.dreem-webinar-detail-speakers-item-info {
  display: flex;
  flex-direction: column;
  align-items: var(--avatar-info-align, center);
  gap: 8px;
  width: var(--info-width, var(--avatar-size, 250px));
  text-align: var(--avatar-text-align, center);
}
.dreem-webinar-detail-speakers-item-name {
  font-size: 22px;
  font-weight: 500;
}
.dreem-webinar-detail-speakers-item-role {
  font-size: 16px;
  opacity: 0.5;
  font-weight: 400;
}
.dreem-webinar-detail-speakers-item-company {
  font-size: 16px;
  font-weight: 500;
}

/* Badge inline variant */
.dreem-webinar-badge.solid-inline {
  background-color: var(--dreem-app-color-accent);
  color: white;
  border: none;
  position: static;
}

/* Past webinar variant toggles */
[data-webinar-type=past] .dreem-webinar-detail-countdown-badge {
  display: none;
}
[data-webinar-type=past] .dreem-webinar-detail-form {
  display: none;
}
[data-webinar-type=past] .dreem-webinar-detail-video {
  display: flex !important;
}

[data-webinar-type=upcoming] .dreem-webinar-detail-form {
  display: flex;
}
[data-webinar-type=upcoming] .dreem-webinar-detail-video {
  display: none;
}

/* ========================================
   Responsive
   ======================================== */
@media screen and (max-width: 1200px) {
  .dreem-webinar-hero-content {
    flex-direction: column;
  }
  .dreem-webinar-hero-right {
    max-width: 100%;
    width: 100%;
  }
  .dreem-webinar-card {
    flex-direction: column;
  }
  .dreem-webinar-card-speakers {
    padding: 30px 50px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
  }
  .dreem-webinar-speaker {
    min-width: 140px;
  }
  .dreem-webinar-speaker-info {
    width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .dreem-webinar-hero {
    padding: 60px var(--dreem-landing-padding) 40px;
  }
  .dreem-webinar-hero-title {
    font-size: var(--dreem-landing-hero-title-size);
  }
  .dreem-webinar-hero-description {
    font-size: 18px;
  }
  .dreem-webinar-past-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .dreem-webinar-past-title {
    font-size: var(--dreem-landing-section-title-size);
  }
  .dreem-webinar-search {
    width: 100%;
  }
  .dreem-webinar-card-content {
    padding: 30px;
  }
  .dreem-webinar-card-title {
    font-size: 24px;
    line-height: 30px;
  }
  .dreem-webinar-card-description {
    font-size: 16px;
  }
  .dreem-webinar-card-speakers {
    padding: 20px 30px;
  }
  .dreem-webinar-speaker {
    min-width: 120px;
  }
  .dreem-webinar-speaker-avatar {
    width: 120px;
    height: 120px;
  }
  .dreem-webinar-speaker-info {
    width: 120px;
  }
}
@media screen and (max-width: 480px) {
  .dreem-webinar-card-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .dreem-webinar-speaker {
    min-width: 100px;
  }
  .dreem-webinar-speaker-avatar {
    width: 90px;
    height: 90px;
  }
  .dreem-webinar-speaker-info {
    font-size: 12px;
    width: 90px;
  }
}
/* ========================================
   Detail Page Responsive
   ======================================== */
@media screen and (max-width: 1200px) {
  .dreem-webinar-detail-hero-content {
    flex-direction: column;
  }
  .dreem-webinar-detail-hero-right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .dreem-webinar-detail-about-content {
    flex-direction: column;
  }
  .dreem-webinar-detail-about-media {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16/9;
  }
  .dreem-webinar-detail-speakers-avatars {
    gap: 24px;
  }
  .dreem-webinar-speaker--large {
    min-width: 160px;
  }
  .dreem-webinar-speaker--large .dreem-webinar-speaker-avatar--large {
    width: 200px;
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .dreem-webinar-detail-hero {
    padding: 80px var(--dreem-landing-padding) 40px;
  }
  .dreem-webinar-detail-hero-title {
    font-size: 36px;
  }
  .dreem-webinar-detail-countdown-badge {
    flex-wrap: wrap;
    gap: 8px;
  }
  .dreem-webinar-detail-about {
    padding: 20px var(--dreem-landing-padding) 50px;
  }
  .dreem-webinar-detail-about-title {
    font-size: 28px;
  }
  .dreem-webinar-detail-speakers-avatars {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .dreem-webinar-speaker--large {
    min-width: 130px;
  }
  .dreem-webinar-speaker--large .dreem-webinar-speaker-avatar--large {
    width: 150px;
    height: 150px;
  }
  .dreem-webinar-speaker--large .dreem-webinar-speaker-info--large {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .dreem-webinar-detail-hero-title {
    font-size: 28px;
  }
  .dreem-webinar-detail-form {
    padding: 28px 20px;
  }
  .dreem-webinar-detail-form-title {
    font-size: 22px;
  }
  .dreem-webinar-detail-about-title {
    font-size: 24px;
  }
  .dreem-webinar-detail-about-subtitle {
    font-size: 18px;
  }
  .dreem-webinar-detail-speakers-avatars {
    gap: 12px;
  }
  .dreem-webinar-speaker--large {
    min-width: 100px;
  }
  .dreem-webinar-speaker--large .dreem-webinar-speaker-avatar--large {
    width: 110px;
    height: 110px;
  }
  .dreem-webinar-speaker--large .dreem-webinar-speaker-info--large {
    font-size: 12px;
  }
}