/* ================================
   BYLICKILABS – DeepMemoria Protection Styles
   Version: 1.3
   Design: Dark Gold / Premium Glass
   ================================= */

:root {
  --dm-bg-dark: #070707;
  --dm-bg-soft: #17110a;

  --dm-gold-light: #fff3b0;
  --dm-gold: #ffd700;
  --dm-gold-dark: #b8860b;
  --dm-bronze: #6f4700;

  --dm-text: #f8f1dc;
  --dm-muted: rgba(255, 249, 230, 0.68);

  --dm-glass: rgba(12, 10, 6, 0.72);
  --dm-border: rgba(255, 215, 0, 0.24);
  --dm-shadow: rgba(0, 0, 0, 0.58);
}



.gradientPulse {
  background:
    linear-gradient(
      120deg,
      var(--dm-bronze),
      var(--dm-gold),
      var(--dm-gold-light),
      var(--dm-gold-dark)
    );

  background-size: 260% 260%;
  animation: dmGradientPulse 10s ease-in-out infinite;

  box-shadow:
    0 0 18px rgba(255, 215, 0, 0.22),
    0 0 38px rgba(184, 134, 11, 0.14);
}

@keyframes dmGradientPulse {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.985);

  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tilt {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.tilt:hover {
  transform: translateY(-6px) rotate3d(.7, .3, 0, 2.4deg);

  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.52),
    0 0 32px rgba(255, 215, 0, 0.16);
}



@media print {
  html,
  body,
  * {
    display: none !important;
  }
}



.wm-overlay::before {
  /*content: "✦ DeepMemoria // Protected Area - Powered by BYLICKILABS ✦";*/

  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;

  color: rgba(255, 215, 0, 0.075);

  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  white-space: pre;

  text-shadow:
    0 0 18px rgba(255, 215, 0, 0.12),
    0 0 42px rgba(184, 134, 11, 0.10);

  transform: rotate(-24deg);
}



.sensitive-blur * {
  filter:
    blur(18px)
    brightness(0.42)
    saturate(0.75);

  transition: filter 0.25s ease;
}

.sensitive-blur::after {
  content: "Geschützter Bereich";

  position: fixed;
  inset: 0;
  z-index: 2147483646;

  display: flex;
  align-items: center;
  justify-content: center;

  pointer-events: none;

  color: rgba(255, 215, 0, 0.72);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  text-shadow:
    0 0 18px rgba(255, 215, 0, 0.32),
    0 0 44px rgba(255, 215, 0, 0.18);
}



.blackout {
  position: fixed;
  inset: 0;
  z-index: 2147483647;

  display: none;

  background:
    radial-gradient(circle at center, rgba(255, 215, 0, 0.08), transparent 38%),
    #000;
}

.blackout.show {
  display: block;
}



.update-marquee {
  position: relative;

  width: 100%;
  overflow: hidden;

  padding: 11px 0;

  white-space: nowrap;

  color: rgba(255, 249, 230, 0.92);

  background:
    radial-gradient(circle at top left, rgba(255, 215, 0, 0.12), transparent 42%),
    linear-gradient(
      135deg,
      rgba(8, 8, 10, 0.58),
      rgba(28, 18, 6, 0.48)
    );

  border-top: 1px solid rgba(255, 215, 0, 0.18);
  border-bottom: 1px solid rgba(255, 215, 0, 0.18);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.36),
    0 0 24px rgba(255, 215, 0, 0.08);

  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.update-marquee::before,
.update-marquee::after {
  content: "";

  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;

  width: 90px;

  pointer-events: none;
}

.update-marquee::before {
  left: 0;

  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 10, 0.96),
      transparent
    );
}

.update-marquee::after {
  right: 0;

  background:
    linear-gradient(
      270deg,
      rgba(8, 8, 10, 0.96),
      transparent
    );
}

.update-marquee span {
  display: inline-block;
  padding-left: 100%;

  animation: dmScrollLeft 55s linear infinite;
}

.update-marquee span::before {
  content: "✦";

  margin-right: 14px;

  color: var(--dm-gold);
  text-shadow:
    0 0 12px rgba(255, 215, 0, 0.42);
}

.update-marquee:hover span {
  animation-play-state: paused;
}

@keyframes dmScrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}



.protection-notice {
  position: fixed;
  left: 50%;
  bottom: 74px;
  transform: translateX(-50%);
  z-index: 120;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  max-width: min(860px, 88vw);
  padding: 10px 16px;

  border-radius: 999px;
  border: 1px solid rgba(255, 215, 0, 0.18);

  color: rgba(255, 249, 230, 0.78);

  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.42),
      rgba(22, 16, 6, 0.48)
    );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.42),
    0 0 22px rgba(255, 215, 0, 0.08);

  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 0.64;

  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}

.protection-notice:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
  border-color: rgba(255, 215, 0, 0.36);
}

.protection-notice::before {
  content: "🔒";
  font-size: 0.9rem;
}



.no-print,
.no-print * {
  display: none !important;
}



@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}



@media (max-width: 1750.98px) {
  .update-marquee,
  .protection-notice,
  .wm-overlay::before {
    display: none !important;
  }
}