/* ──────────────────────────────────────────────────────────────────
   Empty-State — Award-Winning Polish
   Lila Halo, sanfter Glassmorphism, klare Hierarchie
   ────────────────────────────────────────────────────────────────── */

.dn-empty {
  position: relative;
  max-width: 560px;
  margin: 2.5rem auto;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(178, 120, 255, .14);
  background: linear-gradient(160deg, rgba(28, 20, 44, .72) 0%, rgba(14, 10, 22, .88) 100%);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, .45),
    inset 0 1px 0 rgba(255, 255, 255, .03);
  overflow: hidden;
  animation: dn-empty-in .55s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes dn-empty-in {
  from { opacity: 0; transform: translateY(8px) scale(.985); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) scale(1);     filter: blur(0); }
}

/* Halo hinter dem Icon */
.dn-empty__halo {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(178, 120, 255, .22) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
  animation: dn-empty-halo 6s ease-in-out infinite;
}
@keyframes dn-empty-halo {
  0%, 100% { opacity: .85; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

.dn-empty__icon {
  position: relative;
  width: 72px; height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(178, 120, 255, .22), rgba(124, 58, 237, .08));
  border: 1px solid rgba(178, 120, 255, .35);
  display: flex; align-items: center; justify-content: center;
  color: #d8b4fe;
  font-size: 1.6rem;
  box-shadow:
    0 12px 30px rgba(178, 120, 255, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08);
  animation: dn-empty-float 4s ease-in-out infinite;
}
@keyframes dn-empty-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.dn-empty__eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(178, 120, 255, .85);
  margin-bottom: .85rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: rgba(178, 120, 255, .08);
  border: 1px solid rgba(178, 120, 255, .2);
}

.dn-empty__title {
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin: 0 0 .65rem;
  background: linear-gradient(135deg, #fff 0%, #d4c1f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dn-empty__subtitle {
  font-size: .92rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.55;
  margin: 0 auto 1.5rem;
  max-width: 420px;
  letter-spacing: -.005em;
}

/* ── Suggestion Cards ──────────────────────────────────────────── */
.dn-empty__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .65rem;
  margin: 0 0 1.5rem;
  text-align: left;
}
.dn-empty__cards:empty {
  display: none;
}
.dn-empty-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1), border-color .25s, box-shadow .25s;
}
.dn-empty-card:hover {
  transform: translateY(-3px);
  border-color: rgba(178, 120, 255, .4);
  box-shadow: 0 12px 28px rgba(178, 120, 255, .18);
}
.dn-empty-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, .3);
}
.dn-empty-card__date {
  position: absolute;
  top: 8px; left: 8px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: .25rem .5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .12);
}
.dn-empty-card__body {
  padding: .55rem .7rem .7rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.dn-empty-card__title {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dn-empty-card__venue {
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dn-empty-card__venue i { font-size: .58rem; opacity: .6; }

/* ── Quick Actions ─────────────────────────────────────────────── */
.dn-empty-quick {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.dn-empty-quick__btn {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  padding: .45rem 1rem;
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, border-color .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.dn-empty-quick__btn:hover {
  background: rgba(178, 120, 255, .1);
  border-color: rgba(178, 120, 255, .35);
  color: #fff;
}
.dn-empty-quick__btn i { font-size: .72rem; opacity: .7; }

/* ── CTAs ─────────────────────────────────────────────────────── */
.dn-empty__ctas {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: center;
}
.dn-empty-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -.005em;
  transition: transform .2s, box-shadow .25s, opacity .2s, border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.dn-empty-cta--primary {
  background: linear-gradient(135deg, #b278ff 0%, #7c3aed 60%, #6a1b9a 100%);
  color: #fff;
  box-shadow:
    0 10px 26px rgba(178, 120, 255, .32),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.dn-empty-cta--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: translateX(-100%);
  transition: transform .8s;
}
.dn-empty-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 34px rgba(178, 120, 255, .42),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}
.dn-empty-cta--primary:hover::before { transform: translateX(100%); }
.dn-empty-cta:not(.dn-empty-cta--primary) {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .85);
}
.dn-empty-cta:not(.dn-empty-cta--primary):hover {
  background: rgba(178, 120, 255, .1);
  border-color: rgba(178, 120, 255, .35);
  color: #fff;
}

/* Mobile */
@media (max-width: 640px) {
  .dn-empty { padding: 2.25rem 1.25rem 1.75rem; margin: 1.5rem auto; border-radius: 18px; }
  .dn-empty__icon { width: 60px; height: 60px; font-size: 1.3rem; }
  .dn-empty__cards { grid-template-columns: 1fr 1fr; }
  .dn-empty__halo { width: 280px; height: 280px; top: -80px; }
  .dn-empty-cta { width: 100%; justify-content: center; }
}


/* ──────────────────────────────────────────────────────────────────
   Tooltip-Tour — 3-Step Spotlight
   ────────────────────────────────────────────────────────────────── */
.dn-tour-overlay {
  position: fixed;
  inset: 0;
  z-index: 9800;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.dn-tour-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.dn-tour-spotlight {
  position: absolute;
  border-radius: 16px;
  background: transparent;
  box-shadow:
    0 0 0 9999px rgba(0, 0, 0, .55),
    0 0 0 2px rgba(178, 120, 255, .65),
    0 0 40px rgba(178, 120, 255, .35);
  transition: all .35s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
  animation: dn-tour-pulse 2.4s ease-in-out infinite;
}
@keyframes dn-tour-pulse {
  0%, 100% { box-shadow: 0 0 0 9999px rgba(0, 0, 0, .55), 0 0 0 2px rgba(178, 120, 255, .65), 0 0 40px rgba(178, 120, 255, .35); }
  50%      { box-shadow: 0 0 0 9999px rgba(0, 0, 0, .55), 0 0 0 4px rgba(178, 120, 255, .8),  0 0 60px rgba(178, 120, 255, .55); }
}

.dn-tour-pop {
  position: absolute;
  width: min(340px, calc(100vw - 32px));
  background: linear-gradient(160deg, rgba(28, 20, 44, .96) 0%, rgba(14, 10, 22, .98) 100%);
  border: 1px solid rgba(178, 120, 255, .35);
  border-radius: 18px;
  padding: 1.1rem 1.25rem 1rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .65),
    0 0 0 1px rgba(178, 120, 255, .12),
    inset 0 1px 0 rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: dn-tour-pop-in .4s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes dn-tour-pop-in {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}

.dn-tour-pop__step {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #b278ff;
  margin-bottom: .55rem;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: rgba(178, 120, 255, .1);
  border: 1px solid rgba(178, 120, 255, .25);
}

.dn-tour-pop__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.015em;
  margin: 0 0 .4rem;
  line-height: 1.25;
}

.dn-tour-pop__body {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
  margin: 0 0 1rem;
  letter-spacing: -.005em;
}

.dn-tour-pop__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .65rem;
}

.dn-tour-skip {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .4);
  font-size: .78rem;
  font-weight: 500;
  cursor: pointer;
  padding: .35rem .15rem;
  font-family: inherit;
  transition: color .2s;
}
.dn-tour-skip:hover { color: rgba(255, 255, 255, .75); }

.dn-tour-next {
  background: linear-gradient(135deg, #b278ff 0%, #7c3aed 100%);
  border: none;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: -.005em;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, box-shadow .25s;
  box-shadow:
    0 6px 18px rgba(178, 120, 255, .3),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}
.dn-tour-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(178, 120, 255, .45);
}
.dn-tour-next:active { transform: translateY(0); }


/* ──────────────────────────────────────────────────────────────────
   Form-Draft-Banner — restored Hint
   ────────────────────────────────────────────────────────────────── */
.dn-draft-banner {
  display: none;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1.1rem;
  margin: 0 0 1.1rem;
  background: linear-gradient(135deg, rgba(178, 120, 255, .1), rgba(178, 120, 255, .03));
  border: 1px solid rgba(178, 120, 255, .25);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: dn-draft-slide-in .4s cubic-bezier(.22, 1, .36, 1) both;
}
.dn-draft-banner.is-visible { display: flex; }
@keyframes dn-draft-slide-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dn-draft-banner__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(178, 120, 255, .15);
  border: 1px solid rgba(178, 120, 255, .3);
  display: flex; align-items: center; justify-content: center;
  color: #b278ff;
  font-size: .92rem;
}

.dn-draft-banner__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dn-draft-banner__body strong {
  font-size: .88rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -.005em;
}
.dn-draft-banner__body span {
  font-size: .78rem;
  color: rgba(255, 255, 255, .55);
}

.dn-draft-banner__actions {
  display: flex;
  gap: .4rem;
  flex-shrink: 0;
}
.dn-draft-banner__btn {
  font-size: .78rem;
  font-weight: 600;
  padding: .45rem .85rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.dn-draft-banner__btn:active { transform: scale(.97); }
.dn-draft-banner__btn--primary {
  background: linear-gradient(135deg, #b278ff, #7c3aed);
  border: none;
  color: #fff;
  box-shadow: 0 4px 12px rgba(178, 120, 255, .28);
}
.dn-draft-banner__btn--primary:hover {
  box-shadow: 0 6px 16px rgba(178, 120, 255, .4);
}
.dn-draft-banner__btn--secondary {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
}
.dn-draft-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

@media (max-width: 520px) {
  .dn-draft-banner { flex-wrap: wrap; }
  .dn-draft-banner__body { flex: 1 1 100%; order: 1; }
  .dn-draft-banner__icon { order: 0; }
  .dn-draft-banner__actions { order: 2; flex: 1; }
  .dn-draft-banner__btn { flex: 1; text-align: center; }
}


/* ──────────────────────────────────────────────────────────────────
   Empty-State Polish — bestehende riesige CTAs kompakter machen
   ────────────────────────────────────────────────────────────────── */

/* Locations: bestehender "Erste Location erstellen" Button war 100% breit + riesig.
   Da oben rechts schon „Neue Location" steht, hier dezenter halten. */
.location-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, .02);
  border: 1px dashed rgba(178, 120, 255, .18);
  margin: 2rem auto;
  max-width: 480px;
}
.location-empty-state > i {
  font-size: 2rem;
  color: rgba(178, 120, 255, .55);
  display: block;
  margin-bottom: .85rem;
}
.location-empty-state > p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
  margin: 0 0 1.25rem;
}
.location-empty-state .loc-btn-save,
.location-empty-state .btn-primary {
  width: auto !important;
  display: inline-flex !important;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.4rem !important;
  font-size: .9rem !important;
  border-radius: 999px !important;
  background: rgba(178, 120, 255, .12) !important;
  border: 1px solid rgba(178, 120, 255, .35) !important;
  color: #d8b4fe !important;
  font-weight: 600;
  transition: background .25s, border-color .25s, color .2s, transform .15s !important;
  box-shadow: none !important;
}
.location-empty-state .loc-btn-save:hover,
.location-empty-state .btn-primary:hover {
  background: rgba(178, 120, 255, .2) !important;
  border-color: rgba(178, 120, 255, .55) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
