:root {
  --dark: #070407;
  --dark-2: #120914;
  --dark-3: #1d0f1c;
  --gold: #d7b35f;
  --gold-light: #ffe3a3;
  --pink: #ff4fa3;
  --pink-light: #ff8acb;
  --white: #ffffff;
  --soft-white: rgba(255, 255, 255, 0.76);
  --border-gold: rgba(215, 179, 95, 0.28);
  --border-pink: rgba(255, 79, 163, 0.3);
  --glass: rgba(255, 255, 255, 0.055);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background: var(--dark);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 79, 163, 0.25), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(215, 179, 95, 0.22), transparent 30%),
    radial-gradient(circle at 75% 88%, rgba(255, 79, 163, 0.16), transparent 34%),
    linear-gradient(135deg, #070407 0%, #190d18 48%, #090509 100%);
}

.site-container {
  width: min(100%, 1760px);
  padding-left: clamp(18px, 4vw, 72px);
  padding-right: clamp(18px, 4vw, 72px);
}

.main-navbar {
  background: rgba(7, 4, 7, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-gold);
}

.navbar-brand {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.navbar-brand:hover {
  color: var(--pink-light);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-left: 14px;
}

.nav-link:hover {
  color: var(--gold-light);
}

.social-sidebar {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-50%);
}

.social-sidebar a {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, rgba(215, 179, 95, 0.96), rgba(255, 79, 163, 0.9));
  box-shadow: 0 14px 34px rgba(255, 79, 163, 0.28);
  animation: socialFloat 3.5s ease-in-out infinite;
  transition: 0.28s ease;
}

.social-sidebar a:nth-child(2) {
  animation-delay: 0.1s;
}

.social-sidebar a:nth-child(3) {
  animation-delay: 0.2s;
}

.social-sidebar a:nth-child(4) {
  animation-delay: 0.3s;
}

.social-sidebar a:nth-child(5) {
  animation-delay: 0.4s;
}

.social-sidebar a:nth-child(6) {
  animation-delay: 0.5s;
}

.social-sidebar a:nth-child(7) {
  animation-delay: 0.6s;
}

.social-sidebar i {
  font-size: 1.24rem;
}

.social-sidebar span {
  position: absolute;
  right: 66px;
  top: 50%;
  min-width: max-content;
  padding: 8px 12px;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 999px;
  background: var(--gold-light);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
  transition: 0.25s ease;
}

.social-sidebar a:hover {
  transform: translateX(-8px) scale(1.08);
  box-shadow: 0 18px 46px rgba(255, 79, 163, 0.48);
}

.social-sidebar a:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes socialFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.hero-section {
  position: relative;
  padding-top: 84px;
}

.hero-content {
  max-width: 960px;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  max-width: 1050px;
  margin-bottom: 26px;
  font-size: clamp(2.6rem, 6.2vw, 6.4rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.065em;
}

h2 {
  max-width: 1050px;
  margin-bottom: 24px;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.055em;
}

h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.15;
  font-weight: 800;
}

p {
  color: var(--soft-white);
  font-size: 1.02rem;
  line-height: 1.78;
}

.hero-content p {
  max-width: 760px;
  font-size: 1.12rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.btn {
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: 0.3s ease;
}

.btn-premium {
  color: #160811;
  border: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--pink-light));
  box-shadow: 0 16px 38px rgba(215, 179, 95, 0.22);
}

.btn-premium:hover {
  color: #160811;
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(255, 79, 163, 0.35);
}

.btn-glass {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.btn-glass:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(215, 179, 95, 0.12);
  transform: translateY(-3px);
}

.hero-image-box,
.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(215, 179, 95, 0.72), rgba(255, 79, 163, 0.42));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5);
}

.hero-image-box::before,
.image-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 36%);
  transform: rotate(25deg);
  pointer-events: none;
}

.hero-image-box img,
.image-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 650px;
  display: block;
  object-fit: cover;
  border-radius: 28px;
}

.content-section {
  padding: clamp(80px, 8vw, 140px) 0;
}

.dark-section {
  background: linear-gradient(180deg, transparent, rgba(255, 79, 163, 0.055), transparent);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 54px;
}

.section-heading p {
  max-width: 720px;
}

.text-panel,
.community-box,
.social-box {
  border-radius: 34px;
  padding: clamp(30px, 5vw, 72px);
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(135deg, rgba(215, 179, 95, 0.1), rgba(255, 79, 163, 0.075)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.wide-panel {
  max-width: 1120px;
}

.premium-card {
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border-gold);
  background: var(--glass);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34);
  transition: 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-pink);
}

.premium-card img {
  width: 100%;
  height: 330px;
  display: block;
  object-fit: cover;
}

.premium-card-body {
  padding: 30px;
}

.community-box,
.social-box {
  max-width: 1280px;
}

.gallery-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 179, 95, 0.11), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(255, 79, 163, 0.12), transparent 36%);
}

.gallery-card {
  position: relative;
  height: 560px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 32px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.45s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.88));
}

.gallery-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 30px;
}

.gallery-info h3 {
  max-width: 100%;
  margin-bottom: 12px;
  color: var(--white);
}

.gallery-info p {
  min-height: 58px;
  margin-bottom: 22px;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.social-links-grid a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid var(--border-gold);
  background: rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

.social-links-grid a:hover {
  color: #160811;
  background: linear-gradient(135deg, var(--gold-light), var(--pink-light));
  transform: translateY(-4px);
}

.main-footer {
  padding: 52px 0;
  border-top: 1px solid var(--border-gold);
  background: rgba(0, 0, 0, 0.28);
}

.main-footer h4 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.main-footer p {
  margin-bottom: 0;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.62);
}

.custom-modal {
  color: var(--white);
  border-radius: 28px;
  border: 1px solid var(--border-gold);
  background: rgba(16, 8, 15, 0.97);
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.68);
}

.modal-header,
.modal-footer {
  border-color: rgba(215, 179, 95, 0.18);
}

.form-control {
  min-height: 54px;
  color: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border-gold);
  background: rgba(255, 255, 255, 0.07);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-control:focus {
  color: var(--white);
  border-color: var(--pink-light);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 0.22rem rgba(255, 79, 163, 0.18);
}

.password-error {
  display: none;
  margin-top: 12px;
  color: #ff9a9a;
  font-weight: 700;
}

.password-error.show {
  display: block;
}

.gallery-modal .modal-body {
  padding: 28px;
}

.gallery-output-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border-gold);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-output-card img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .social-links-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-card {
    height: 520px;
  }
}

@media (max-width: 991px) {
  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .hero-section {
    padding-top: 112px;
  }

  .hero-image-box img,
  .image-panel img {
    min-height: 520px;
  }

  .social-sidebar {
    right: 10px;
  }

  .social-sidebar a {
    width: 46px;
    height: 46px;
  }

  .social-sidebar span {
    display: none;
  }
}

@media (max-width: 767px) {
  .social-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card {
    height: 480px;
  }

  .premium-card img {
    height: 290px;
  }
}

@media (max-width: 575px) {
  .content-section {
    padding: 72px 0;
  }

  .hero-image-box img,
  .image-panel img {
    min-height: 420px;
  }

  .social-sidebar {
    top: auto;
    right: 50%;
    bottom: 18px;
    flex-direction: row;
    gap: 8px;
    padding: 9px;
    border-radius: 999px;
    background: rgba(7, 4, 7, 0.78);
    backdrop-filter: blur(16px);
    transform: translateX(50%);
  }

  .social-sidebar a {
    width: 38px;
    height: 38px;
  }

  .social-sidebar i {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .social-links-grid {
    grid-template-columns: 1fr;
  }
}


.header-joyclub-note {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 22px;
  padding: 12px 20px;
  max-width: fit-content;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.4;
  border-radius: 999px;
  border: 1px solid rgba(215, 179, 95, 0.34);
  background:
    linear-gradient(135deg, rgba(215, 179, 95, 0.13), rgba(255, 79, 163, 0.11)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.header-joyclub-note a {
  position: relative;
  color: #ffe3a3;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.header-joyclub-note a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7b35f, #ff8acb);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.header-joyclub-note a:hover {
  color: #ff8acb;
  text-shadow: 0 0 18px rgba(255, 79, 163, 0.45);
}

.header-joyclub-note a:hover::after {
  transform: scaleX(1);
}


.hero-content p {
  max-width: 860px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.75;
}

.hero-content p:last-of-type {
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.header-joyclub-note {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding: 12px 20px;
  max-width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.4;
  border-radius: 999px;
  border: 1px solid rgba(215, 179, 95, 0.34);
  background:
    linear-gradient(135deg, rgba(215, 179, 95, 0.13), rgba(255, 79, 163, 0.11)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.header-joyclub-note::before {
  content: "â¤";
  color: #ff8acb;
  font-size: 1rem;
  filter: drop-shadow(0 0 10px rgba(255, 79, 163, 0.55));
}

.header-joyclub-note a {
  position: relative;
  color: #ffe3a3;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.header-joyclub-note a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d7b35f, #ff8acb);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

.header-joyclub-note a:hover {
  color: #ff8acb;
  text-shadow: 0 0 18px rgba(255, 79, 163, 0.45);
}

.header-joyclub-note a:hover::after {
  transform: scaleX(1);
}


.mobile-blocker {
  display: none;
}

@media (max-width: 1750.98px) {
  body {
    background: #000 !important;
    overflow: hidden !important;
  }

  body::before {
    display: none !important;
  }

  body > *:not(.mobile-blocker) {
    display: none !important;
  }

  .mobile-blocker {
    display: flex !important;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding: 24px;
    color: #ffffff;
    text-align: center;
    background: #000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .mobile-blocker-box {
    max-width: 620px;
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
  }

  .mobile-blocker-box h1 {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #d9ccff 45%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .mobile-blocker-box p {
    line-height: 1.7;
    margin: 0;
  }

  .mobile-blocker-subtitle {
    color: #67e8f9;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px !important;
  }

  .mobile-blocker-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.98rem;
  }

  .mobile-blocker-warning {
    color: #facc15;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 18px !important;
  }

  .mobile-blocker-footer {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.82rem;
    margin-top: 18px !important;
  }
}


.bestfans-contact-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 24px;
  border: 1px solid rgba(255, 190, 220, 0.55);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(132, 21, 78, 0.96),
      rgba(57, 10, 39, 0.96)
    );
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow:
    0 12px 35px rgba(112, 16, 67, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.bestfans-contact-badge i {
  font-size: 1.35rem;
  color: #ffd4e8;
}

.bestfans-contact-badge strong {
  color: #ffd4e8;
  font-weight: 700;
}

.bestfans-contact-badge:hover {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(255, 210, 232, 0.95);
  box-shadow:
    0 16px 42px rgba(112, 16, 67, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (max-width: 767.98px) {
  .bestfans-contact-badge {
    width: 100%;
    padding: 14px 18px;
    text-align: center;
    border-radius: 22px;
  }
}


/* =========================================================
   CRYPTO SUPPORT SECTION
   CurvyAnonymousGirl89
   Vollständiges Dark-Pink-Premium-Design

   WICHTIG:
   - Auf Desktop immer zwei Karten nebeneinander
   - Weitere Crypto-Karten ordnen sich automatisch ein
   - Keine nth-child-Sonderregeln
   - Auf Mobilgeräten untereinander
========================================================= */


/* =========================================================
   HAUPTBEREICH
========================================================= */

.crypto-support-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(208, 0, 120, 0.18) 0%,
      rgba(208, 0, 120, 0.05) 30%,
      transparent 52%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(255, 75, 166, 0.12) 0%,
      transparent 44%
    ),
    linear-gradient(
      180deg,
      #09030a 0%,
      #140811 48%,
      #09030a 100%
    );
}

.crypto-support-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
}

.crypto-support-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -280px;
  right: -190px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(208, 0, 120, 0.2);
  filter: blur(115px);
  pointer-events: none;
}


/* =========================================================
   ÄUSSERE HAUPTKARTE
========================================================= */

.crypto-support-card {
  position: relative;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 1px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 72, 164, 0.8),
      rgba(208, 0, 120, 0.2) 35%,
      rgba(255, 255, 255, 0.08) 65%,
      rgba(208, 0, 120, 0.55)
    );
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.52),
    0 0 50px rgba(208, 0, 120, 0.12);
}

.crypto-support-card::before {
  content: "";
  position: absolute;
  top: -165px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 55, 155, 0.18);
  filter: blur(60px);
  pointer-events: none;
}


/* =========================================================
   INNERER INHALTSBEREICH
========================================================= */

.crypto-support-content {
  position: relative;
  overflow: hidden;
  padding: 72px;
  border-radius: 31px;
  background:
    linear-gradient(
      145deg,
      rgba(26, 8, 23, 0.985),
      rgba(9, 3, 10, 0.99)
    );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.crypto-support-content::before {
  content: "?";
  position: absolute;
  top: -65px;
  right: 22px;
  color: rgba(255, 255, 255, 0.022);
  font-family: Arial, sans-serif;
  font-size: 300px;
  font-weight: 900;
  line-height: 1;
  transform: rotate(10deg);
  pointer-events: none;
}

.crypto-support-content::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      118deg,
      transparent 15%,
      rgba(255, 255, 255, 0.025) 44%,
      transparent 68%
    );
  pointer-events: none;
}

.crypto-support-content > * {
  position: relative;
  z-index: 2;
}


/* =========================================================
   KLEINE BEREICHSÜBERSCHRIFT
========================================================= */

.crypto-support-section .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 73, 164, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(208, 0, 120, 0.16),
      rgba(255, 255, 255, 0.025)
    );
  color: #ff83bf;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 25px rgba(208, 0, 120, 0.08);
}

.crypto-support-section .section-kicker::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff3f9f;
  box-shadow:
    0 0 8px rgba(255, 63, 159, 0.9),
    0 0 18px rgba(255, 63, 159, 0.55);
}


/* =========================================================
   HAUPTÜBERSCHRIFT UND TEXTE
========================================================= */

.crypto-support-content > h2 {
  max-width: 900px;
  margin: 0 0 25px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.crypto-support-content > h2::after {
  content: "";
  display: block;
  width: 115px;
  height: 4px;
  margin-top: 24px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      #d00078,
      #ff58aa,
      rgba(255, 88, 170, 0.12)
    );
  box-shadow:
    0 0 16px rgba(208, 0, 120, 0.48);
}

.crypto-support-content > p {
  max-width: 980px;
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
  line-height: 1.85;
}


/* =========================================================
   CRYPTO-GRID

   Jede weitere Karte wird automatisch einsortiert:
   Karte 1 links
   Karte 2 rechts
   Karte 3 links
   Karte 4 rechts
   usw.
========================================================= */

.crypto-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
  width: 100%;
  margin-top: 50px;
}


/* =========================================================
   EINZELNE CRYPTO-KARTE
========================================================= */

.crypto-support-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 30px;
  overflow: hidden;
  grid-column: auto;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(208, 0, 120, 0.025)
    );
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.crypto-support-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(208, 0, 120, 0.22),
      transparent 46%
    );
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.crypto-support-item::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -75px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(255, 78, 167, 0.1);
  filter: blur(12px);
  pointer-events: none;
}

.crypto-support-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 65, 159, 0.38);
  background:
    linear-gradient(
      145deg,
      rgba(208, 0, 120, 0.1),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(208, 0, 120, 0.1);
}

.crypto-support-item:hover::before {
  opacity: 1;
}

.crypto-support-item > * {
  position: relative;
  z-index: 2;
}

/* Inhaltsbereich rechts neben dem Icon */
.crypto-support-item > div:last-child {
  flex: 1 1 auto;
  width: calc(100% - 78px);
  min-width: 0;
}


/* =========================================================
   CRYPTO-ICON
========================================================= */

.crypto-support-icon {
  flex: 0 0 60px;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 71, 162, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(208, 0, 120, 0.25),
      rgba(255, 255, 255, 0.035)
    );
  color: #ff73b7;
  font-size: 1.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.24),
    0 0 22px rgba(208, 0, 120, 0.1);
  transition:
    transform 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.crypto-support-item:hover .crypto-support-icon {
  transform: scale(1.06) rotate(-3deg);
  color: #ffacd5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 34px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(208, 0, 120, 0.18);
}


/* =========================================================
   KARTENÜBERSCHRIFT UND NETZWERK
========================================================= */

.crypto-support-item h3 {
  margin: 2px 0 5px;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.crypto-network {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.83rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.035em;
}


/* =========================================================
   WALLET-BEREICH

   Das Adressfeld nutzt den gesamten verfügbaren Platz.
   Der Button bleibt rechts daneben.
========================================================= */

.crypto-wallet {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  min-width: 0;
}


/* =========================================================
   WALLET-ADRESSFELD
========================================================= */

.crypto-wallet code {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 16px 18px;
  overflow-wrap: anywhere;
  word-break: break-all;
  white-space: normal;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      rgba(0, 0, 0, 0.4),
      rgba(208, 0, 120, 0.035)
    );
  color: #ffc1df;
  font-family: "Courier New", monospace;
  font-size: 0.84rem;
  line-height: 1.55;
  box-shadow:
    inset 0 2px 16px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(208, 0, 120, 0.02);
}


/* =========================================================
   KOPIEREN-BUTTON
========================================================= */

.crypto-copy-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 12px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 114, 185, 0.42);
  border-radius: 14px;
  background:
    linear-gradient(
      135deg,
      #d00078 0%,
      #f02091 55%,
      #bd006d 100%
    );
  color: #ffffff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  box-shadow:
    0 13px 28px rgba(208, 0, 120, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.crypto-copy-button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -60%;
  left: -70%;
  width: 40%;
  height: 220%;
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(24deg);
  transition: left 0.55s ease;
}

.crypto-copy-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    0 17px 36px rgba(208, 0, 120, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.crypto-copy-button:hover::before {
  left: 135%;
}

.crypto-copy-button:active {
  transform: translateY(0) scale(0.985);
}

.crypto-copy-button:focus-visible {
  outline: 3px solid rgba(255, 90, 173, 0.42);
  outline-offset: 3px;
}

.crypto-copy-button i {
  font-size: 1rem;
}


/* =========================================================
   SICHERHEITSHINWEIS
========================================================= */

.crypto-support-notice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 35px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 69, 160, 0.22);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(208, 0, 120, 0.09),
      rgba(255, 255, 255, 0.022)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.crypto-support-notice i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #ff69b0;
  font-size: 1.65rem;
  filter:
    drop-shadow(0 0 10px rgba(208, 0, 120, 0.38));
}

.crypto-support-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.93rem;
  line-height: 1.75;
}

.crypto-support-thanks {
  margin-top: 27px !important;
  margin-bottom: 0 !important;
  color: #ff94c7 !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}


/* =========================================================
   GROSSE TABLETS UND KLEINERE DESKTOPS

   Zwei Karten bleiben nebeneinander.
   Nur Innenabstände werden reduziert.
========================================================= */

@media (max-width: 1199.98px) {
  .crypto-support-content {
    padding: 56px;
  }

  .crypto-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .crypto-support-item {
    padding: 24px;
  }

  .crypto-support-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    font-size: 1.6rem;
  }

  .crypto-support-item > div:last-child {
    width: calc(100% - 72px);
  }

  .crypto-wallet {
    grid-template-columns: minmax(0, 1fr) 116px;
  }

  .crypto-copy-button {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 0.84rem;
  }

  .crypto-wallet code {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.78rem;
  }
}


/* =========================================================
   TABLETS UND SMARTPHONES

   Unter 900 Pixel werden alle Karten untereinander angezeigt,
   damit Adressen und Buttons ausreichend Platz behalten.
========================================================= */

@media (max-width: 899.98px) {
  .crypto-support-section {
    padding: 82px 0;
  }

  .crypto-support-content {
    padding: 46px 30px;
  }

  .crypto-support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .crypto-support-item {
    grid-column: auto;
  }

  .crypto-wallet {
    grid-template-columns: minmax(0, 1fr) 130px;
  }

  .crypto-wallet code {
    font-size: 0.82rem;
  }
}


/* =========================================================
   SMARTPHONES
========================================================= */

@media (max-width: 575.98px) {
  .crypto-support-section {
    padding: 70px 0;
  }

  .crypto-support-card {
    border-radius: 25px;
  }

  .crypto-support-content {
    padding: 36px 20px;
    border-radius: 24px;
  }

  .crypto-support-content::before {
    top: -20px;
    right: -25px;
    font-size: 175px;
  }

  .crypto-support-content > h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .crypto-support-content > p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .crypto-support-grid {
    margin-top: 34px;
  }

  .crypto-support-item {
    flex-direction: column;
    gap: 16px;
    padding: 22px;
  }

  .crypto-support-item > div:last-child {
    width: 100%;
  }

  .crypto-support-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
    font-size: 1.6rem;
  }

  .crypto-wallet {
    grid-template-columns: 1fr;
  }

  .crypto-wallet code {
    min-height: 58px;
    padding: 16px;
    font-size: 0.76rem;
  }

  .crypto-copy-button {
    width: 100%;
    min-height: 50px;
  }

  .crypto-support-notice {
    flex-direction: column;
    padding: 21px;
  }

  .crypto-support-section .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
}


/* =========================================================
   REDUZIERTE BEWEGUNG
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .crypto-support-item,
  .crypto-support-icon,
  .crypto-copy-button,
  .crypto-copy-button::before {
    transition: none;
  }

  .crypto-support-item:hover,
  .crypto-copy-button:hover {
    transform: none;
  }
}


/* ========================================================= CRYPTO SUPPORT TEXT BADGE ========================================================= */ .crypto-support-badge { position: relative; display: flex; align-items: flex-start; gap: 20px; width: 100%; max-width: 1050px; margin: 32px 0 0; padding: 26px 28px; overflow: hidden; border: 1px solid rgba(255, 76, 166, 0.26); border-radius: 22px; background: linear-gradient( 135deg, rgba(208, 0, 120, 0.13), rgba(255, 255, 255, 0.025) ); box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.045); } .crypto-support-badge::before { content: ""; position: absolute; top: -80px; right: -60px; width: 190px; height: 190px; border-radius: 50%; background: rgba(208, 0, 120, 0.15); filter: blur(45px); pointer-events: none; } .crypto-support-badge::after { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; border-radius: 22px 0 0 22px; background: linear-gradient( 180deg, #ff58aa, #d00078 ); box-shadow: 0 0 18px rgba(208, 0, 120, 0.5); } .crypto-support-badge-icon { position: relative; z-index: 2; flex: 0 0 54px; display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid rgba(255, 92, 174, 0.32); border-radius: 17px; background: linear-gradient( 145deg, rgba(208, 0, 120, 0.28), rgba(255, 255, 255, 0.035) ); color: #ff79ba; font-size: 1.35rem; box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24), 0 0 20px rgba(208, 0, 120, 0.12); } .crypto-support-badge-content { position: relative; z-index: 2; flex: 1; min-width: 0; } .crypto-support-badge-content p { margin: 0; color: rgba(255, 255, 255, 0.72); font-size: 1rem; line-height: 1.75; } .crypto-support-badge-content p + p { margin-top: 10px; color: #ff9dca; font-weight: 650; } @media (max-width: 575.98px) { .crypto-support-badge { flex-direction: column; gap: 16px; padding: 22px; } .crypto-support-badge-icon { width: 50px; height: 50px; flex-basis: 50px; } .crypto-support-badge-content p { font-size: 0.94rem; line-height: 1.68; } }

/* Kompaktes, zentriertes Titel-Badge */

.crypto-support-content > h3 {
  position: relative;
  display: table;
  margin: 0 auto 28px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 94, 177, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(208, 0, 120, 0.22),
      rgba(255, 255, 255, 0.025)
    );
  color: #ff9fcb;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 0 20px rgba(208, 0, 120, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.crypto-support-content > h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5cab;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(255, 92, 171, 0.75);
}

.crypto-support-content > h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5cab;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(255, 92, 171, 0.75);
}

@media (max-width: 575.98px) {
  .crypto-support-content > h3 {
    padding: 9px 20px;
    font-size: 1rem;
  }
}


/* =========================================================
   CRYPTO TITEL
   Kompaktes, zentriertes Premium-Badge
========================================================= */

.crypto-support-content > h3 {
  position: relative;
  display: block;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto 30px;
  padding: 11px 26px;

  border: 1px solid rgba(255, 92, 171, 0.34);
  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      rgba(208, 0, 120, 0.24) 0%,
      rgba(255, 68, 159, 0.12) 50%,
      rgba(255, 255, 255, 0.025) 100%
    );

  color: #ffadd3;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-align: center;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(208, 0, 120, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  text-shadow:
    0 0 12px rgba(255, 92, 171, 0.22);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;
}

/* linker Leuchtpunkt */
.crypto-support-content > h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 11px;

  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: #ff4fa3;
  transform: translateY(-50%);

  box-shadow:
    0 0 8px rgba(255, 79, 163, 0.9),
    0 0 15px rgba(208, 0, 120, 0.55);
}

/* rechter Leuchtpunkt */
.crypto-support-content > h3::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;

  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: #ff4fa3;
  transform: translateY(-50%);

  box-shadow:
    0 0 8px rgba(255, 79, 163, 0.9),
    0 0 15px rgba(208, 0, 120, 0.55);
}

/* dezenter Hover-Effekt */
.crypto-support-content > h3:hover {
  transform: translateY(-2px);
  color: #ffd0e6;
  border-color: rgba(255, 112, 186, 0.5);

  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.32),
    0 0 30px rgba(208, 0, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Tablet */
@media (max-width: 767.98px) {
  .crypto-support-content > h3 {
    max-width: calc(100% - 20px);
    margin-bottom: 26px;
    padding: 10px 24px;
    font-size: 1.08rem;
  }
}

/* Smartphone */
@media (max-width: 479.98px) {
  .crypto-support-content > h3 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 10px 26px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .crypto-support-content > h3::before {
    left: 10px;
  }

  .crypto-support-content > h3::after {
    right: 10px;
  }
}

/* Bewegungsreduktion */
@media (prefers-reduced-motion: reduce) {
  .crypto-support-content > h3 {
    transition: none;
  }

  .crypto-support-content > h3:hover {
    transform: none;
  }
}

.verified-icon {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  object-fit: contain;
  vertical-align: -3px;
}


.header-joyclub-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin: 0;
}

.header-joyclub-note a {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0;
  text-decoration: none;
}

.header-joyclub-note .verified-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0;
  object-fit: contain;
  flex-shrink: 0;
}

.header-joyclub-note .joyclub-note-end {
  display: inline;
}


.tor_network_section {
  width: 100%;
  padding: 50px 20px 20px;
}

.tor_network_container {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 50px 55px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(42, 12, 35, 0.96),
      rgba(15, 7, 18, 0.98)
    );
  border: 1px solid rgba(210, 126, 187, 0.28);
  border-radius: 28px;
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tor_network_icon {
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1;
}

.tor_network_label {
  margin: 0 0 12px;
  color: #d88cbd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tor_network_container h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.12;
}

.tor_network_text {
  max-width: 860px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
}

.tor_network_links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin-top: 38px;
}

.tor_network_card {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 125px;
  padding: 26px 28px;
  color: #ffffff;
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.tor_network_card:hover,
.tor_network_card:focus-visible {
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-4px);
  background: rgba(216, 140, 189, 0.11);
  border-color: rgba(216, 140, 189, 0.48);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  outline: none;
}

.tor_network_card_icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  font-size: 28px;
  background: rgba(216, 140, 189, 0.13);
  border: 1px solid rgba(216, 140, 189, 0.24);
  border-radius: 16px;
}

.tor_network_card_content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.tor_network_card_content strong {
  color: #ffffff;
  font-size: 1.16rem;
}

.tor_network_card_content span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.96rem;
  line-height: 1.5;
}

.tor_network_arrow {
  flex: 0 0 auto;
  color: #d88cbd;
  font-size: 2rem;
  line-height: 1;
}

.tor_network_notice {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

@media (max-width: 1000px) {
  .tor_network_container {
    width: min(100%, 920px);
    padding: 46px 38px;
  }

  .tor_network_links {
    gap: 18px;
  }

  .tor_network_card {
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .tor_network_section {
    padding: 35px 16px 15px;
  }

  .tor_network_container {
    width: 100%;
    padding: 38px 22px;
    border-radius: 22px;
  }

  .tor_network_icon {
    font-size: 42px;
  }

  .tor_network_container h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .tor_network_text {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .tor_network_links {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .tor_network_card {
    min-height: 105px;
    padding: 20px;
  }

  .tor_network_card_icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 24px;
  }

  .tor_network_card_content strong {
    font-size: 1.06rem;
  }

  .tor_network_card_content span {
    font-size: 0.9rem;
  }

  .tor_network_notice {
    margin-top: 22px;
  }
}

```css
#tor_network_title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  filter: blur(6px);
  animation:
    torTitleReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards,
    torTitleGlow 4s ease-in-out 1.1s infinite;
}

.tor_network_text {
  max-width: 860px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.8;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  animation:
    torTextReveal 850ms cubic-bezier(0.22, 1, 0.36, 1)
    280ms forwards;
}

@keyframes torTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes torTextReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes torTitleGlow {
  0%,
  100% {
    text-shadow:
      0 0 0 rgba(216, 140, 189, 0),
      0 0 0 rgba(216, 140, 189, 0);
  }

  50% {
    text-shadow:
      0 0 18px rgba(216, 140, 189, 0.22),
      0 0 38px rgba(216, 140, 189, 0.1);
  }
}

@media (max-width: 760px) {
  #tor_network_title {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
    line-height: 1.2;
  }

  .tor_network_text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  #tor_network_title,
  .tor_network_text {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }
}


```css
.tor_network_dropdown {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.tor_network_status {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  overflow: hidden;
  color: #ffffff;
  cursor: pointer;
  user-select: none;
  background:
    linear-gradient(
      135deg,
      rgba(48, 14, 40, 0.98),
      rgba(18, 7, 20, 0.98)
    );
  border: 1px solid rgba(216, 140, 189, 0.35);
  border-radius: 20px;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.tor_network_status::-webkit-details-marker {
  display: none;
}

.tor_network_status::marker {
  display: none;
  content: "";
}

.tor_network_status:hover,
.tor_network_status:focus-visible {
  background:
    linear-gradient(
      135deg,
      rgba(61, 18, 51, 0.99),
      rgba(23, 8, 25, 0.99)
    );
  border-color: rgba(216, 140, 189, 0.65);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(216, 140, 189, 0.12);
  outline: none;
}

.tor_network_status:active {
  transform: scale(0.995);
}

.tor_network_status_indicator {
  position: relative;
  z-index: 2;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  margin-right: 18px;
  background: #55e68a;
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(85, 230, 138, 0.12),
    0 0 18px rgba(85, 230, 138, 0.8);
  animation: torStatusPulse 1.8s ease-in-out infinite;
}

.tor_network_marquee {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image:
    linear-gradient(
      to right,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
  -webkit-mask-image:
    linear-gradient(
      to right,
      transparent,
      #000 8%,
      #000 92%,
      transparent
    );
}

.tor_network_marquee_track {
  display: flex;
  width: max-content;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: torMarquee 15s linear infinite;
}

.tor_network_marquee_track > span {
  flex: 0 0 auto;
  padding-right: 80px;
}

.tor_network_status:hover .tor_network_marquee_track {
  animation-play-state: paused;
}

.tor_network_status_arrow {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: #d88cbd;
  font-size: 1.45rem;
  line-height: 1;
  text-shadow: 0 0 14px rgba(216, 140, 189, 0.55);
}

.tor_network_status_arrow_left {
  margin-right: 16px;
  animation: torArrowLeft 1.15s ease-in-out infinite;
}

.tor_network_status_arrow_right {
  margin-left: 16px;
  transform: rotate(180deg);
  animation: torArrowRight 1.15s ease-in-out infinite;
}

.tor_network_dropdown_content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    grid-template-rows 600ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 380ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tor_network_dropdown_content > .tor_network_container {
  min-height: 0;
  overflow: hidden;
}

.tor_network_dropdown[open] .tor_network_dropdown_content {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.tor_network_dropdown[open] .tor_network_status {
  border-color: rgba(216, 140, 189, 0.6);
  border-radius: 20px 20px 10px 10px;
}

.tor_network_dropdown[open] .tor_network_container {
  margin-top: 18px;
}

.tor_network_dropdown[open] .tor_network_status_arrow_left {
  transform: rotate(90deg);
  animation: none;
}

.tor_network_dropdown[open] .tor_network_status_arrow_right {
  transform: rotate(90deg);
  animation: none;
}

@keyframes torMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes torStatusPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 0 5px rgba(85, 230, 138, 0.12),
      0 0 18px rgba(85, 230, 138, 0.8);
  }

  50% {
    opacity: 0.72;
    transform: scale(0.84);
    box-shadow:
      0 0 0 9px rgba(85, 230, 138, 0.05),
      0 0 10px rgba(85, 230, 138, 0.45);
  }
}

@keyframes torArrowLeft {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(9px);
  }
}

@keyframes torArrowRight {
  0%,
  100% {
    transform: rotate(180deg) translateX(0);
  }

  50% {
    transform: rotate(180deg) translateX(9px);
  }
}

@media (max-width: 760px) {
  .tor_network_status {
    min-height: 62px;
    padding: 0 12px;
    border-radius: 16px;
  }

  .tor_network_status_indicator {
    width: 9px;
    height: 9px;
    flex-basis: 9px;
    margin-right: 10px;
  }

  .tor_network_status_arrow {
    width: 25px;
    height: 25px;
    flex-basis: 25px;
    font-size: 1.15rem;
  }

  .tor_network_status_arrow_left {
    margin-right: 7px;
  }

  .tor_network_status_arrow_right {
    margin-left: 7px;
  }

  .tor_network_marquee_track {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    animation-duration: 13s;
  }

  .tor_network_marquee_track > span {
    padding-right: 50px;
  }

  .tor_network_dropdown[open] .tor_network_container {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tor_network_status_indicator,
  .tor_network_status_arrow,
  .tor_network_marquee_track {
    animation: none;
  }

  .tor_network_dropdown_content {
    transition: none;
  }
}



.tor_network_section .tor_network_dropdown {
  display: block;
  flex: 0 1 600px;
  width: calc(100% - 40px) !important;
  max-width: 1300px !important;
  min-width: 0;
  margin: 0 auto !important;
}

.tor_network_section .tor_network_status {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.tor_network_section .tor_network_dropdown_content {
  width: 100%;
  max-width: 100%;
}

.tor_network_section .tor_network_container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}



/* Laufschrift von rechts nach links einblenden */

.tor_network_status .tor_network_marquee {
  position: relative;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.tor_network_status .tor_network_marquee_track {
  position: relative;
  left: 100%;
  display: inline-flex;
  align-items: center;
  width: max-content;
  flex: 0 0 auto;
  transform: translateX(0);
  will-change: left, transform;
  animation: torMarqueeFromRight 15s linear infinite !important;
}

@keyframes torMarqueeFromRight {
  0% {
    left: 100%;
    transform: translateX(0);
  }

  100% {
    left: 0;
    transform: translateX(-100%);
  }
}

.tor_network_status:hover .tor_network_marquee_track {
  animation-play-state: paused !important;
}

@media (max-width: 760px) {
  .tor_network_status .tor_network_marquee_track {
    animation-duration: 9s !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tor_network_status .tor_network_marquee_track {
    left: 0;
    transform: none;
    animation: none !important;
  }
}



.tor_knight_notice {
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  margin-top: 30px;
  padding: 26px 30px;
  text-align: left;
  background:
    linear-gradient(
      135deg,
      rgba(216, 140, 189, 0.12),
      rgba(255, 255, 255, 0.04)
    );
  border: 1px solid rgba(216, 140, 189, 0.3);
  border-radius: 20px;
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.tor_knight_notice:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 140, 189, 0.55);
  box-shadow:
    0 20px 42px rgba(0, 0, 0, 0.3),
    0 0 28px rgba(216, 140, 189, 0.1);
}

.tor_knight_icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  font-size: 32px;
  background: rgba(216, 140, 189, 0.13);
  border: 1px solid rgba(216, 140, 189, 0.3);
  border-radius: 18px;
  box-shadow: 0 0 24px rgba(216, 140, 189, 0.1);
}

.tor_knight_content {
  flex: 1;
  min-width: 0;
}

.tor_knight_label {
  display: inline-block;
  margin-bottom: 8px;
  color: #d88cbd;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tor_knight_content h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.tor_knight_content p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.tor_knight_requirement {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  padding: 7px 13px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(216, 140, 189, 0.12);
  border: 1px solid rgba(216, 140, 189, 0.25);
  border-radius: 999px;
}

@media (max-width: 760px) {
  .tor_knight_notice {
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
  }

  .tor_knight_icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 25px;
    border-radius: 15px;
  }

  .tor_knight_content h4 {
    font-size: 1.15rem;
  }

  .tor_knight_content p {
    font-size: 0.92rem;
  }
}


.tor_knight_requirements {
  margin-top: 18px;
}

.tor_knight_requirements_title {
  display: block;
  margin-bottom: 10px;
  color: #d88cbd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tor_knight_requirements_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tor_knight_requirements_list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(216, 140, 189, 0.12);
  border: 1px solid rgba(216, 140, 189, 0.28);
  border-radius: 999px;
}

.tor_knight_requirements_list li > span {
  color: #72e89a;
  font-size: 0.9rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(114, 232, 154, 0.55);
}

@media (max-width: 760px) {
  .tor_knight_requirements_list {
    flex-direction: column;
    align-items: stretch;
  }

  .tor_knight_requirements_list li {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }
}



.tor_disclaimer_card {
  position: relative;
  width: 100%;
  margin-top: 28px;
  padding: 30px;
  overflow: hidden;
  text-align: left;
  background:
    linear-gradient(
      145deg,
      rgba(38, 13, 32, 0.97),
      rgba(16, 7, 19, 0.99)
    );
  border: 1px solid rgba(216, 140, 189, 0.3);
  border-radius: 22px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tor_disclaimer_card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(216, 140, 189, 0.9),
      transparent
    );
}

.tor_disclaimer_header {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tor_disclaimer_icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  font-size: 28px;
  background: rgba(255, 190, 92, 0.1);
  border: 1px solid rgba(255, 190, 92, 0.28);
  border-radius: 18px;
  box-shadow:
    0 0 22px rgba(255, 190, 92, 0.08);
}

.tor_disclaimer_heading {
  min-width: 0;
}

.tor_disclaimer_label {
  display: block;
  margin-bottom: 6px;
  color: #d88cbd;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tor_disclaimer_heading h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 750;
  line-height: 1.3;
}

.tor_disclaimer_divider {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  background:
    linear-gradient(
      90deg,
      rgba(216, 140, 189, 0.4),
      rgba(255, 255, 255, 0.08),
      transparent
    );
}

.tor_disclaimer_body {
  display: grid;
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tor_disclaimer_item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.tor_disclaimer_item:hover {
  transform: translateY(-2px);
  background: rgba(216, 140, 189, 0.07);
  border-color: rgba(216, 140, 189, 0.25);
}

.tor_disclaimer_item_icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  font-size: 18px;
  background: rgba(216, 140, 189, 0.1);
  border: 1px solid rgba(216, 140, 189, 0.2);
  border-radius: 12px;
}

.tor_disclaimer_item strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 750;
}

.tor_disclaimer_item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  line-height: 1.65;
}

.tor_disclaimer_footer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  background: rgba(216, 140, 189, 0.08);
  border: 1px solid rgba(216, 140, 189, 0.18);
  border-radius: 15px;
}

.tor_disclaimer_footer > span {
  flex: 0 0 auto;
  font-size: 17px;
}

.tor_disclaimer_footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.6;
}

@media (max-width: 850px) {
  .tor_disclaimer_body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .tor_disclaimer_card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .tor_disclaimer_header {
    align-items: flex-start;
    gap: 14px;
  }

  .tor_disclaimer_icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 23px;
    border-radius: 15px;
  }

  .tor_disclaimer_heading h4 {
    font-size: 1.2rem;
  }

  .tor_disclaimer_item {
    padding: 16px;
  }

  .tor_disclaimer_footer {
    padding: 15px;
  }
}


```css
.knight_recruitment_section {
  width: 100%;
  padding: 25px 20px 45px;
}

.knight_recruitment_card {
  position: relative;
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 48px 50px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(
      circle at top center,
      rgba(216, 140, 189, 0.16),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      rgba(42, 12, 35, 0.97),
      rgba(15, 7, 18, 0.99)
    );
  border: 1px solid rgba(216, 140, 189, 0.3);
  border-radius: 28px;
  box-shadow:
    0 25px 65px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.knight_recruitment_card::before {
  position: absolute;
  top: 0;
  left: 15%;
  width: 70%;
  height: 3px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(216, 140, 189, 0.95),
      transparent
    );
  box-shadow: 0 0 22px rgba(216, 140, 189, 0.5);
}

.knight_recruitment_icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 20px;
  font-size: 38px;
  background: rgba(216, 140, 189, 0.12);
  border: 1px solid rgba(216, 140, 189, 0.3);
  border-radius: 22px;
  box-shadow:
    0 0 30px rgba(216, 140, 189, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: knightShieldFloat 3.2s ease-in-out infinite;
}

.knight_recruitment_header {
  max-width: 850px;
  margin: 0 auto;
}

.knight_recruitment_label {
  display: inline-block;
  margin-bottom: 12px;
  color: #d88cbd;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.knight_recruitment_header h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 750;
  line-height: 1.16;
  text-wrap: balance;
  text-shadow: 0 0 25px rgba(216, 140, 189, 0.15);
}

.knight_recruitment_intro {
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.knight_recruitment_contact {
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
}

.knight_recruitment_divider {
  width: min(100%, 850px);
  height: 1px;
  margin: 34px auto;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(216, 140, 189, 0.5),
      transparent
    );
}

.knight_recruitment_requirements {
  width: 100%;
}

.knight_recruitment_requirements h4 {
  margin: 0 0 18px;
  color: #d88cbd;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.knight_recruitment_requirements_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.knight_recruitment_requirements_list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(216, 140, 189, 0.24);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

.knight_recruitment_requirements_list li:hover {
  transform: translateY(-3px);
  background: rgba(216, 140, 189, 0.11);
  border-color: rgba(216, 140, 189, 0.5);
}

.knight_recruitment_requirements_list li > span {
  color: #72e89a;
  font-size: 1rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(114, 232, 154, 0.6);
}

.knight_recruitment_notice {
  max-width: 850px;
  margin: 30px auto 0;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.65;
  background: rgba(216, 140, 189, 0.08);
  border: 1px solid rgba(216, 140, 189, 0.18);
  border-radius: 16px;
}

@keyframes knightShieldFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 760px) {
  .knight_recruitment_section {
    padding: 20px 16px 35px;
  }

  .knight_recruitment_card {
    padding: 38px 22px;
    border-radius: 22px;
  }

  .knight_recruitment_icon {
    width: 64px;
    height: 64px;
    font-size: 31px;
    border-radius: 18px;
  }

  .knight_recruitment_header h3 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .knight_recruitment_intro,
  .knight_recruitment_contact {
    font-size: 0.98rem;
  }

  .knight_recruitment_requirements_list {
    flex-direction: column;
    align-items: stretch;
  }

  .knight_recruitment_requirements_list li {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .knight_recruitment_icon {
    animation: none;
  }
}


.knight_recruitment_text {
  width: min(100%, 780px);
  margin: 24px auto 0;
}

.knight_recruitment_intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}

.knight_recruitment_call {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin: 24px 0 0;
  padding: 20px 24px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  background: rgba(216, 140, 189, 0.09);
  border: 1px solid rgba(216, 140, 189, 0.24);
  border-radius: 18px;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.knight_recruitment_call > span:first-child {
  font-size: 1.65rem;
}

.knight_recruitment_call strong {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 800;
}

.knight_recruitment_call > span:last-child {
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .knight_recruitment_intro {
    font-size: 0.98rem;
  }

  .knight_recruitment_call {
    padding: 18px;
  }
}






```css
/* =========================================================
   DESIGN ANPASSUNG FÜR NEUE BEREICHE

   Tor Netzwerk
   Ritter gesucht
   Tor Disclaimer

   Diese Regeln ganz am Ende der CSS Datei einfügen
========================================================= */


/* =========================================================
   GEMEINSAME HAUPTKARTEN
========================================================= */

.tor_network_container,
.knight_recruitment_card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(215, 179, 95, 0.14),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 92%,
      rgba(255, 79, 163, 0.14),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.09),
      rgba(255, 79, 163, 0.075)
    ),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}


/* Gold Pink Linie am oberen Kartenrand */

.tor_network_container::before,
.knight_recruitment_card::before {
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 3px;
  content: "";
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      var(--pink-light),
      transparent
    );
  box-shadow:
    0 0 18px rgba(215, 179, 95, 0.3),
    0 0 26px rgba(255, 79, 163, 0.24);
  pointer-events: none;
}


/* Dekorative Lichtfläche */

.tor_network_container::after,
.knight_recruitment_card::after {
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 380px;
  height: 380px;
  content: "";
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(255, 79, 163, 0.12),
      transparent 68%
    );
  filter: blur(20px);
  pointer-events: none;
}


/* Inhalte über den dekorativen Flächen halten */

.tor_network_container > *,
.knight_recruitment_card > * {
  position: relative;
  z-index: 1;
}


/* =========================================================
   TOR STATUSLEISTE
========================================================= */

.tor_network_status {
  color: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.12),
      rgba(255, 79, 163, 0.1)
    ),
    rgba(7, 4, 7, 0.92);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tor_network_status:hover,
.tor_network_status:focus-visible {
  border-color: var(--border-pink);
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.17),
      rgba(255, 79, 163, 0.15)
    ),
    rgba(12, 6, 12, 0.96);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(255, 79, 163, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tor_network_status_arrow {
  color: var(--gold-light);
  text-shadow:
    0 0 12px rgba(215, 179, 95, 0.42);
}

.tor_network_marquee {
  color: var(--white);
}

.tor_network_marquee_track {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow:
    0 0 14px rgba(215, 179, 95, 0.18);
}

.tor_network_status_indicator {
  background: #55e68a;
  box-shadow:
    0 0 0 5px rgba(85, 230, 138, 0.1),
    0 0 18px rgba(85, 230, 138, 0.7),
    0 0 28px rgba(215, 179, 95, 0.18);
}


/* =========================================================
   BEREICHSBESCHRIFTUNGEN
========================================================= */

.tor_network_label,
.tor_knight_label,
.knight_recruitment_label,
.tor_disclaimer_label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  padding: 9px 17px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(215, 179, 95, 0.32);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.13),
      rgba(255, 79, 163, 0.09)
    ),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}


/* =========================================================
   HAUPTÜBERSCHRIFTEN
========================================================= */

#tor_network_title,
.knight_recruitment_header h3,
.tor_knight_content h3,
.tor_knight_content h4,
.tor_disclaimer_heading h4 {
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-shadow:
    0 0 24px rgba(255, 79, 163, 0.12);
}

#tor_network_title,
.knight_recruitment_header h3 {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}


/* =========================================================
   BESCHREIBUNGSTEXTE
========================================================= */

.tor_network_text,
.knight_recruitment_intro,
.knight_recruitment_contact,
.tor_knight_content p,
.tor_disclaimer_item p,
.tor_disclaimer_footer p {
  color: var(--soft-white);
}

.tor_network_text,
.knight_recruitment_intro,
.knight_recruitment_contact {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8;
}


/* =========================================================
   GROSSE SYMBOLE
========================================================= */

.tor_network_icon,
.knight_recruitment_icon,
.tor_knight_icon,
.tor_disclaimer_icon {
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  background:
    linear-gradient(
      145deg,
      rgba(215, 179, 95, 0.18),
      rgba(255, 79, 163, 0.13)
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(255, 79, 163, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}


/* Tor Hauptsymbol als sichtbare Karte */

.tor_network_icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  border-radius: 24px;
}


/* =========================================================
   TOR LINKKARTEN
========================================================= */

.tor_network_card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(215, 179, 95, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(215, 179, 95, 0.07),
      rgba(255, 79, 163, 0.055)
    ),
    var(--glass);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.tor_network_card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(215, 179, 95, 0.16),
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(255, 79, 163, 0.14),
      transparent 48%
    );
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.tor_network_card:hover,
.tor_network_card:focus-visible {
  color: var(--white);
  transform: translateY(-7px);
  border-color: var(--border-pink);
  background:
    linear-gradient(
      145deg,
      rgba(215, 179, 95, 0.11),
      rgba(255, 79, 163, 0.1)
    ),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.4),
    0 0 34px rgba(255, 79, 163, 0.12);
}

.tor_network_card:hover::before,
.tor_network_card:focus-visible::before {
  opacity: 1;
}

.tor_network_card > * {
  position: relative;
  z-index: 1;
}

.tor_network_card_icon {
  color: var(--gold-light);
  border: 1px solid rgba(215, 179, 95, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(215, 179, 95, 0.18),
      rgba(255, 79, 163, 0.11)
    );
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.tor_network_card_content strong {
  color: var(--white);
  font-weight: 900;
}

.tor_network_card_content span {
  color: rgba(255, 255, 255, 0.68);
}

.tor_network_arrow {
  color: var(--gold-light);
  text-shadow:
    0 0 12px rgba(215, 179, 95, 0.35);
}


/* =========================================================
   TOR HINWEIS
========================================================= */

.tor_network_notice {
  width: fit-content;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  border: 1px solid rgba(215, 179, 95, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.1),
      rgba(255, 79, 163, 0.075)
    ),
    rgba(255, 255, 255, 0.025);
}


/* =========================================================
   RITTER HAUPTKARTE
========================================================= */

.knight_recruitment_card {
  border-color: var(--border-gold);
}

.knight_recruitment_icon {
  border-radius: 24px;
}

.knight_recruitment_label {
  margin-bottom: 16px;
}

.knight_recruitment_header h3 {
  color: var(--white);
}

.knight_recruitment_divider {
  height: 2px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      var(--pink-light),
      transparent
    );
  box-shadow:
    0 0 16px rgba(255, 79, 163, 0.16);
}


/* =========================================================
   RITTER EINLADUNGSKARTE
========================================================= */

.knight_recruitment_call {
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.11),
      rgba(255, 79, 163, 0.09)
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.knight_recruitment_call > span:first-child {
  filter:
    drop-shadow(0 0 12px rgba(215, 179, 95, 0.32));
}

.knight_recruitment_call strong {
  color: var(--gold-light);
  font-weight: 900;
}

.knight_recruitment_call > span:last-child {
  color: var(--soft-white);
}


/* =========================================================
   RITTER VORAUSSETZUNGEN
========================================================= */

.knight_recruitment_requirements h4,
.tor_knight_requirements_title {
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.knight_recruitment_requirements_list,
.tor_knight_requirements_list {
  gap: 14px;
}

.knight_recruitment_requirements_list li,
.tor_knight_requirements_list li,
.tor_knight_requirement {
  color: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.11),
      rgba(255, 79, 163, 0.08)
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.knight_recruitment_requirements_list li:hover,
.tor_knight_requirements_list li:hover,
.tor_knight_requirement:hover {
  transform: translateY(-4px);
  border-color: var(--border-pink);
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.16),
      rgba(255, 79, 163, 0.14)
    ),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(255, 79, 163, 0.11);
}


/* Goldene Häkchen statt grüner Häkchen */

.knight_recruitment_requirements_list li > span,
.tor_knight_requirements_list li > span {
  color: var(--gold-light);
  font-weight: 900;
  text-shadow:
    0 0 10px rgba(215, 179, 95, 0.65),
    0 0 18px rgba(255, 79, 163, 0.18);
}


/* =========================================================
   RITTER HINWEIS INNERHALB DES TOR BEREICHS
========================================================= */

.tor_knight_notice {
  border: 1px solid var(--border-gold);
  border-radius: 26px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.1),
      rgba(255, 79, 163, 0.08)
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tor_knight_notice:hover {
  border-color: var(--border-pink);
  box-shadow:
    0 26px 62px rgba(0, 0, 0, 0.38),
    0 0 30px rgba(255, 79, 163, 0.12);
}

.tor_knight_label {
  margin-right: 0;
  margin-left: 0;
}


/* =========================================================
   RITTER ABSCHLUSSHINWEIS
========================================================= */

.knight_recruitment_notice {
  color: var(--soft-white);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.1),
      rgba(255, 79, 163, 0.075)
    ),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}


/* =========================================================
   DISCLAIMER HAUPTKARTE
========================================================= */

.tor_disclaimer_card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(215, 179, 95, 0.12),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.085),
      rgba(255, 79, 163, 0.065)
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tor_disclaimer_card::before {
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 3px;
  content: "";
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      var(--pink-light),
      transparent
    );
  box-shadow:
    0 0 18px rgba(215, 179, 95, 0.22),
    0 0 24px rgba(255, 79, 163, 0.18);
}

.tor_disclaimer_label {
  margin-right: 0;
  margin-left: 0;
}

.tor_disclaimer_divider {
  height: 1px;
  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--pink-light),
      transparent
    );
  opacity: 0.55;
}


/* =========================================================
   DISCLAIMER EINZELKARTEN
========================================================= */

.tor_disclaimer_item {
  border: 1px solid rgba(215, 179, 95, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(215, 179, 95, 0.065),
      rgba(255, 79, 163, 0.05)
    ),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.tor_disclaimer_item:hover {
  transform: translateY(-5px);
  border-color: var(--border-pink);
  background:
    linear-gradient(
      145deg,
      rgba(215, 179, 95, 0.1),
      rgba(255, 79, 163, 0.09)
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 26px rgba(255, 79, 163, 0.1);
}

.tor_disclaimer_item_icon {
  color: var(--gold-light);
  border: 1px solid rgba(215, 179, 95, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(
      145deg,
      rgba(215, 179, 95, 0.17),
      rgba(255, 79, 163, 0.1)
    );
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.tor_disclaimer_item strong {
  color: var(--gold-light);
  font-weight: 900;
}


/* =========================================================
   DISCLAIMER FUSSBEREICH
========================================================= */

.tor_disclaimer_footer {
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(215, 179, 95, 0.11),
      rgba(255, 79, 163, 0.075)
    ),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.tor_disclaimer_footer > span {
  color: var(--gold-light);
  filter:
    drop-shadow(0 0 10px rgba(215, 179, 95, 0.3));
}


/* =========================================================
   GEMEINSAME FOKUSANZEIGE
========================================================= */

.tor_network_card:focus-visible,
.tor_network_status:focus-visible {
  outline: 3px solid rgba(255, 79, 163, 0.32);
  outline-offset: 4px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .tor_network_container,
  .knight_recruitment_card {
    border-radius: 28px;
  }

  .tor_disclaimer_card {
    border-radius: 24px;
  }

  .tor_disclaimer_body {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   KLEINERE BILDSCHIRME
========================================================= */

@media (max-width: 760px) {
  .tor_network_container,
  .knight_recruitment_card {
    border-radius: 24px;
  }

  .tor_network_status {
    border-radius: 20px;
  }

  .tor_network_card,
  .tor_disclaimer_item,
  .tor_knight_notice {
    border-radius: 20px;
  }

  .tor_network_notice {
    width: 100%;
    border-radius: 16px;
  }

  .knight_recruitment_requirements_list li,
  .tor_knight_requirements_list li {
    border-radius: 16px;
  }

  .tor_disclaimer_label,
  .tor_knight_label {
    margin-right: auto;
    margin-left: auto;
  }
}


/* =========================================================
   REDUZIERTE BEWEGUNG
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .tor_network_card,
  .tor_disclaimer_item,
  .tor_knight_notice,
  .knight_recruitment_requirements_list li,
  .tor_knight_requirements_list li,
  .tor_knight_requirement {
    transition: none;
  }

  .tor_network_card:hover,
  .tor_disclaimer_item:hover,
  .tor_knight_notice:hover,
  .knight_recruitment_requirements_list li:hover,
  .tor_knight_requirements_list li:hover,
  .tor_knight_requirement:hover {
    transform: none;
  }
}
```
