/* ==========================================================================
   SCHWEBENDE MARKE ZUR IT-SECURITY-SEITE
   Klappt von selbst auf und wieder zu. Auch zugeklappt laeuft eine
   Zeichenfolge im Ring, damit sie auffaellt ohne aufdringlich zu sein.
   ========================================================================== */
.sec-mini {
  /* Unten links, damit sie das Turnier-Widget rechts unten nicht ueberdeckt. */
  position: fixed; left: 18px; bottom: 18px; z-index: 180;
  display: flex; align-items: center;
  max-width: 64px; overflow: hidden;
  height: 64px; border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(4,10,7,.96), rgba(3,6,10,.96));
  border: 1px solid rgba(61,220,132,.45);
  box-shadow: 0 0 0 1px rgba(0,0,0,.55), 0 8px 26px rgba(0,0,0,.6),
              0 0 20px rgba(61,220,132,.20);
  text-decoration: none; color: inherit;
  backdrop-filter: blur(6px);
  transition: max-width 1.1s cubic-bezier(.25,.9,.25,1), border-color .5s, box-shadow .5s;
}
.sec-mini.auf, .sec-mini:hover, .sec-mini:focus-visible {
  max-width: 320px;
  border-color: rgba(61,220,132,.9);
  box-shadow: 0 0 0 1px rgba(0,0,0,.55), 0 10px 32px rgba(0,0,0,.65),
              0 0 34px rgba(61,220,132,.38);
}
.sec-mini:focus-visible { outline: 2px solid #3ddc84; outline-offset: 3px; }

/* Ring mit Zeichenflaeche */
.sec-ring {
  position: relative; flex: none;
  width: 64px; height: 64px; overflow: hidden;
  border-right: 1px solid rgba(61,220,132,.22);
  background: #030705;
}
.sec-lw { display: block; width: 64px; height: 64px; }
/* feine Bildschirmzeilen ueber der Flaeche */
.sec-ring::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.34) 0 1px, transparent 1px 3px);
}

/* Textteil */
.sec-tx {
  display: flex; flex-direction: column; justify-content: center; gap: 1px;
  padding: 0 16px 0 12px; white-space: nowrap; min-width: 0;
}
.sec-tx .z1 {
  display: flex; align-items: center; gap: 5px;
  font-family: 'FQ Ziffern','JetBrains Mono',ui-monospace,monospace;
  font-size: 11.5px; color: #dff5e8; line-height: 1.25;
}
.sec-tx .z1 .pr { font-style: normal; color: #3ddc84; }
.sec-tx .cur2 {
  display: inline-block; width: 6px; height: 11px; background: #3ddc84;
  animation: secBlink 1.7s step-end infinite; flex: none;
}
@keyframes secBlink { 0%,100%{opacity:1;} 50%{opacity:0;} }
.sec-tx .z2 {
  font-family: 'Inter',system-ui,sans-serif; font-size: 12px; font-weight: 600;
  color: #eef0f6; line-height: 1.3;
}
.sec-tx .z3 {
  font-family: 'FQ Ziffern','JetBrains Mono',ui-monospace,monospace;
  font-size: 10.5px; color: #4f8f6b; line-height: 1.3;
}

@media (max-width: 760px) {
  .sec-mini { left: 12px; bottom: 12px; height: 56px; max-width: 56px; }
  .sec-ring, .sec-lw { width: 56px; height: 56px; }
  .sec-mini.auf, .sec-mini:hover, .sec-mini:focus-visible {
    max-width: min(300px, calc(100vw - 24px));
  }
}
@media (prefers-reduced-motion: reduce) {
  /* Nur der blinkende Zeiger wird ruhig gestellt. Die Zeichenflaeche im Ring
     laeuft weiter - sie ist der eigentliche Blickfang und wuerde sonst
     stillstehen, obwohl sie technisch gar nicht davon betroffen ist. */
  .sec-tx .cur2 { animation: none; opacity: .6; }
  .sec-mini { transition: max-width .5s ease; }
}

/* Ausserhalb der Startseite komplett weg - auch wenn der Bildschirm derselbe
   bleibt und nur der Inhalt ausgetauscht wurde. */
.sec-mini.weg { display: none; }

