/* Dreams — thème premium (minuit & or) */

:root {
  --dreams-bg: #040814;
  --dreams-bg-elevated: #0a1224;
  --dreams-surface: rgba(255, 255, 255, 0.055);
  --dreams-surface-2: rgba(255, 255, 255, 0.1);
  --dreams-border: rgba(56, 189, 248, 0.16);
  --dreams-border-strong: rgba(34, 211, 238, 0.42);
  --dreams-gold: #f59e0b;
  --dreams-gold-bright: #fbbf24;
  --dreams-gold-dim: #d97706;
  --dreams-bronze: #b87333;
  --dreams-bronze-bright: #cd7f32;
  --dreams-bronze-dim: #7a4a24;
  --dreams-silver-metallic: #c0c0c0;
  --dreams-silver-bright: #e8e8ee;
  --dreams-silver-dim: #8b939e;
  --dreams-text: #ecfeff;
  --dreams-text-muted: #94a3b8;
  --dreams-text-dark: #050c14;
  --dreams-card-inner: #f8fafc;
  --dreams-accent: #22d3ee;
  --dreams-accent-violet: #a78bfa;
  --dreams-accent-mint: #34d399;
  --font-sans: "Plus Jakarta Sans", "Outfit", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 4px 28px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 24px 56px rgba(2, 12, 27, 0.55), 0 0 0 1px rgba(34, 211, 238, 0.12);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --dreams-charm-glow: 0 0 42px rgba(34, 211, 238, 0.18), 0 0 64px rgba(245, 158, 11, 0.12);
  --dreams-sheen: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  --dreams-field-radius: 12px;
  --dreams-field-radius-sm: 10px;
  --dreams-label-size: 0.8125rem;
}

html {
  font-size: 15px;
  position: relative;
  min-height: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body.dreams-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--dreams-text-dark);
  background: var(--dreams-bg);
  -webkit-font-smoothing: antialiased;
}

body.dreams-body.theme-dark-luxury {
  --dreams-bg: #030712;
  --dreams-card-inner: #f8fafc;
  background:
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(34, 211, 238, 0.08), transparent 42%),
    radial-gradient(ellipse 80% 60% at 100% 30%, rgba(245, 158, 11, 0.06), transparent 45%),
    var(--dreams-bg);
}

body.dreams-body.theme-light-luxury {
  --dreams-bg: #eef3f9;
  --dreams-card-inner: #ffffff;
  background:
    radial-gradient(ellipse 120% 90% at 85% -15%, rgba(245, 158, 11, 0.11), transparent 52%),
    radial-gradient(ellipse 90% 70% at 5% 45%, rgba(34, 211, 238, 0.09), transparent 48%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(167, 139, 250, 0.06), transparent 55%),
    var(--dreams-bg);
}

body.dreams-body.theme-light-luxury .dreams-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(241, 245, 249, 0.96) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

body.dreams-body.theme-light-luxury .dreams-brand__name {
  background: linear-gradient(135deg, #0f172a 0%, #b45309 48%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.dreams-body.theme-light-luxury .dreams-brand__tagline {
  color: rgba(51, 65, 85, 0.75);
}

body.dreams-body.theme-light-luxury .dreams-nav-offcanvas .dreams-nav__links .nav-link {
  color: rgba(248, 250, 252, 0.96) !important;
}

body.dreams-body.theme-light-luxury .dreams-nav-offcanvas .dreams-nav__links .nav-link:hover,
body.dreams-body.theme-light-luxury .dreams-nav-offcanvas .dreams-nav__links .nav-link:focus {
  color: #fff !important;
  background: rgba(251, 191, 36, 0.12);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.25);
}

.dreams-preloader {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: radial-gradient(circle at 50% 25%, rgba(245, 158, 11, 0.18), rgba(7, 10, 16, 0.98) 55%);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.dreams-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.dreams-preloader__ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--dreams-gold-bright);
  animation: dreamsLoaderSpin 0.9s linear infinite;
}

.dreams-preloader__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 0 22px rgba(245, 158, 11, 0.36);
}

@keyframes dreamsLoaderSpin {
  to { transform: rotate(360deg); }
}

.dreams-scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0%;
  z-index: 1600;
  background: linear-gradient(90deg, var(--dreams-gold-bright), #38bdf8, #a78bfa);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.45);
}

/* Fond atmosphérique */
.dreams-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.dreams-bg__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.dreams-bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.dreams-bg__orb--1 {
  width: 55vw;
  height: 55vw;
  max-width: 720px;
  max-height: 720px;
  top: -18%;
  right: -10%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
  animation: dreamsOrbFloatA 18s ease-in-out infinite;
}

.dreams-bg__orb--2 {
  width: 40vw;
  height: 40vw;
  max-width: 520px;
  bottom: -15%;
  left: -8%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.32) 0%, transparent 70%);
  animation: dreamsOrbFloatB 22s ease-in-out infinite;
}

.dreams-bg__orb--3 {
  width: 30vw;
  height: 30vw;
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.22) 0%, transparent 70%);
  animation: dreamsOrbFloatC 20s ease-in-out infinite;
}

@keyframes dreamsOrbFloatA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-20px, 26px, 0); }
}

@keyframes dreamsOrbFloatB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(22px, -18px, 0); }
}

@keyframes dreamsOrbFloatC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-14px, -20px, 0); }
}

.dreams-bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 100%);
}

/* Header */
.dreams-header {
  position: relative;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.92) 0%, rgba(7, 10, 16, 0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dreams-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.dreams-header.is-scrolled {
  background: linear-gradient(180deg, rgba(8, 11, 18, 0.97) 0%, rgba(7, 10, 16, 0.95) 100%);
  border-bottom-color: rgba(245, 158, 11, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.dreams-nav {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.dreams-nav__inner {
  max-width: 1240px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  justify-content: space-between;
}

.dreams-nav__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 0.6rem;
  margin-inline-start: auto;
  flex: 1 1 auto;
  min-width: 0;
}

.dreams-nav__actions--bar {
  flex-direction: row !important;
  margin-bottom: 0 !important;
  gap: 0.35rem 0.5rem !important;
}

.dreams-nav__actions--bar .nav-item {
  margin-bottom: 0;
}

/* Mobile / étroit : connexion + inscription, ou pseudo + déconnexion, sur une seule ligne */
.dreams-nav__account-inline-wrap {
  flex-shrink: 0;
}

.dreams-nav__account-inline {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
}

.dreams-nav__account-inline .dreams-user-pill {
  min-width: 0;
}

.dreams-nav__logout-form {
  flex-shrink: 0;
}

.dreams-nav__account-inline .btn {
  white-space: nowrap;
}

.dreams-nav-offcanvas {
  --bs-offcanvas-width: min(360px, 92vw);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(245, 158, 11, 0.14) 0%, transparent 55%),
    radial-gradient(90% 60% at 100% 20%, rgba(34, 211, 238, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #070b14 0%, #050810 55%, #03060d 100%);
  color: #f8fafc;
  border-right: 1px solid rgba(251, 191, 36, 0.35);
  box-shadow: 12px 0 40px rgba(0, 0, 0, 0.45);
  width: min(360px, 92vw) !important;
  max-width: 92vw;
  min-width: 300px;
  height: 100dvh;
  z-index: 1205;
}

.dreams-nav-offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.dreams-nav-offcanvas.show {
  transform: translateX(0);
}

.dreams-nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(251, 191, 36, 0.2);
  background: rgba(0, 0, 0, 0.25);
}

.dreams-nav-offcanvas .offcanvas-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: linear-gradient(90deg, #fde68a, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dreams-nav-offcanvas .offcanvas-body {
  overflow-y: auto;
  padding: 0.9rem;
}

.dreams-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.dreams-brand--logo-lockup {
  gap: 0;
  padding: 0.1rem 0;
  margin-right: 0.35rem;
  background: transparent !important;
}

.dreams-brand__img {
  display: block;
  height: clamp(3.35rem, 7.5vw, 4.85rem);
  width: auto;
  max-width: min(520px, 72vw);
  object-fit: contain;
  background: transparent !important;
}

@media (min-width: 768px) {
  .dreams-brand__img {
    height: clamp(3.65rem, 6.2vw, 5.15rem);
    max-width: min(560px, 55vw);
  }
}

@media (min-width: 1200px) {
  .dreams-brand__img {
    max-width: min(620px, 48vw);
  }
}

body.dreams-body.theme-light-luxury .dreams-brand__img {
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.12));
}

.dreams-brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #22d3ee 0%, var(--dreams-gold-bright) 55%, var(--dreams-gold-dim) 100%);
  box-shadow:
    0 4px 20px rgba(34, 211, 238, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  position: relative;
}

.dreams-brand__mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent);
}

.dreams-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.dreams-brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #fff 0%, var(--dreams-gold-bright) 55%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dreams-brand__tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}

.dreams-nav__links .nav-link {
  color: rgba(248, 250, 252, 0.95) !important;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.7rem !important;
  border-radius: 10px;
  transition: color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.dreams-nav__links .nav-link::after {
  content: "";
  position: absolute;
  left: 0.6rem;
  right: 0.6rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dreams-gold-bright), #38bdf8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.dreams-nav__links .nav-link:hover,
.dreams-nav__links .nav-link:focus {
  color: #fff !important;
  background: rgba(251, 191, 36, 0.12);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.25);
}

.dreams-nav__links .nav-link:hover::after,
.dreams-nav__links .nav-link:focus::after,
.dreams-nav__links .dreams-nav-link--active::after {
  transform: scaleX(1);
}

.dreams-nav__links .dreams-nav-link--active {
  color: #fff !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(251, 191, 36, 0.12));
  border: 1px solid rgba(251, 191, 36, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 20px rgba(245, 158, 11, 0.18);
}

.dreams-nav__links .nav-link-admin {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(245, 158, 11, 0.07));
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #f6dca0 !important;
}

.dreams-nav__links .nav-link-admin:hover {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(245, 158, 11, 0.12));
}

.dreams-nav__actions {
  gap: 0.5rem;
}

.dreams-sidebar-sections {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dreams-sidebar-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  padding: 0.65rem 0.7rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.dreams-sidebar-profile__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.95rem;
}

.dreams-sidebar-profile__name {
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.dreams-sidebar-profile__email {
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.88);
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dreams-sidebar-profile__meta {
  font-size: 0.72rem;
  color: rgba(226, 232, 240, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dreams-sidebar-profile__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}

.dreams-sidebar-section {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.12);
  border-radius: 0.85rem;
  padding: 0.55rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.dreams-sidebar-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(253, 224, 71, 0.88);
  margin: 0.1rem 0.35rem 0.45rem;
  font-weight: 700;
}

.dreams-nav-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.55rem;
  background: linear-gradient(135deg, var(--dreams-gold-bright), var(--dreams-accent));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}

.dreams-nav-bi {
  font-size: 1.12rem;
  margin-right: 0.6rem;
  color: #fde047;
  opacity: 1;
  vertical-align: -0.12em;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.35));
  transition: color var(--transition), transform var(--transition), filter var(--transition);
}

.dreams-nav__links .nav-link:hover .dreams-nav-bi,
.dreams-nav__links .dreams-nav-link--active .dreams-nav-bi {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.55));
  transform: scale(1.08);
}

.dreams-theme-toggle-icon .bi {
  font-size: 1.1rem;
  line-height: 1;
  vertical-align: middle;
}

.dreams-nav-menu-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.22), rgba(15, 23, 42, 0.55));
  color: #fef3c7;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 6px 18px rgba(245, 158, 11, 0.2);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.dreams-nav-menu-btn:hover {
  color: #fff;
  border-color: rgba(34, 211, 238, 0.55);
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.25), rgba(245, 158, 11, 0.28));
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.25),
    0 8px 22px rgba(34, 211, 238, 0.22);
  transform: translateY(-1px);
}

.dreams-nav-menu-btn:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 2px;
}

.dreams-nav-menu-btn__icon {
  font-size: 1.65rem;
  line-height: 1;
}

body.dreams-body.theme-light-luxury .dreams-nav-menu-btn {
  border-color: rgba(15, 23, 42, 0.15);
  background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
  color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12);
}

body.dreams-body.theme-light-luxury .dreams-nav-menu-btn:hover {
  color: #0f172a;
  border-color: rgba(245, 158, 11, 0.55);
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.22);
}

body.dreams-body.theme-light-luxury .dreams-header .btn-dreams-ghost {
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

body.dreams-body.theme-light-luxury .dreams-header .btn-dreams-ghost:hover {
  color: #0f172a !important;
  background: rgba(254, 243, 199, 0.95);
  border-color: rgba(245, 158, 11, 0.35);
}

body.dreams-body.theme-light-luxury .dreams-header .dreams-user-pill {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 23, 42, 0.1);
}

.dreams-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dreams-user-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dreams-gold-bright);
  box-shadow: 0 0 8px var(--dreams-gold);
  flex-shrink: 0;
}

.dreams-notify-link {
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.35rem 0.5rem !important;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}

.dreams-notify-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

.dreams-notify-link__icon {
  display: block;
  opacity: 0.95;
}

.dreams-notify-badge {
  font-size: 0.65rem;
  min-width: 1.1rem;
  padding: 0.2em 0.45em;
  background: linear-gradient(135deg, #c2410c, #ea580c) !important;
  border: 2px solid rgba(7, 10, 16, 0.95);
  font-weight: 700;
}

/* Boutons thème */
.btn-dreams-gold {
  --bs-btn-color: #0a0e17;
  --bs-btn-bg: linear-gradient(135deg, var(--dreams-gold-bright) 0%, var(--dreams-gold) 100%);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: #f0d48a;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 245, 158, 11;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  border: none;
  background: linear-gradient(135deg, var(--dreams-gold-bright) 0%, #c99a4a 100%);
  color: #0a0e17 !important;
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-dreams-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.45);
  color: #0a0e17 !important;
}

.btn-dreams-ghost {
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  font-weight: 500;
  padding: 0.45rem 1rem;
  transition: background var(--transition), border-color var(--transition);
}

.btn-dreams-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

/* Contenu principal */
.dreams-main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  padding-top: 0.35rem;
}

.dreams-main__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 211, 238, 0.55) 18%,
    var(--dreams-gold-bright) 50%,
    rgba(167, 139, 250, 0.45) 82%,
    transparent 100%
  );
  opacity: 0.75;
}

.dreams-shell {
  padding: 2.35rem 0 3.75rem;
  max-width: 1220px;
}

.dreams-page-frame {
  position: relative;
  padding: clamp(0.35rem, 1.8vw, 0.85rem);
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.14) 0%, rgba(245, 158, 11, 0.1) 45%, rgba(167, 139, 250, 0.08) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 28px 70px rgba(2, 8, 20, 0.35);
}

body.dreams-body.theme-light-luxury .dreams-page-frame {
  background: linear-gradient(135deg, rgba(14, 116, 144, 0.1) 0%, rgba(245, 158, 11, 0.08) 50%, rgba(255, 255, 255, 0.5) 100%);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.06) inset,
    0 20px 50px rgba(15, 23, 42, 0.08);
}

.dreams-card.dreams-card--surface {
  margin: 0;
  position: relative;
  z-index: 1;
}

.dreams-card {
  position: relative;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.995) 0%, rgba(248, 250, 252, 0.96) 45%, rgba(255, 255, 255, 0.99) 100%),
    var(--dreams-card-inner);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(34, 211, 238, 0.14);
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 36px 72px rgba(15, 23, 42, 0.14),
    var(--dreams-charm-glow);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
  animation: pageEnter 520ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.dreams-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dreams-gold-bright), var(--dreams-accent), transparent);
  opacity: 0.95;
}

.dreams-card::after {
  content: "";
  position: absolute;
  inset: -20% -15%;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(245, 158, 11, 0.17), transparent 38%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.dreams-card.is-spotlit::after {
  opacity: 1;
}

body.dreams-body.is-page-leaving .dreams-card {
  animation: pageLeave 260ms ease both;
}

body.dreams-body.theme-light-luxury .dreams-card {
  border-color: rgba(15, 23, 42, 0.07);
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 40px rgba(245, 158, 11, 0.06);
}

@keyframes dreamsBadgeSheen {
  0%,
  70% {
    transform: translateX(-120%);
  }
  85% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.996);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pageLeave {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* Typographie pages */
.page-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 0.55rem;
  line-height: 1.15;
}

.page-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: #475569;
  margin-bottom: 1.85rem;
  max-width: 56ch;
  line-height: 1.62;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.38rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 1.05rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.dreams-gradient-text {
  background: linear-gradient(135deg, #0f172a, var(--dreams-gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dreams-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.95rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.28), rgba(34, 211, 238, 0.16));
  border: 1px solid rgba(245, 158, 11, 0.42);
  color: #92400e;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.15);
}

.dreams-badge-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dreams-sheen);
  transform: translateX(-100%);
  opacity: 0.5;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .dreams-badge-pill::after {
    animation: dreamsBadgeSheen 7s ease-in-out infinite;
  }
}

/* Footer */
.dreams-footer {
  position: relative;
  z-index: 100;
  margin-top: auto;
  border-top: none;
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.92) 0%, rgba(4, 7, 14, 0.96) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.dreams-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.65), var(--dreams-gold-bright), rgba(245, 158, 11, 0.8), transparent);
  opacity: 0.95;
}

.dreams-footer > .container {
  position: relative;
  z-index: 1;
}

.dreams-footer__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #fff, var(--dreams-gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dreams-footer__copy {
  color: rgba(255, 255, 255, 0.4);
}

.dreams-footer__link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.dreams-footer__link:hover {
  color: var(--dreams-gold-bright);
}

.dreams-footer__tagline {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  max-width: 36ch;
}

.dreams-footer__col-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(253, 224, 71, 0.88);
  margin-bottom: 0.65rem;
}

.dreams-footer__list li {
  margin-bottom: 0.4rem;
}

.dreams-footer__list li:last-child {
  margin-bottom: 0;
}

.dreams-footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.dreams-footer__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.88);
}

.dreams-footer__trust-item .bi {
  color: #fde047;
  font-size: 1rem;
}

.dreams-footer__fineprint {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.38) !important;
}

body.dreams-body.theme-light-luxury .dreams-footer__trust {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(15, 23, 42, 0.08);
}

body.dreams-body.theme-light-luxury .dreams-footer__trust-item {
  color: #334155;
}

body.dreams-body.theme-light-luxury .dreams-footer__trust-item .bi {
  color: #0e7490;
}

body.dreams-body.theme-light-luxury .dreams-footer__tagline {
  color: rgba(51, 65, 85, 0.75);
}

body.dreams-body.theme-light-luxury .dreams-footer__fineprint {
  border-top-color: rgba(15, 23, 42, 0.08);
  color: rgba(51, 65, 85, 0.55) !important;
}

body.dreams-body.theme-light-luxury .dreams-footer__col-title {
  color: #b45309;
}

/* ========== Formulaires & labels — tout le site ========== */
body.dreams-body .form-label,
body.dreams-body label.col-form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: var(--dreams-label-size);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

body.dreams-body .form-label::before,
body.dreams-body label.col-form-label::before {
  content: "";
  width: 4px;
  min-height: 0.95em;
  border-radius: 99px;
  background: linear-gradient(180deg, var(--dreams-accent) 0%, var(--dreams-gold-bright) 100%);
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.35);
  flex-shrink: 0;
}

body.dreams-body .form-label.visually-hidden,
body.dreams-body .form-label.visually-hidden::before,
body.dreams-body label.visually-hidden::before {
  display: none !important;
}

body.dreams-body .form-check {
  padding: 0.65rem 0.85rem;
  border-radius: var(--dreams-field-radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.88));
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.dreams-body .form-check:hover {
  border-color: rgba(14, 116, 144, 0.22);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

body.dreams-body .form-check-label {
  display: inline;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #334155;
}

body.dreams-body .form-check-label::before {
  display: none !important;
}

body.dreams-body .form-check-input {
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.15em;
  border: 2px solid rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

body.dreams-body .form-check-input:checked {
  background-color: #0e7490;
  border-color: #0e7490;
}

body.dreams-body .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.28);
}

body.dreams-body .form-switch.form-check {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

body.dreams-body .form-switch.form-check:hover {
  border: none;
  box-shadow: none;
}

body.dreams-body .form-control,
body.dreams-body .form-select,
body.dreams-body textarea.form-control {
  background-color: #fff;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--dreams-field-radius);
  color: #0f172a;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.22s ease, background 0.2s ease;
}

body.dreams-body textarea.form-control {
  min-height: 6.5rem;
  resize: vertical;
}

body.dreams-body .form-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
  opacity: 1;
}

body.dreams-body .form-control:hover:not(:disabled):not([readonly]),
body.dreams-body .form-select:hover:not(:disabled) {
  border-color: rgba(14, 116, 144, 0.35);
}

body.dreams-body .form-control:focus,
body.dreams-body .form-select:focus {
  border-color: #06b6d4;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.22), 0 10px 28px rgba(14, 116, 144, 0.1);
  background-image: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

body.dreams-body .form-select {
  cursor: pointer;
  font-weight: 500;
}

body.dreams-body .form-control:disabled,
body.dreams-body .form-select:disabled,
body.dreams-body .form-control[readonly] {
  opacity: 0.78;
  background: #f1f5f9;
  background-image: none;
  cursor: not-allowed;
  border-style: dashed;
}

body.dreams-body .input-group-text {
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: #0e7490;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--dreams-field-radius);
}

body.dreams-body .input-group > .form-control,
body.dreams-body .input-group > .form-select {
  border-radius: 0 var(--dreams-field-radius) var(--dreams-field-radius) 0;
}

body.dreams-body .input-group > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}

body.dreams-body .input-group > :not(:first-child) {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
  margin-inline-start: -1.5px;
}

body.dreams-body .form-text,
body.dreams-body .form-text.text-muted {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748b !important;
  margin-top: 0.4rem;
  padding: 0.35rem 0 0.35rem 0.65rem;
  border-inline-start: 3px solid rgba(14, 116, 144, 0.35);
  line-height: 1.45;
}

body.dreams-body span.text-danger,
body.dreams-body .invalid-feedback {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #b91c1c !important;
  margin-top: 0.4rem;
}

body.dreams-body div.text-danger {
  padding: 0.75rem 1rem;
  border-radius: var(--dreams-field-radius-sm);
  background: linear-gradient(135deg, rgba(254, 226, 226, 0.95), rgba(254, 242, 242, 0.98));
  border: 1px solid rgba(248, 113, 113, 0.45);
  border-inline-start: 4px solid #dc2626;
  font-size: 0.85rem;
  font-weight: 600;
  color: #991b1b !important;
  margin-bottom: 0.75rem;
}

body.dreams-body div.text-danger ul {
  margin: 0.35rem 0 0;
  padding-inline-start: 1.15rem;
}

.btn-primary {
  border-radius: 999px;
  padding: 0.58rem 1.55rem;
  font-weight: 600;
  border: none;
  background: linear-gradient(135deg, #0e7490 0%, #0f172a 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #155e75 0%, #1e293b 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.35);
}

.btn-outline-primary {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.52rem 1.4rem;
  border-width: 2px;
  border-color: #0e7490;
  color: #0e7490;
}

.btn-outline-primary:hover {
  background: #0e7490;
  border-color: #0e7490;
  color: #fff;
}

.btn-outline-secondary {
  border-radius: 999px;
  font-weight: 500;
}

.text-muted {
  color: #64748b !important;
}

a {
  color: #1e4976;
  font-weight: 500;
}

a:hover {
  color: var(--dreams-gold-dim);
}

/* Tables */
.table {
  color: #0f172a;
  --bs-table-bg: transparent;
}

.table thead {
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 8px;
}

.table thead th {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
  border: none;
  padding: 0.85rem 1rem;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(248, 250, 252, 0.8);
}

.table-striped > tbody > tr:nth-of-type(even) > * {
  background-color: #fff;
}

/* Alertes */
.alert {
  border-radius: 12px;
  border: none;
  border-left: 4px solid;
}

.alert-info {
  background: linear-gradient(90deg, #e0f2fe 0%, #f0f9ff 100%);
  border-left-color: #0284c7;
  color: #0c4a6e;
}

.alert-warning {
  background: linear-gradient(90deg, #fef3c7 0%, #fffbeb 100%);
  border-left-color: #d97706;
  color: #78350f;
}

.alert-success {
  background: linear-gradient(90deg, #dcfce7 0%, #f0fdf4 100%);
  border-left-color: #16a34a;
  color: #14532d;
}

.alert-danger {
  background: linear-gradient(90deg, #fee2e2 0%, #fef2f2 100%);
  border-left-color: #dc2626;
  color: #7f1d1d;
}

/* Stat cards */
.stat-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 1.05rem;
  padding: 1.2rem 1.35rem 1.35rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition: transform 0.28s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dreams-accent), var(--dreams-gold-bright), var(--dreams-accent-violet));
  opacity: 0.9;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.28);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12), 0 0 32px rgba(245, 158, 11, 0.1);
}

.stat-card__top {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.stat-card__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  flex-shrink: 0;
  font-size: 1.15rem;
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.2), rgba(245, 158, 11, 0.15));
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: #0e7490;
}

.stat-card__icon .bi {
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.stat-card__body {
  min-width: 0;
  flex: 1;
}

.stat-card .stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 0.4rem;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Progress visionnage */
.progress-wrapper {
  margin: 1rem 0 1.5rem;
}

.progress-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.5rem;
}

.progress-bar-pro {
  height: 12px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-pro .fill {
  height: 100%;
  background: linear-gradient(90deg, #0e7490, var(--dreams-gold-bright) 90%, #fde68a);
  border-radius: 999px;
  transition: width 0.3s ease;
}

.task-status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.task-status-badge.in-progress {
  background: #dbeafe;
  color: #1d4ed8;
}

.task-status-badge.completed {
  background: #dcfce7;
  color: #166534;
}

.task-status-badge.rest-day {
  background: #f1f5f9;
  color: #475569;
}

/* Page d’accueil hero */
.dreams-hero {
  position: relative;
  padding: 0.5rem 0 1rem;
}

.dreams-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 1.25rem;
  align-items: center;
}

.dreams-hero__intro {
  min-width: 0;
  max-width: 46ch;
}

.dreams-hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
}

.dreams-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 1rem;
  max-width: 18ch;
  background: linear-gradient(135deg, #0f172a 0%, #0e7490 38%, #b45309 72%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(34, 211, 238, 0.12));
}

.dreams-hero__lead {
  font-size: 1.06rem;
  color: #475569;
  max-width: 38ch;
  line-height: 1.68;
  margin-bottom: 1.75rem;
}

.dreams-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.dreams-hero__visual {
  position: relative;
  margin: 0;
  width: min(100%, 680px);
  justify-self: end;
  align-self: start;
  margin-top: -0.35rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
  animation: heroBitcoinFloat 6.8s ease-in-out infinite;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 320ms ease;
}

.dreams-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(245, 158, 11, 0.26), transparent 45%, rgba(34, 211, 238, 0.2));
  z-index: 1;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.dreams-hero__visual img {
  width: 100%;
  aspect-ratio: 15 / 8;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 320ms ease;
}

.dreams-hero__visual-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  z-index: 2;
  animation: heroBitcoinSpin 14s linear infinite;
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.dreams-hero__visual-ring--inner {
  inset: 24%;
  border-color: rgba(34, 211, 238, 0.52);
  animation-duration: 9s;
  animation-direction: reverse;
}

.dreams-hero__visual::after {
  content: "";
  position: absolute;
  inset: -18% -35%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.34), transparent 60%);
  transform: translate3d(-55%, 10%, 0);
  z-index: 3;
  pointer-events: none;
  opacity: 0.45;
  transition: transform 380ms ease, opacity 320ms ease;
}

.dreams-hero__visual:hover {
  transform: perspective(1100px) rotateX(5.5deg) rotateY(-6.5deg) translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.24), 0 0 0 1px rgba(245, 158, 11, 0.24);
}

.dreams-hero__visual:hover::before {
  opacity: 0.82;
}

.dreams-hero__visual:hover::after {
  transform: translate3d(35%, -12%, 0);
  opacity: 0.75;
}

.dreams-hero__visual:hover img {
  transform: scale(1.065);
  filter: saturate(1.08) contrast(1.05);
}

.dreams-hero__visual:hover .dreams-hero__visual-ring {
  opacity: 0.95;
  transform: scale(1.05);
}

.dreams-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.dreams-metric-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.88) 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  transition: transform 0.26s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.26s ease, border-color 0.26s ease;
  position: relative;
  overflow: hidden;
}

.dreams-metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dreams-accent), var(--dreams-gold-bright));
  opacity: 0.85;
}

.dreams-metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.38);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1), 0 0 24px rgba(245, 158, 11, 0.12);
}

.dreams-metric-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.dreams-metric-card__bi {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.2), rgba(34, 211, 238, 0.14));
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #0e7490;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dreams-metric-card__bi .bi {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.dreams-metric-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #0f172a;
  text-align: end;
  flex: 1;
  min-width: 0;
}

.dreams-metric-card__label {
  margin: 0;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
  padding-top: 0.15rem;
}

.dreams-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.dreams-feature-tile {
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), #f8fafc);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.dreams-feature-tile:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.dreams-feature-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(245, 158, 11, 0.32), rgba(14, 116, 144, 0.18));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-size: 1.28rem;
  color: #0f172a;
  border: 1px solid rgba(245, 158, 11, 0.35);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.15);
}

.dreams-feature-tile__icon .bi {
  color: #0e7490;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.4));
}

.dreams-feature-tile h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}

.dreams-feature-tile p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.dreams-invest-showcase {
  margin-top: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.2rem;
  padding: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), #f8fafc);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.dreams-invest-showcase__media {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  perspective: 1100px;
}

.dreams-invest-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  min-height: 220px;
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease;
  animation: investFloat 6s ease-in-out infinite;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.dreams-invest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(245, 158, 11, 0.32), rgba(15, 23, 42, 0.05) 50%, transparent);
  z-index: 1;
  pointer-events: none;
}

.dreams-invest-card::after {
  content: "";
  position: absolute;
  inset: -20% -30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 55%);
  transform: translateX(-55%);
  animation: investShine 5s linear infinite;
  z-index: 2;
  pointer-events: none;
}

.dreams-invest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dreams-invest-card--two {
  animation-delay: 0.8s;
}

.dreams-location {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.25fr);
  gap: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.2rem;
  padding: 1.15rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.97), #f8fafc);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.dreams-location__content {
  display: flex;
  flex-direction: column;
}

.dreams-location__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: #475569;
  font-size: 0.9rem;
}

.dreams-location__list strong {
  color: #0f172a;
  margin-right: 0.35rem;
}

.dreams-location__map-wrap {
  position: relative;
  min-height: 320px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14);
}

.dreams-location__map-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.2), transparent 55%);
}

.dreams-location__map {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.dreams-corporate {
  margin-top: 1.4rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.2rem;
  padding: 1.2rem;
  background: linear-gradient(150deg, #ffffff, #f8fafc 72%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.dreams-corporate__head {
  margin-bottom: 0.95rem;
}

.dreams-corporate__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.dreams-corporate-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.95rem;
  padding: 1rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.82));
  position: relative;
  overflow: hidden;
}

.dreams-corporate-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.85), rgba(34, 211, 238, 0.85));
}

.dreams-corporate-card h3 {
  font-size: 0.96rem;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.dreams-corporate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.dreams-corporate-list li {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.45;
}

.dreams-corporate-list strong {
  color: #0f172a;
  margin-right: 0.35rem;
}

.dreams-corporate-list a {
  color: #0e7490;
  text-decoration: none;
}

.dreams-corporate-list a:hover {
  text-decoration: underline;
}

.dreams-trust,
.dreams-faq,
.dreams-partners {
  margin-top: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.2rem;
  padding: 1.15rem;
  background: linear-gradient(148deg, #ffffff, #f8fafc 70%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.dreams-team {
  margin-top: 1.35rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.2rem;
  padding: 1.15rem;
  background: linear-gradient(148deg, #ffffff, #f8fafc 70%);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.dreams-team__grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.dreams-team-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 0.85rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.84));
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.dreams-team-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.dreams-team-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.8rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  margin-bottom: 0.65rem;
}

.dreams-team-card h3 {
  font-size: 0.92rem;
  color: #0f172a;
  margin: 0 0 0.18rem;
}

.dreams-team-card p {
  margin: 0;
  font-size: 0.79rem;
  color: #64748b;
}

.dreams-team-card--founder {
  grid-column: span 2;
}

.dreams-team-card--founder .dreams-team-card__photo {
  aspect-ratio: 16 / 10;
}

.dreams-team-card__linkedin {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: lowercase;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.dreams-team-card__bio {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.72rem 0.82rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.9) 35%);
  color: #f8fafc;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.dreams-team-card:hover .dreams-team-card__bio {
  opacity: 1;
  transform: translateY(0);
}

.dreams-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.dreams-trust-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.82));
  transition: transform var(--transition), box-shadow var(--transition);
}

.dreams-trust-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.dreams-trust-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(34, 211, 238, 0.18));
  margin-bottom: 0.6rem;
}

.dreams-trust-card h3 {
  font-size: 0.95rem;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.dreams-trust-card p {
  margin: 0;
  font-size: 0.84rem;
  color: #64748b;
}

.dreams-faq__accordion .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.dreams-faq__accordion .accordion-button {
  background: #fff;
  color: #0f172a;
  font-weight: 600;
  box-shadow: none;
}

.dreams-faq__accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(34, 211, 238, 0.1));
  color: #0f172a;
}

.dreams-faq__accordion .accordion-body {
  color: #475569;
  font-size: 0.88rem;
}

.dreams-partners__marquee {
  overflow: hidden;
  border-radius: 0.95rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.9));
}

.dreams-sponsors-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.dreams-sponsor-card {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 0.95rem;
  padding: 0.9rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.84));
}

.dreams-sponsor-card__tier {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.58rem;
  margin-bottom: 0.55rem;
}

.dreams-sponsor-card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.92rem;
  color: #0f172a;
}

.dreams-sponsor-card p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
}

.dreams-sponsor-card--platinum .dreams-sponsor-card__tier {
  color: #1e293b;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.dreams-sponsor-card--gold .dreams-sponsor-card__tier {
  color: #6b4f10;
  background: linear-gradient(135deg, #fde68a, #fbbf24);
}

.dreams-sponsor-card--silver .dreams-sponsor-card__tier {
  color: #334155;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}

.dreams-partners__track {
  display: flex;
  gap: 0.7rem;
  width: max-content;
  padding: 0.85rem 0.7rem;
  animation: partnerMarquee 24s linear infinite;
}

.dreams-partner-pill {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  background: #fff;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes partnerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes investFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes investShine {
  0% { transform: translateX(-65%); }
  100% { transform: translateX(65%); }
}

@keyframes heroBitcoinFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes heroBitcoinSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.reveal-on-load {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  filter: blur(4px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.65, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.65, 0.2, 1), filter 0.7s ease;
}

.reveal-on-load.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.dreams-invest-showcase,
.dreams-location,
.dreams-corporate,
.dreams-team,
.dreams-trust,
.dreams-faq,
.dreams-partners {
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.dreams-invest-showcase:hover,
.dreams-location:hover,
.dreams-corporate:hover,
.dreams-team:hover,
.dreams-trust:hover,
.dreams-faq:hover,
.dreams-partners:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.dreams-hero__actions .btn,
.dreams-location .btn {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.dreams-hero__actions .btn::after,
.dreams-location .btn::after {
  content: "";
  position: absolute;
  inset: -120% auto auto -40%;
  width: 48%;
  height: 320%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.dreams-hero__actions .btn:hover::after,
.dreams-location .btn:hover::after {
  opacity: 1;
  animation: buttonShineSweep 0.9s ease;
}

@keyframes buttonShineSweep {
  from { left: -42%; }
  to { left: 128%; }
}

.dreams-feature-tile,
.dreams-corporate-card,
.dreams-trust-card,
.dreams-team-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color var(--transition);
}

.dreams-feature-tile,
.dreams-corporate-card,
.dreams-trust-card,
.dreams-team-card,
.dreams-sponsor-card {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
}

.dreams-feature-tile::after,
.dreams-corporate-card::after,
.dreams-trust-card::after,
.dreams-team-card::after,
.dreams-sponsor-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(245, 158, 11, 0.22), transparent 40%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.dreams-feature-tile.is-spotlit::after,
.dreams-corporate-card.is-spotlit::after,
.dreams-trust-card.is-spotlit::after,
.dreams-team-card.is-spotlit::after,
.dreams-sponsor-card.is-spotlit::after {
  opacity: 1;
}

/* Paiements */
.payment-card {
  height: 100%;
  border-radius: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.payment-card__icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
}

.payment-card__title {
  font-size: 1rem;
  margin: 0 0 0.3rem;
  color: #0f172a;
}

.payment-card__desc {
  font-size: 0.86rem;
  color: #64748b;
  margin: 0 0 0.8rem;
}

.payment-badge {
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 0.24rem 0.7rem;
  font-weight: 600;
}

.payment-card--active .payment-card__icon {
  background: rgba(22, 163, 74, 0.14);
  color: #166534;
}

.payment-card--active .payment-badge--active {
  background: rgba(22, 163, 74, 0.14);
  color: #166534;
}

.payment-card--soon .payment-card__icon {
  background: rgba(234, 179, 8, 0.18);
  color: #854d0e;
}

.payment-card--soon .payment-badge--soon {
  background: rgba(234, 179, 8, 0.2);
  color: #854d0e;
}

/* Centre verification compte */
.verification-center__head {
  margin-bottom: 0.9rem;
}

.verification-status-banner {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.95rem;
  display: grid;
  gap: 0.55rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.84));
}

.verification-status-banner.is-success {
  border-color: rgba(22, 163, 74, 0.35);
  background: linear-gradient(150deg, rgba(240, 253, 244, 0.95), rgba(220, 252, 231, 0.85));
}

.verification-status-banner.is-pending {
  border-color: rgba(245, 158, 11, 0.35);
}

.verification-progress__track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.verification-progress__fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0e7490 0%, var(--dreams-gold-bright) 100%);
}

.verification-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.verification-workflow {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.82));
}

.verification-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.verification-step {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.85rem;
  padding: 0.7rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.verification-step__index {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(148, 163, 184, 0.24);
  color: #334155;
  flex-shrink: 0;
}

.verification-step__content {
  display: flex;
  flex-direction: column;
}

.verification-step__content small {
  color: #64748b;
}

.verification-step.is-done {
  border-color: rgba(22, 163, 74, 0.32);
  background: linear-gradient(145deg, rgba(240, 253, 244, 0.88), rgba(220, 252, 231, 0.82));
}

.verification-step.is-done .verification-step__index {
  background: rgba(22, 163, 74, 0.2);
  color: #166534;
}

.verification-next-step {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.verification-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.82));
}

.verification-card h2 {
  font-size: 0.98rem;
  color: #0f172a;
  margin-bottom: 0.45rem;
}

.verification-mini-widget {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(14, 116, 144, 0.18);
  border-radius: 1.1rem;
  padding: 1.1rem 1.2rem;
  padding-inline-start: 1.45rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.5) 45%, rgba(254, 252, 232, 0.35) 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.verification-mini-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--dreams-accent-mint), var(--dreams-accent));
  border-radius: 4px 0 0 4px;
}

.verification-mini-widget__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 211, 238, 0.15));
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #047857;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* Accessibilité focus */
.btn:focus-visible,
.form-control:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--dreams-gold-bright);
  outline-offset: 2px;
}

@media (max-width: 991px) {
  .dreams-hero__top {
    grid-template-columns: 1fr;
  }

  .dreams-hero__intro {
    max-width: none;
  }

  .dreams-hero__title,
  .dreams-hero__lead {
    max-width: none;
  }

  .dreams-hero__visual {
    max-width: 680px;
    margin: 0 auto 1.2rem;
    justify-self: center;
    align-self: auto;
  }

  .dreams-hero__visual:hover {
    transform: translateY(-3px);
  }

  .dreams-brand__tagline {
    display: none;
  }

  .dreams-user-pill {
    max-width: 140px;
  }

  .dreams-invest-showcase__media {
    grid-template-columns: 1fr;
  }

  .dreams-location {
    grid-template-columns: 1fr;
  }

  .dreams-corporate__grid {
    grid-template-columns: 1fr;
  }

  .dreams-trust__grid {
    grid-template-columns: 1fr;
  }

  .dreams-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dreams-team-card--founder {
    grid-column: span 2;
  }

  .dreams-sponsors-grid {
    grid-template-columns: 1fr;
  }

  .verification-grid {
    grid-template-columns: 1fr;
  }

  .verification-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1399.98px) {
  .dreams-nav-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .dreams-nav__links .nav-link {
    padding: 0.6rem 0.7rem !important;
  }
}

@media (min-width: 1400px) {
  .dreams-nav__links {
    flex-wrap: wrap;
    row-gap: 0.25rem;
  }
}

@media (max-width: 640px) {
  .dreams-team__grid {
    grid-template-columns: 1fr;
  }

  .dreams-team-card--founder {
    grid-column: span 1;
  }
}

.language-selector-form {
  margin: 0;
}

.language-selector {
  min-width: 70px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.language-selector option {
  color: #111827;
}

.language-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.language-dropdown-menu {
  min-width: 185px;
  border-radius: 12px;
  padding: 0.35rem;
}

.language-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
}

.language-flag {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.support-fab {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 1200;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-size: 0.86rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0e7490 0%, #155e75 40%, #0f172a 100%);
  color: #f8fafc;
  text-decoration: none;
  border: 1px solid rgba(251, 191, 36, 0.45);
  box-shadow:
    0 12px 32px rgba(14, 116, 144, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(245, 158, 11, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.support-fab:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 16px 38px rgba(14, 116, 144, 0.55),
    0 0 36px rgba(251, 191, 36, 0.28);
}

.support-fab__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  padding: 0 5px;
  border: 2px solid #0b1424;
  animation: supportBadgePulse 1.6s infinite;
}

@keyframes supportBadgePulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.support-messenger-panel {
  position: fixed;
  right: 18px;
  bottom: 78px;
  width: min(380px, calc(100vw - 26px));
  height: min(540px, calc(100vh - 120px));
  border-radius: 14px;
  background: #0b1424;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.45);
  z-index: 1201;
  overflow: hidden;
  display: none;
}

.support-messenger-panel.is-open {
  display: block;
}

.support-messenger-panel__top {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.8rem;
  color: #fff;
  background: linear-gradient(135deg, #1f4c8d, #102441);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.support-messenger-frame {
  width: 100%;
  height: calc(100% - 48px);
  border: 0;
  background: #f8fafc;
}

.support-widget-body {
  margin: 0;
  background: #f8fafc;
}

.support-widget-shell {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.support-widget-has-new .support-widget-header {
  background: linear-gradient(90deg, #dcfce7, #f0fdf4);
}

.support-widget-header {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.support-widget-messages {
  border: 0;
  border-radius: 0;
  padding: 0.8rem;
  max-height: none;
  flex: 1;
}

.support-widget-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem;
  background: #fff;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.support-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #475569;
}

.support-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.support-live-dot--on {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}

.support-live-dot--off {
  background: #94a3b8;
}

.support-typing-indicator {
  font-size: 0.78rem;
  color: #64748b;
  padding: 0 0.8rem 0.35rem;
}

.support-chat-window {
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 12px;
  padding: 0.8rem;
  max-height: 420px;
  overflow-y: auto;
}

.support-msg {
  border-radius: 10px;
  padding: 0.6rem 0.7rem;
  margin-bottom: 0.55rem;
}

.support-msg--new {
  animation: supportMessageIn 280ms ease-out both;
}

@keyframes supportMessageIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.support-msg--user {
  background: #e0f2fe;
  margin-left: 10%;
}

.support-msg--admin {
  background: #f1f5f9;
  margin-right: 10%;
}

.support-msg__meta {
  font-size: 0.72rem;
  color: #64748b;
  margin-bottom: 0.2rem;
}

.support-thread-item {
  display: flex;
  gap: 0.4rem;
  flex-direction: column;
  padding: 0.55rem;
  border-radius: 8px;
  text-decoration: none;
  color: #0f172a;
  border: 1px solid transparent;
  margin-bottom: 0.45rem;
}

.support-thread-item.active,
.support-thread-item:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.investments-modal .modal-content {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.28);
}

.investments-modal .modal-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.investments-modal .modal-body {
  max-height: min(72vh, 780px);
  overflow-y: auto;
}

/* Offres investissement : couleurs bronze / argent / or */
.investments-tier-card {
  border-width: 2px !important;
  transition: box-shadow var(--transition), transform var(--transition);
}

.investments-tier-card:hover {
  transform: translateY(-2px);
}

.investments-tier-card--bronze {
  background: linear-gradient(165deg, #fdf5eb 0%, #edd9c0 55%, #d4a574 100%);
  border-color: var(--dreams-bronze-bright) !important;
  box-shadow: 0 8px 28px rgba(122, 74, 36, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.investments-tier-card--silver {
  background: linear-gradient(165deg, #f8fafc 0%, #e2e8f0 45%, #cbd5e1 100%);
  border-color: var(--dreams-silver-metallic) !important;
  box-shadow: 0 8px 28px rgba(71, 85, 105, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.investments-tier-card--gold {
  background: linear-gradient(165deg, #fffbeb 0%, #fde68a 40%, #fbbf24 100%);
  border-color: var(--dreams-gold) !important;
  box-shadow: 0 8px 28px rgba(217, 119, 6, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.investments-tier-card--diamond {
  background: linear-gradient(165deg, #ecfeff 0%, #a5f3fc 35%, #22d3ee 70%, #0891b2 100%);
  border-color: #06b6d4 !important;
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.investments-tier-card__title {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.investments-tier-card--bronze .investments-tier-card__title {
  background: linear-gradient(90deg, var(--dreams-bronze-dim), var(--dreams-bronze-bright), #e8a868);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.investments-tier-card--silver .investments-tier-card__title {
  background: linear-gradient(90deg, #64748b, var(--dreams-silver-metallic), var(--dreams-silver-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.investments-tier-card--gold .investments-tier-card__title {
  background: linear-gradient(90deg, var(--dreams-gold-dim), var(--dreams-gold), var(--dreams-gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.investments-tier-card--diamond .investments-tier-card__title {
  background: linear-gradient(90deg, #0e7490, #06b6d4, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.investments-tier-card__cta {
  font-weight: 600;
  border-radius: 999px;
  border-width: 2px;
}

.investments-tier-card__cta--bronze {
  color: #3f2212 !important;
  background: linear-gradient(135deg, #e8b88a, var(--dreams-bronze-bright));
  border-color: var(--dreams-bronze-dim) !important;
}

.investments-tier-card__cta--bronze:hover {
  filter: brightness(1.05);
  color: #27150a !important;
}

.investments-tier-card__cta--silver {
  color: #0f172a !important;
  background: linear-gradient(135deg, #f1f5f9, var(--dreams-silver-metallic));
  border-color: #64748b !important;
}

.investments-tier-card__cta--silver:hover {
  filter: brightness(1.04);
}

.investments-tier-card__cta--gold {
  color: #0a0e17 !important;
  background: linear-gradient(135deg, var(--dreams-gold-bright), var(--dreams-gold));
  border-color: var(--dreams-gold-dim) !important;
}

.investments-tier-card__cta--gold:hover {
  filter: brightness(1.06);
}

.investments-tier-card__cta--diamond {
  color: #042f2e !important;
  background: linear-gradient(135deg, #67e8f9, #22d3ee);
  border-color: #0e7490 !important;
}

.investments-tier-card__cta--diamond:hover {
  filter: brightness(1.06);
  color: #042f2e !important;
}

.investments-modal__header--bronze {
  background: linear-gradient(90deg, rgba(184, 115, 51, 0.2), rgba(205, 127, 50, 0.12));
  border-bottom-color: rgba(184, 115, 51, 0.45) !important;
}

.investments-modal__header--silver {
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.35), rgba(192, 192, 192, 0.2));
  border-bottom-color: rgba(100, 116, 139, 0.45) !important;
}

.investments-modal__header--gold {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.28), rgba(245, 158, 11, 0.15));
  border-bottom-color: rgba(217, 119, 6, 0.45) !important;
}

.investments-modal__header--diamond {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.28), rgba(6, 182, 212, 0.15));
  border-bottom-color: rgba(8, 145, 178, 0.45) !important;
}

.investments-modal__header--bronze .modal-title,
.investments-modal__header--silver .modal-title,
.investments-modal__header--gold .modal-title {
  font-weight: 700;
}

.investments-modal__header--bronze .modal-title {
  color: var(--dreams-bronze-dim);
}

.investments-modal__header--silver .modal-title {
  color: #334155;
}

.investments-modal__header--gold .modal-title {
  color: #92400e;
}

.investments-modal__header--diamond .modal-title {
  color: #0e7490;
}

.investments-plan-card {
  border-width: 2px !important;
}

.investments-plan-card--bronze {
  background: linear-gradient(180deg, #fffaf5, #f5e6d3);
  border-color: rgba(184, 115, 51, 0.55) !important;
}

.investments-plan-card--silver {
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  border-color: rgba(100, 116, 139, 0.45) !important;
}

.investments-plan-card--gold {
  background: linear-gradient(180deg, #fffbeb, #fef3c7);
  border-color: rgba(245, 158, 11, 0.65) !important;
}

.investments-plan-card--diamond {
  background: linear-gradient(180deg, #ecfeff, #cffafe);
  border-color: rgba(6, 182, 212, 0.65) !important;
}

.investments-plan-card__title {
  font-weight: 700;
}

.investments-plan-card--bronze .investments-plan-card__title {
  color: var(--dreams-bronze-dim);
}

.investments-plan-card--silver .investments-plan-card__title {
  color: #475569;
}

.investments-plan-card--gold .investments-plan-card__title {
  color: #b45309;
}

.investments-plan-card--diamond .investments-plan-card__title {
  color: #0e7490;
}

.investments-plan-card__subscribe {
  font-weight: 600;
  border-radius: 999px;
}

.investments-plan-card__subscribe--bronze {
  color: #fff !important;
  background: linear-gradient(135deg, var(--dreams-bronze-dim), var(--dreams-bronze-bright)) !important;
  border: none !important;
}

.investments-plan-card__subscribe--bronze:hover {
  filter: brightness(1.08);
  color: #fff !important;
}

.investments-plan-card__subscribe--silver {
  color: #0f172a !important;
  background: linear-gradient(135deg, #e2e8f0, var(--dreams-silver-metallic)) !important;
  border: 1px solid #64748b !important;
}

.investments-plan-card__subscribe--silver:hover {
  filter: brightness(1.05);
}

.investments-plan-card__subscribe--gold {
  color: #0a0e17 !important;
  background: linear-gradient(135deg, var(--dreams-gold-bright), var(--dreams-gold)) !important;
  border: none !important;
}

.investments-plan-card__subscribe--gold:hover {
  filter: brightness(1.06);
  color: #0a0e17 !important;
}

.investments-plan-card__subscribe--diamond {
  color: #042f2e !important;
  background: linear-gradient(135deg, #67e8f9, #06b6d4) !important;
  border: none !important;
}

.investments-plan-card__subscribe--diamond:hover {
  filter: brightness(1.06);
  color: #042f2e !important;
}

.lucky-wheel-page .lucky-wheel-balance-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(34, 211, 238, 0.1));
}

.lucky-wheel-stage {
  position: relative;
  width: min(100%, 420px);
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}

.lucky-wheel-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(4px);
}

.lucky-wheel-modal-overlay.is-visible {
  display: flex;
}

.lucky-wheel-modal {
  position: relative;
  width: min(92vw, 620px);
  border-radius: 1.2rem;
  padding: 1.1rem 1.1rem 1.3rem;
  background: linear-gradient(165deg, #0f172a, #111827);
  border: 1px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 20px 46px rgba(2, 6, 23, 0.6);
  color: #fff;
  animation: luckyJackpotIn 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lucky-wheel-close {
  position: absolute;
  top: 0.45rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.75rem;
  line-height: 1;
}

.lucky-wheel-rim {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 12px;
  background: conic-gradient(from 0deg, #f59e0b, #fde68a, #22d3ee);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.38);
}

.lucky-wheel-lights {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 7;
}

.lucky-wheel-light {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff6cc;
  transform: rotate(calc(var(--light-rotate) * 1deg)) translateY(-194px);
  box-shadow: 0 0 0 rgba(255, 240, 180, 0.1);
  opacity: 0.5;
}

.lucky-wheel-page.is-spinning .lucky-wheel-light {
  animation: luckyWheelLightBlink 0.8s ease-in-out infinite;
  animation-delay: var(--light-delay);
}

.lucky-wheel-page.is-spinning .lucky-wheel-pointer {
  animation: luckyWheelPointerTick 0.09s ease-in-out infinite;
}

@keyframes luckyWheelLightBlink {
  0%, 100% {
    opacity: 0.35;
    box-shadow: 0 0 0 rgba(255, 240, 180, 0.1);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 12px rgba(255, 240, 180, 0.95), 0 0 22px rgba(255, 194, 102, 0.7);
  }
}

@keyframes luckyWheelPointerTick {
  0%, 100% {
    transform: translateX(-50%) rotate(0deg);
  }
  30% {
    transform: translateX(-50%) rotate(8deg);
  }
  70% {
    transform: translateX(-50%) rotate(-4deg);
  }
}

.lucky-wheel-disk {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at center, #ffffff 0%, #f8fafc 70%);
  overflow: hidden;
  transition: transform 5.2s cubic-bezier(0.08, 0.86, 0.22, 1);
  --label-radius: 128px;
  --tick-size: 9px;
  --tick-inset: 6px;
}

.lucky-wheel-disk::before {
  content: "";
  position: absolute;
  inset: var(--tick-inset);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 62%, rgba(15, 23, 42, 0.2) 63% 64%, transparent 65%),
    repeating-conic-gradient(
      from -15deg,
      rgba(255, 255, 255, 0.9) 0deg 1deg,
      transparent 1deg 29deg,
      rgba(255, 255, 255, 0.42) 29deg 30deg
    );
  mix-blend-mode: soft-light;
}

.lucky-wheel-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(calc(var(--label-angle) - 90deg));
  transform-origin: center center;
  pointer-events: none;
  z-index: 8;
}

.lucky-wheel-label span {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(var(--label-radius), -50%) rotate(calc(90deg - var(--label-angle)));
  transform-origin: center center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0,0,0,0.7);
  -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 2px 8px rgba(0,0,0,0.25);
}

.lucky-wheel-pointer {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #f43f5e;
  z-index: 9;
  filter: drop-shadow(0 4px 8px rgba(15, 23, 42, 0.3));
  transform-origin: 50% 5%;
}

.lucky-wheel-pointer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle at 30% 30%, #f8fafc, #94a3b8 70%);
  border: 1px solid rgba(15, 23, 42, 0.35);
  box-shadow: 0 2px 7px rgba(2, 6, 23, 0.45);
}

.lucky-wheel-pointer::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 4px;
  height: 6px;
  border-radius: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.75);
}

.lucky-wheel-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: radial-gradient(circle at 30% 30%, #fb7185, #be123c);
  border: 5px solid #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.32);
  z-index: 6;
}

.lucky-wheel-result {
  margin-top: 0.9rem;
  border-radius: 0.75rem;
  padding: 0.65rem 0.8rem;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.lucky-wheel-result.win {
  color: #166534;
  background: #dcfce7;
  border-color: #86efac;
}

.lucky-wheel-result.lose {
  color: #991b1b;
  background: #fee2e2;
  border-color: #fca5a5;
}

.lucky-wheel-result.neutral {
  color: #334155;
  background: #e2e8f0;
  border-color: #cbd5e1;
}

.lucky-jackpot-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(4px);
}

.lucky-jackpot-overlay.is-visible {
  display: flex;
}

@media (max-width: 575px) {
  .lucky-wheel-modal {
    width: 95vw;
    padding: 0.9rem 0.8rem 1rem;
  }

  .lucky-wheel-light {
    transform: rotate(calc(var(--light-rotate) * 1deg)) translateY(-172px);
  }

  .lucky-wheel-label span {
    transform: translate(calc(var(--label-radius) - 14px), -50%) rotate(calc(-1 * var(--label-angle)));
    font-size: 0.67rem;
    padding: 0.12rem 0.35rem;
  }
}

.lucky-jackpot-card {
  width: min(92vw, 420px);
  border-radius: 1.2rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
  background: linear-gradient(165deg, #fff8e1 0%, #ffffff 60%, #fff3bf 100%);
  border: 1px solid rgba(245, 158, 11, 0.6);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.35);
  animation: luckyJackpotIn 380ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lucky-jackpot-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #9a3412;
}

.lucky-jackpot-amount {
  margin: 0.45rem 0 0.6rem;
  font-size: 2rem;
  font-weight: 800;
  color: #166534;
}

.lucky-jackpot-overlay.is-lose .lucky-jackpot-title {
  color: #64748b;
}

.lucky-jackpot-overlay.is-lose .lucky-jackpot-amount {
  color: #475569;
}

@keyframes luckyJackpotIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --- Accueil : carrousel hero --- */
.dreams-hero-carousel {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(34, 211, 238, 0.2);
  box-shadow: var(--shadow-card), 0 0 48px rgba(245, 158, 11, 0.08);
  overflow: hidden;
}

.dreams-hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.dreams-hero-carousel .carousel-indicators .active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dreams-gold-bright), #f59e0b);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.dreams-hero-slide {
  position: relative;
  min-height: 220px;
  background: radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.15), transparent 45%),
    linear-gradient(145deg, #0b1220, #111827);
}

@media (min-width: 768px) {
  .dreams-hero-slide {
    min-height: 320px;
  }
}

.dreams-hero-slide img {
  object-fit: cover;
  max-height: 360px;
  min-height: 220px;
}

.dreams-hero-slide__caption {
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.35) 100%);
  border-radius: 0.85rem;
  padding: 0.85rem 1.1rem !important;
  left: 7%;
  right: 7%;
  bottom: 11%;
  border: 1px solid rgba(251, 191, 36, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dreams-hero-slide__caption h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.dreams-hero-carousel .carousel-control-prev-icon,
.dreams-hero-carousel .carousel-control-next-icon {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

@keyframes dreamsHeroSwing {
  0%, 100% { transform: rotate(-0.35deg) translateY(0); }
  50% { transform: rotate(0.35deg) translateY(-4px); }
}

.dreams-hero-carousel .carousel-item.active .dreams-hero-slide img {
  animation: dreamsHeroSwing 6.5s ease-in-out infinite;
}

/* --- Tableau de bord : tuiles portefeuille --- */
.dreams-dashboard-wallet {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.45rem 1.45rem;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(245, 158, 11, 0.18) 0%, transparent 45%),
    radial-gradient(90% 60% at 0% 100%, rgba(34, 211, 238, 0.12) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.92) 100%);
  border: 1px solid rgba(34, 211, 238, 0.14);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.1), 0 0 48px rgba(245, 158, 11, 0.06);
}

.dreams-dashboard-wallet::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dreams-accent), var(--dreams-gold-bright), transparent);
  opacity: 0.85;
}

.dreams-dashboard-wallet__head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  position: relative;
  z-index: 1;
}

.dreams-dashboard-wallet__mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  flex-shrink: 0;
  font-size: 1.25rem;
  color: #0f172a;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.45), rgba(34, 211, 238, 0.22));
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.2);
}

.dreams-dashboard-wallet__head-text {
  min-width: 0;
}

.dreams-dashboard-wallet__label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.dreams-dashboard-wallet__hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.45;
  max-width: 52ch;
}

.dreams-wallet-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  padding: 1.15rem 1.2rem 1.2rem;
  border-radius: 1.05rem;
  text-decoration: none;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.75) inset;
  transition: transform 0.26s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.26s ease, border-color 0.26s ease;
  overflow: hidden;
}

.dreams-wallet-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  opacity: 0.95;
  z-index: 0;
}

.dreams-wallet-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16), 0 0 36px rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.25);
}

.dreams-wallet-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  z-index: 1;
}

.dreams-wallet-tile__title {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.dreams-wallet-tile__desc {
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.dreams-wallet-tile--deposit::before {
  background: linear-gradient(90deg, #16a34a, #4ade80);
}

.dreams-wallet-tile--deposit .dreams-wallet-tile__icon {
  color: #15803d;
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.22);
}

.dreams-wallet-tile--card::before {
  background: linear-gradient(90deg, #1d4ed8, #38bdf8);
}

.dreams-wallet-tile--card .dreams-wallet-tile__icon {
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.1);
  border-color: rgba(29, 78, 216, 0.2);
}

.dreams-wallet-tile--withdraw::before {
  background: linear-gradient(90deg, #ea580c, #fbbf24);
}

.dreams-wallet-tile--withdraw .dreams-wallet-tile__icon {
  color: #c2410c;
  background: rgba(234, 88, 12, 0.1);
  border-color: rgba(234, 88, 12, 0.22);
}

/* --- Dépôt : choix crypto / carte --- */
.dreams-deposit-choice__card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(160deg, #ffffff, #f8fafc);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

.dreams-deposit-choice__card--link {
  border: 1px solid rgba(29, 78, 216, 0.25);
  background: linear-gradient(160deg, #eff6ff 0%, #ffffff 70%);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dreams-deposit-choice__card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(29, 78, 216, 0.18);
}

/* --- Paiement carte --- */
.dreams-form-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.dreams-alert-soft {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.dreams-card-brands {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(145deg, #0f172a, #1e293b);
  color: #e2e8f0;
}

.dreams-card-brands__logos {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.dreams-card-brands__visa {
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 1.35rem;
  color: #1a56db;
  background: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 0.45rem;
}

.dreams-card-brands__mc {
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(90deg, #eb001b, #f79e1b);
  padding: 0.45rem 0.85rem;
  border-radius: 0.45rem;
}

.dreams-btn-glow {
  box-shadow: 0 8px 24px rgba(14, 116, 144, 0.4);
}

.payment-card__icon--dual {
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.15), rgba(245, 158, 11, 0.2));
  color: #0e7490;
}

/* ——— Thème vivant : finitions page (carte principale) ——— */
.dreams-card .page-title {
  color: #0f172a;
  border-left: 4px solid var(--dreams-accent);
  padding-left: 0.85rem;
  margin-left: -0.1rem;
}

.dreams-card .section-title {
  border-bottom: none;
  padding-bottom: 0.55rem;
  background: linear-gradient(90deg, var(--dreams-accent), var(--dreams-accent-violet)) 0 100% / 100% 3px no-repeat;
}

.dreams-header .btn-dreams-gold {
  box-shadow: 0 6px 26px rgba(245, 158, 11, 0.42), 0 0 22px rgba(34, 211, 238, 0.18);
}

.dreams-card .btn-primary {
  background: linear-gradient(135deg, #06b6d4, #0e7490);
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(14, 116, 144, 0.35);
}

.dreams-card .btn-primary:hover {
  background: linear-gradient(135deg, #22d3ee, #155e75);
  box-shadow: 0 10px 28px rgba(6, 182, 212, 0.4);
}

/* === Ultra template : auth, listes, tables, finitions globales === */
::selection {
  background: rgba(245, 158, 11, 0.35);
  color: #0f172a;
}

.dreams-auth-panel {
  max-width: 460px;
  margin: 0 auto;
  padding: 0.25rem 0.35rem 1rem;
}

.dreams-auth-panel .page-title {
  text-align: center;
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.dreams-auth-panel .page-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dreams-input-affix {
  border-width: 1.5px !important;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  color: #0e7490 !important;
  font-size: 1.05rem;
  padding-inline: 0.85rem;
}

.dreams-card .list-group {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.dreams-card .list-group-item {
  padding: 0.85rem 1rem;
  border-color: rgba(15, 23, 42, 0.06);
  transition: background 0.18s ease;
}

.dreams-card .list-group-item:hover {
  background: rgba(248, 250, 252, 0.95);
}

.dreams-card .table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.dreams-card .table thead th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #64748b;
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.dreams-card .btn-outline-primary {
  border-width: 1.5px;
  font-weight: 600;
  border-radius: 0.65rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.dreams-card .btn-outline-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(14, 116, 144, 0.2);
  background: rgba(6, 182, 212, 0.08);
}

.dreams-card .btn-sm {
  border-radius: 0.55rem;
}

body.dreams-body.theme-light-luxury .dreams-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 245, 249, 0.98) 100%);
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.06);
}

body.dreams-body.theme-light-luxury .dreams-footer__copy {
  color: rgba(51, 65, 85, 0.65);
}

body.dreams-body.theme-light-luxury .dreams-footer__link {
  color: #0e7490;
}

body.dreams-body.theme-light-luxury .dreams-footer__brand {
  background: linear-gradient(135deg, #0f172a, var(--dreams-gold-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Admin : offres d'investissement ── */
.dreams-admin-offers__section {
  margin-bottom: 2rem;
}

.dreams-admin-offers__section-head {
  margin-bottom: 1rem;
}

.dreams-admin-offers__count {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.12);
  color: #0e7490;
}

.dreams-admin-offers__card {
  background: var(--dreams-surface, #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

.dreams-admin-offers__card--create {
  border-left: 4px solid var(--dreams-teal, #0e7490);
}

.dreams-admin-offers__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(51, 65, 85, 0.75);
  margin-bottom: 0.35rem;
}

.dreams-admin-offers__active-check {
  min-height: 2.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.dreams-admin-offers__submit {
  min-width: 11rem;
  border-radius: 0.65rem;
  font-weight: 600;
}

.dreams-admin-offers__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dreams-admin-offers__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--dreams-surface, #fff);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.04);
}

@media (min-width: 992px) {
  .dreams-admin-offers__item {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }
}

.dreams-admin-offers__item-head {
  padding: 1rem 1.15rem 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, transparent 100%);
}

.dreams-admin-offers__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.dreams-admin-offers__id {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(51, 65, 85, 0.55);
}

.dreams-admin-offers__tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.dreams-admin-offers__tier--bronze { background: rgba(180, 83, 9, 0.12); color: #92400e; }
.dreams-admin-offers__tier--silver { background: rgba(100, 116, 139, 0.15); color: #475569; }
.dreams-admin-offers__tier--gold { background: rgba(202, 138, 4, 0.15); color: #a16207; }
.dreams-admin-offers__tier--diamond { background: rgba(6, 182, 212, 0.15); color: #0e7490; }

.dreams-admin-offers__item-summary {
  font-size: 0.875rem;
  line-height: 1.4;
}

.dreams-admin-offers__item-summary strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.dreams-admin-offers__form {
  padding: 1rem 1.15rem;
}

.dreams-admin-offers__fields .form-control,
.dreams-admin-offers__fields .form-select {
  min-height: 2.125rem;
}

.dreams-admin-offers__item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
}

.dreams-admin-offers__toggle-form {
  padding: 1rem 1.15rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(15, 23, 42, 0.02);
  display: flex;
  align-items: center;
}

@media (min-width: 992px) {
  .dreams-admin-offers__toggle-form {
    border-top: none;
    border-left: 1px solid rgba(15, 23, 42, 0.06);
    min-width: 8.5rem;
    justify-content: center;
  }
}

.dreams-admin-offers__empty {
  padding: 2rem;
  text-align: center;
  border: 1px dashed rgba(15, 23, 42, 0.15);
  border-radius: 1rem;
}

.dreams-admin-offers__item--bronze { border-top: 3px solid #b45309; }
.dreams-admin-offers__item--silver { border-top: 3px solid #64748b; }
.dreams-admin-offers__item--gold { border-top: 3px solid #ca8a04; }
.dreams-admin-offers__item--diamond { border-top: 3px solid #06b6d4; }

@media (max-width: 575.98px) {
  .dreams-admin-offers__card,
  .dreams-admin-offers__form {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .dreams-admin-offers__submit {
    width: 100%;
  }

  .dreams-admin-offers__item-summary span {
    display: block;
    margin-top: 0.2rem;
  }
}

body.dreams-body.theme-dark-luxury .dreams-admin-offers__card,
body.dreams-body.theme-dark-luxury .dreams-admin-offers__item {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgba(148, 163, 184, 0.15);
}

body.dreams-body.theme-dark-luxury .dreams-admin-offers__label {
  color: rgba(226, 232, 240, 0.65);
}

body.dreams-body.theme-dark-luxury .dreams-admin-offers__item-head,
body.dreams-body.theme-dark-luxury .dreams-admin-offers__toggle-form {
  background: rgba(15, 23, 42, 0.35);
  border-color: rgba(148, 163, 184, 0.12);
}
