/* ===========================
   Kullanım Kılavuzu – Scoped
   Etki alanı: .site-doc
   =========================== */

.site-doc, .site-doc * , .site-doc *::before, .site-doc *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.site-doc {
  padding: 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(135deg, #0b0f1a 0%, #06080f 60%, #04060b 100%);
  color: #e8ebf5;
                min-height: 80vh;
      background: url(../img/background-one.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Inhalt-Container (alte .frame-g wird als Karte gestaltet) */
.site-doc .frame-g {
  width: 100%;
  max-width: 980px;
  border-radius: 18px;
  padding: 22px 20px;
  background: linear-gradient(180deg, rgba(16,20,36,.65), rgba(10,12,24,.85));
  border: 1px solid rgba(190,200,255,.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}

/* Haupttitel (.text-wrapper) */
.site-doc .frame-g .text-wrapper {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .3px;
  color: #f2f5ff;
  text-align: center;
  text-shadow: 0 0 22px rgba(124,113,255,.25);
}

/* Abschnittstitel (.div) */
.site-doc .frame-g .div {
  margin-top: 18px;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #e9ecff;
  letter-spacing: .2px;
  padding-left: 6px;
  position: relative;
}

/* Kleine Zierlinie links am Abschnittstitel */
.site-doc .frame-g .div::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 4px; height: 16px;
  border-radius: 2px;
  background: linear-gradient(180deg, #7b5cff, #4cc9f0);
  box-shadow: 0 0 12px rgba(120,130,255,.35);
}

/* Fließtext (.text-wrapper-2) */
.site-doc .frame-g .text-wrapper-2 {
  margin: 2px 0 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #cdd4ee;
  letter-spacing: .2px;
}

/* Links, falls vorhanden */
.site-doc .frame-g a {
  color: #bfc9ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(191,201,255,.35);
}
.site-doc .frame-g a:hover { border-bottom-color: rgba(255,255,255,.75); }

/* Listen (falls später nötig) */
.site-doc .frame-g ul { padding-left: 18px; margin: 8px 0; }
.site-doc .frame-g li { margin: 4px 0; color: #cfd6ff; }

/* Abstände sauber halten */
.site-doc .frame-g > * + .text-wrapper-2 { margin-top: 4px; }

/* Responsive */
@media (max-width: 640px) {
  .site-doc { padding: 16px; }
  .site-doc .frame-g { padding: 18px 16px; border-radius: 14px; }
  .site-doc .frame-g .text-wrapper { font-size: 20px; }
}

/* Kontrast/Fokus */
.site-doc .frame-g :focus-visible {
  outline: 2px solid rgba(140,160,255,.75);
  outline-offset: 2px;
}
