/* Protection visuelle et dissuasion de copie — CEGUE */
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

.screen-copyright {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 2147483000;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100vw - 28px);
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(7,9,12,.72);
  box-shadow: 0 10px 30px rgba(0,0,0,.32);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  font: 700 10px/1.15 Arial, Helvetica, sans-serif;
  letter-spacing: .055em;
  text-transform: uppercase;
  pointer-events: none;
}

.screen-copyright::before {
  content: "©";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  color: #fff;
  background: #ef1725;
  font-size: 11px;
}

.protection-notice {
  position: fixed;
  left: 50%;
  bottom: 64px;
  z-index: 2147483001;
  width: min(440px, calc(100vw - 28px));
  padding: 12px 15px;
  border: 1px solid rgba(239,23,37,.42);
  border-radius: 12px;
  color: #fff;
  background: rgba(11,14,18,.94);
  box-shadow: 0 16px 45px rgba(0,0,0,.42);
  font: 700 12px/1.45 Arial, Helvetica, sans-serif;
  text-align: center;
  transform: translate(-50%, 18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  pointer-events: none;
}

.protection-notice.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}


@media (max-width: 700px) {
  .screen-copyright {
    right: 8px;
    bottom: 8px;
    padding: 6px 9px;
    font-size: 8px;
  }
  .screen-copyright::before {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 9px;
  }
  .protection-notice { bottom: 52px; font-size: 11px; }
}

@media print {
  body * { visibility: hidden !important; }
  body::before {
    content: "© Cédric Gueniat · cegue.ch — impression désactivée";
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    visibility: visible !important;
    color: #111;
    background: #fff;
    font: 700 22px/1.4 Arial, Helvetica, sans-serif;
    text-align: center;
  }
}

.footer-rights {
  color: rgba(255,255,255,.52);
  font-size: 9px;
  line-height: 1.35;
}
@media (max-width: 800px) {
  .footer-rights { width: 100%; text-align: center; }
}
