@charset "UTF-8";
html {
  width: 100vw;
  scrollbar-width: none;
  font-size: 16px;
  line-height: 1;
  list-style-position: inside;
}
html::-webkit-scrollbar {
  display: none;
}

body {
  width: 100%;
  font-family: "Arial", sans-serif;
  font-size: 1em;
  color: #e7e7e7;
  background: #ffffff url("../img/bg_image_01-Ny4iqNn.jpg") no-repeat fixed center;
  background-size: cover;
  margin: 0;
  padding: 0;
}

h1 {
  display: block;
}

input, textarea {
  background: rgba(0, 0, 0, 0.6);
  font-family: "Audiowide", sans-serif;
  color: #e7e7e7;
}
input:focus, textarea:focus {
  background: rgba(126, 0, 0, 0.6);
}

/* ==========================================================================
   MAIN COMPONENTS INDEX
   Hier fließen alle ausgelagerten Seiten-Styles zentral zusammen.
   ========================================================================== */
/* =========================================
   NAVIGATION & FOOTER
   ========================================= */
.nav {
  width: 98%;
  height: auto;
  min-height: 2em;
  border-radius: 24px 24px 40px 40px;
  margin: 0 0.5%;
  position: sticky;
  z-index: 99;
  top: 0;
  left: 0;
  font-family: "Audiowide", sans-serif;
  background-color: #880000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.nav .nav-toggle {
  display: none !important;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav .nav-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 100%;
  justify-content: flex-start;
}

.nav .nav-user-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 6px 12px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav a:hover {
  color: #2bff9c;
  border-color: #2bff9c;
}

.nav a.active {
  color: #2bff9c;
  border-color: #2bff9c;
  text-shadow: 0 0 8px rgba(43, 255, 156, 0.4);
  box-shadow: 0 0 10px rgba(43, 255, 156, 0.15);
}

.nav .dropdown {
  display: inline-block;
  position: relative;
}

.nav .dropdown .dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  background: transparent;
  font-family: "Audiowide", sans-serif;
  font-size: 1em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav .dropdown .dropbtn:hover {
  color: #2bff9c;
  border-color: #2bff9c;
}

.nav .dropdown-content {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.95);
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
  border: 1px solid #880000;
  border-radius: 8px;
  z-index: 100;
  top: 100%;
  left: 5px;
  padding: 5px 0;
}

.nav .dropdown-content a {
  display: block;
  color: #fff;
  padding: 10px 15px;
  margin: 0;
  border: none;
  border-radius: 0;
  text-align: left;
}

.nav .dropdown-content a:hover {
  background-color: #880000;
  color: #2bff9c;
}

.nav .dropdown:hover .dropdown-content {
  display: block;
}

/* =========================================
   MOBILE ANSICHT: MOBILE SIDEBAR (<= 768px)
   ========================================= */
@media (max-width: 768px) {
  .nav {
    width: 100%;
    margin: 0;
    border-radius: 0;
    padding: 10px 15px;
  }
  .nav .nav-toggle {
    display: block !important;
  }
  .nav .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background-color: rgba(100, 0, 0, 0.98);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5);
    padding: 60px 20px 20px 20px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.28s ease-in-out, visibility 0s linear 0.28s;
    z-index: 100;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    visibility: hidden;
    pointer-events: none;
    will-change: transform;
    contain: paint;
  }
  .nav .nav-menu.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .nav .nav-menu a,
  .nav .nav-menu .dropbtn {
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  }
  .nav .nav-toggle[aria-expanded=true] {
    color: #2bff9c;
  }
  .nav .nav-user-actions {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .nav .nav-menu a,
  .nav .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
    margin: 0;
    box-sizing: border-box;
    border: 2px solid transparent;
  }
  .nav .dropdown-content {
    position: static;
    display: block;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: none;
    border: none;
    padding-left: 15px;
    width: 100%;
  }
  .nav .dropdown-content a {
    border: none;
  }
}
footer {
  width: 98%;
  margin: 0 0.5%;
  background-color: #880000;
  padding: 10px;
  position: fixed;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  footer {
    width: 100%;
    margin: 0;
    border-radius: 0;
    left: 0;
    bottom: 0;
  }
}
footer a {
  text-decoration: none;
  color: #ffffff;
}

footer a:hover {
  color: #2bff9c;
}

/* =========================================
   GLASSMORPHISM & UTILITIES
   ========================================= */
.content {
  width: 90%;
  margin: 20px auto 4%;
  padding: 16px;
}
@media (max-width: 768px) {
  .content {
    width: 92%;
    margin: 20px auto 95px auto;
    border-radius: 20px;
    box-sizing: border-box;
  }
}

.glass {
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(209, 70, 5, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.3);
  outline: 1px #1d1d1d;
}

.glassW {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 4px 30px #d14605;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =========================================
   ERROR PAGE STYLING
   ========================================= */
.error-page {
  text-align: center;
  padding: 60px 20px;
  color: #fff;
  box-sizing: border-box;
}
.error-page .error-code {
  font-family: "Audiowide", sans-serif;
  font-size: 7rem;
  margin: 0;
  line-height: 1;
  animation: gear-pulse 2s infinite alternate ease-in-out;
}
.error-page .error-code.text-red {
  color: #880000;
  text-shadow: 0 0 20px rgba(136, 0, 0, 0.6);
}
.error-page .error-code.text-cyan {
  color: #2bff9c;
  text-shadow: 0 0 20px rgba(43, 255, 156, 0.4);
}
.error-page .error-code.text-orange {
  color: #ff963f;
  text-shadow: 0 0 20px rgba(255, 150, 63, 0.4);
}
.error-page h1 {
  font-family: "Audiowide", sans-serif;
  color: #fff;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 15px;
  margin-bottom: 20px;
}
.error-page p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 35px auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.error-page p em {
  color: #ff963f;
  font-style: normal;
  font-weight: bold;
}
.error-page .btn-escape {
  display: inline-block;
  background: #880000;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 30px;
  font-family: "Audiowide", sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.error-page .btn-escape i {
  margin-right: 8px;
}
.error-page .btn-escape:hover {
  background: transparent;
  border-color: #2bff9c;
  color: #2bff9c;
  box-shadow: 0 0 15px rgba(43, 255, 156, 0.4);
  transform: translateY(-2px);
}

@keyframes gear-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.04);
  }
}
/* =========================================
   STARTSEITE / HOME CONTENT STYLES
   ========================================= */
.home-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  padding: 10px;
}
.home-container .home-hero {
  text-align: center;
  margin-bottom: 10px;
}
.home-container .home-hero h1 {
  font-family: "Audiowide", sans-serif;
  color: #2bff9c;
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.home-container .home-hero .slogan-box {
  max-width: 600px;
  margin: 0 auto 15px auto;
  border-left: 3px solid #880000;
  border-right: 3px solid #880000;
  padding: 0 20px;
}
.home-container .home-hero .slogan-box .slogan-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.home-container .home-hero .dev-counter {
  font-size: 0.95rem;
  opacity: 0.7;
}
.home-container .glass-inner {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(4px);
  box-sizing: border-box;
}
.home-container .lighthouse-project {
  position: relative;
  border: 1px solid rgba(43, 255, 156, 0.2);
}
.home-container .lighthouse-project .lighthouse-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #880000;
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: "Audiowide", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.home-container .lighthouse-project .project-subtitle {
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  margin-top: -5px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.home-container .lighthouse-project .lighthouse-content {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .home-container .lighthouse-project .lighthouse-content {
    grid-template-columns: 1fr;
  }
}
.home-container .lighthouse-project .investor-form-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.home-container .lighthouse-project .investor-form-box h3 {
  margin-top: 0;
  font-family: "Audiowide", sans-serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
}
.home-container .lighthouse-project .investor-form-box .mini-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.home-container .lighthouse-project .investor-form-box .mini-form input, .home-container .lighthouse-project .investor-form-box .mini-form select, .home-container .lighthouse-project .investor-form-box .mini-form button {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  box-sizing: border-box;
  font-family: inherit;
}
.home-container .lighthouse-project .investor-form-box .mini-form input, .home-container .lighthouse-project .investor-form-box .mini-form select {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #880000;
  color: #fff;
}
.home-container .lighthouse-project .investor-form-box .mini-form input:focus, .home-container .lighthouse-project .investor-form-box .mini-form select:focus {
  outline: none;
  border-color: #2bff9c;
}
.home-container .lighthouse-project .investor-form-box .mini-form button {
  background: #880000;
  color: #fff;
  border: none;
  font-family: "Audiowide", sans-serif;
  cursor: pointer;
  transition: background 0.3s ease;
}
.home-container .lighthouse-project .investor-form-box .mini-form button:hover {
  background: #5f0000;
}
.home-container .home-two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 992px) {
  .home-container .home-two-columns {
    grid-template-columns: 1fr;
  }
}
.home-container .home-two-columns .home-card .card-icon {
  font-size: 2rem;
  color: #2bff9c;
  margin-bottom: 10px;
}
.home-container .home-two-columns .home-card h3 {
  font-family: "Audiowide", sans-serif;
  margin-top: 0;
  font-size: 1.4rem;
}
.home-container .home-two-columns .home-card .premium-hint {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
  margin-top: 15px;
}
.home-container .stream-schedule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 15px;
}
.home-container .stream-schedule .schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: 0.95rem;
  align-items: center;
}
@media (max-width: 480px) {
  .home-container .stream-schedule .schedule-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
.home-container .stream-schedule .schedule-row .day {
  font-weight: bold;
  color: #880000;
}
.home-container .stream-schedule .schedule-row .time {
  color: rgba(255, 255, 255, 0.6);
}
.home-container .stream-schedule .schedule-row .topic {
  color: #fff;
  text-align: right;
}
@media (max-width: 480px) {
  .home-container .stream-schedule .schedule-row .topic {
    text-align: left;
  }
}
.home-container .stream-schedule .schedule-row.next-stream {
  background: rgba(43, 255, 156, 0.05);
  border: 1px solid rgba(43, 255, 156, 0.15);
}
.home-container .stream-schedule .schedule-row.next-stream .day {
  color: #2bff9c;
}

/* Aktuelle Beiträge auf der Startseite */
.home-news-section .home-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.home-news-section .home-section-heading h2 {
  margin: 4px 0 6px;
}
.home-news-section .home-section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
.home-news-section .home-section-kicker {
  color: #2bff9c;
  font: 0.75rem "Audiowide", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.home-news-section .home-section-link, .home-news-section .home-news-read {
  color: #2bff9c;
  font-weight: 700;
  text-decoration: none;
}
.home-news-section .home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.home-news-section .home-news-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.home-news-section .home-news-card:hover {
  transform: translateY(-3px);
  border-color: rgba(43, 255, 156, 0.45);
}
.home-news-section .home-news-image {
  display: block;
  height: 150px;
  overflow: hidden;
}
.home-news-section .home-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.home-news-section .home-news-image:hover img {
  transform: scale(1.035);
}
.home-news-section .home-news-body {
  padding: 17px;
}
.home-news-section .home-news-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.76rem;
  text-transform: uppercase;
}
.home-news-section .home-news-meta span {
  color: #ff963f;
}
.home-news-section h3 {
  margin: 10px 0;
  font: 1.05rem/1.35 "Audiowide", sans-serif;
}
.home-news-section h3 a {
  color: #fff;
  text-decoration: none;
}
.home-news-section .home-news-body p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}
.home-news-section .home-news-read {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .home-news-section .home-news-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .home-news-section .home-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-news-section .home-news-grid {
    grid-template-columns: 1fr;
  }
}

.home-schedule-icon {
  font-size: 2rem;
  color: cyan;
  margin-bottom: 10px;
}

/* Leuchtturm-Anfrage */
.lighthouse-project .investor-form-box .investor-form-intro {
  margin: -5px 0 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.5;
}
.lighthouse-project .investor-form-box .mini-form > div:not(.mini-form-consent):not(.contact-honeypot) {
  display: grid;
  gap: 6px;
}
.lighthouse-project .investor-form-box .mini-form label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
}
.lighthouse-project .investor-form-box .mini-form textarea {
  width: 100%;
  min-height: 105px;
  padding: 10px;
  box-sizing: border-box;
  resize: vertical;
  border: 1px solid #880000;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font: inherit;
}
.lighthouse-project .investor-form-box .mini-form textarea:focus {
  outline: none;
  border-color: #2bff9c;
}
.lighthouse-project .investor-form-box .mini-form .mini-form-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 9px;
  align-items: start;
}
.lighthouse-project .investor-form-box .mini-form .mini-form-consent input {
  width: auto;
  margin-top: 3px;
}
.lighthouse-project .investor-form-box .mini-form .mini-form-consent label {
  font-weight: 400;
  line-height: 1.45;
}
.lighthouse-project .investor-form-box .mini-form [hidden] {
  display: none !important;
}
.lighthouse-project .investor-form-box .form-errors, .lighthouse-project .investor-form-box .form-success {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 8px;
}
.lighthouse-project .investor-form-box .form-errors {
  border: 1px solid #ff6d6d;
  background: rgba(120, 0, 0, 0.35);
  color: #ffd5d5;
}
.lighthouse-project .investor-form-box .form-success {
  border: 1px solid #2bff9c;
  background: rgba(43, 255, 156, 0.1);
}

/* Ausgearbeitete Leuchtturm-Präsentation */
.home-container .lighthouse-project .lighthouse-content {
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.8fr);
  align-items: start;
}
.home-container .lighthouse-project .lighthouse-text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}
.home-container .lighthouse-project .lighthouse-text > p {
  margin: 0 0 18px;
}
.home-container .lighthouse-project .lighthouse-lead {
  color: #fff;
  font-size: 1.08rem;
  border-left: 3px solid #2bff9c;
  padding-left: 16px;
}
.home-container .lighthouse-project .lighthouse-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}
.home-container .lighthouse-project .lighthouse-pillars article {
  display: flex;
  gap: 13px;
  min-width: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(43, 255, 156, 0.16);
  border-radius: 11px;
}
.home-container .lighthouse-project .lighthouse-pillars i {
  flex: 0 0 auto;
  color: #2bff9c;
  font-size: 1.2rem;
  margin-top: 2px;
}
.home-container .lighthouse-project .lighthouse-pillars h3 {
  margin: 0 0 6px;
  color: #fff;
  font: 0.9rem/1.3 "Audiowide", sans-serif;
}
.home-container .lighthouse-project .lighthouse-pillars p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}
.home-container .lighthouse-project .lighthouse-roadmap {
  padding: 14px 16px;
  background: rgba(136, 0, 0, 0.12);
  border-radius: 10px;
  border: 1px solid rgba(136, 0, 0, 0.3);
}
@media (max-width: 960px) {
  .home-container .lighthouse-project .lighthouse-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .home-container .lighthouse-project .lighthouse-pillars {
    grid-template-columns: 1fr;
  }
}

/* Gruppierter, kanalübergreifender Sendeplan */
.home-container .stream-schedule {
  gap: 16px;
}
.home-container .stream-schedule .schedule-day {
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.home-container .stream-schedule .schedule-day__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.home-container .stream-schedule .schedule-day__header h3 {
  margin: 0;
  color: #2bff9c;
  font: 1rem "Audiowide", sans-serif;
}
.home-container .stream-schedule .schedule-day__header span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}
.home-container .stream-schedule .schedule-day__slots {
  display: grid;
  gap: 1px;
}
.home-container .stream-schedule .schedule-slot {
  display: grid;
  grid-template-columns: minmax(105px, 0.65fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.015);
  border-left: 3px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.home-container .stream-schedule .schedule-slot:hover {
  background: rgba(43, 255, 156, 0.07);
  border-left-color: #2bff9c;
}
.home-container .stream-schedule .schedule-slot.next-stream {
  background: rgba(43, 255, 156, 0.08);
  border-left-color: #2bff9c;
  box-shadow: inset 0 0 20px rgba(43, 255, 156, 0.035);
}
.home-container .stream-schedule .schedule-slot.next-stream .schedule-slot__time::before {
  content: "Nächster · ";
  color: #2bff9c;
}
.home-container .stream-schedule .schedule-slot__time {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}
.home-container .stream-schedule .schedule-slot__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-container .stream-schedule .schedule-slot__content strong {
  font-family: "Audiowide", sans-serif;
}
.home-container .stream-schedule .schedule-slot__content small {
  color: rgba(255, 255, 255, 0.55);
}
.home-container .stream-schedule .schedule-slot__link {
  color: #b88cff;
  font-weight: 700;
  white-space: nowrap;
}
.home-container .stream-schedule .schedule-empty {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
.home-container .stream-schedule .schedule-empty p {
  margin: 0;
}
.home-container .stream-schedule .schedule-empty i {
  color: #2bff9c;
  font-size: 1.4rem;
}
@media (max-width: 650px) {
  .home-container .stream-schedule .schedule-slot {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }
  .home-container .stream-schedule .schedule-slot__time {
    grid-column: 1/-1;
  }
  .home-container .stream-schedule .schedule-slot__link {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (max-width: 430px) {
  .home-container .stream-schedule .schedule-slot {
    grid-template-columns: 1fr;
  }
  .home-container .stream-schedule .schedule-slot__link {
    grid-column: 1;
    grid-row: auto;
  }
}

/* =========================================
   GAMES & PNP OVERVIEW STYLES
   ========================================= */
.games-page-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  padding: 10px;
  /* --- START CODE BLOCK: CARD INTERACTIVE GLO-UP --- */
}
.games-page-container .games-header {
  text-align: center;
  margin-bottom: 10px;
  /* --- START CODE BLOCK: GLOWING HEADER --- */
  /* --- END CODE BLOCK: GLOWING HEADER --- */
}
.games-page-container .games-header h1 {
  font-family: "Audiowide", sans-serif;
  color: #2bff9c;
  font-size: 2.5rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(43, 255, 156, 0.3), 0 0 20px rgba(43, 255, 156, 0.1);
}
.games-page-container .games-header .games-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}
.games-page-container .games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
@media (max-width: 992px) {
  .games-page-container .games-grid {
    grid-template-columns: 1fr;
  }
}
.games-page-container .game-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* --- END CODE BLOCK: CARD INTERACTIVE GLO-UP --- */
  /* --- START CODE BLOCK: INTERACTIVE TAGS --- */
  /* --- END CODE BLOCK: INTERACTIVE TAGS --- */
  /* --- START CODE BLOCK: PREMIUM LOCKED STATE --- */
  /* --- END CODE BLOCK: PREMIUM LOCKED STATE --- */
}
.games-page-container .game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(43, 255, 156, 0.5);
  box-shadow: 0 10px 25px rgba(43, 255, 156, 0.15);
}
.games-page-container .game-card .card-header-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.games-page-container .game-card .card-header-row .content-type-badge {
  color: #ff963f;
  background: rgba(255, 150, 63, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 150, 63, 0.2);
}
.games-page-container .game-card .card-header-row .content-status-badge {
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.games-page-container .game-card h2 {
  font-family: "Audiowide", sans-serif;
  margin: 0;
  font-size: 1.6rem;
  color: #fff;
}
.games-page-container .game-card .card-sub {
  margin: 4px 0 15px 0;
  font-size: 0.95rem;
  color: #2bff9c;
  font-weight: normal;
}
.games-page-container .game-card .card-description {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  flex-grow: 1;
  margin-bottom: 20px;
}
.games-page-container .game-card .feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.games-page-container .game-card .feature-tags .tag {
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s ease;
}
.games-page-container .game-card .feature-tags .tag i {
  color: #2bff9c;
  margin-right: 4px;
  transition: transform 0.2s ease;
}
.games-page-container .game-card .feature-tags .tag:hover {
  border-color: rgba(43, 255, 156, 0.3);
  background: rgba(43, 255, 156, 0.03);
  transform: translateY(-2px) scale(1.03);
}
.games-page-container .game-card .feature-tags .tag:hover i {
  transform: scale(1.2);
}
.games-page-container .game-card .card-action {
  /* --- START CODE BLOCK: FREE & PREMIUM BUTTONS --- */
  /* --- END CODE BLOCK: FREE & PREMIUM BUTTONS --- */
}
.games-page-container .game-card .card-action .btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-family: "Audiowide", sans-serif;
  font-size: 1rem;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.games-page-container .game-card .card-action .btn-free {
  background: #880000;
  color: #fff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(136, 0, 0, 0.3);
}
.games-page-container .game-card .card-action .btn-free:hover {
  background: transparent;
  border-color: #2bff9c;
  color: #2bff9c;
  box-shadow: 0 4px 15px rgba(43, 255, 156, 0.3);
}
.games-page-container .game-card .card-action .btn-premium {
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}
.games-page-container .game-card .card-action .btn-premium:hover {
  background: rgba(136, 0, 0, 0.05);
  color: #880000;
  border-color: #880000;
  box-shadow: none;
}
.games-page-container .game-card.premium-locked {
  background: rgba(0, 0, 0, 0.5);
  border-left: 4px solid rgba(136, 0, 0, 0.6);
}
.games-page-container .game-card.premium-locked:hover {
  border-color: rgba(136, 0, 0, 0.3);
  border-left-color: #880000;
  box-shadow: 0 10px 25px rgba(136, 0, 0, 0.2);
}

/* =========================================
   GAME DETAIL & ADMIN
   ========================================= */
.game-detail,
.admin-list-page {
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 20px auto 80px;
  padding: clamp(20px, 4vw, 38px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(5, 8, 12, 0.88);
  color: #fff;
  backdrop-filter: blur(12px);
}

.game-detail__header {
  margin-bottom: 26px;
}
.game-detail__header h1 {
  margin: 12px 0 6px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.game-detail .card-header-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.game-detail .content-type-badge,
.game-detail .content-status-badge {
  padding: 3px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.game-detail .content-type-badge {
  color: #ff963f;
}
.game-detail .card-sub {
  color: #2bff9c;
}
.game-detail__content {
  line-height: 1.7;
}
.game-detail__back {
  display: inline-block;
  margin-top: 30px;
  color: #ff963f;
  text-decoration: none;
}

.premium-gate {
  padding: 45px 25px;
  border: 1px dashed rgba(136, 0, 0, 0.7);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  text-align: center;
}
.premium-gate > .fa {
  color: #880000;
  font-size: 2.5rem;
}
.premium-gate h2 {
  font-family: "Audiowide", sans-serif;
}

.admin-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.admin-list-header h1 {
  margin: 5px 0 8px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
}
.admin-list-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 18px;
  box-sizing: border-box;
  border-radius: 9px;
  font-family: "Audiowide", sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border: 1px solid #b00000;
  background: #a00000;
  color: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th,
.admin-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: middle;
}
.admin-table th {
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.admin-table td small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
}

.admin-table-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.admin-table-actions a {
  color: #2bff9c;
  text-decoration: none;
}
.admin-table-actions form {
  margin: 0;
}
.admin-table-actions button {
  border: 0;
  background: transparent;
  color: #ff963f;
  cursor: pointer;
}

.status-pill {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 0.75rem;
}
.status-pill--live {
  border-color: #2bff9c;
  color: #2bff9c;
}
.status-pill--scheduled {
  border-color: #ff963f;
  color: #ff963f;
}
.status-pill--archived {
  opacity: 0.6;
}

.manual-access-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.5fr) auto;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.manual-access-form label {
  display: grid;
  gap: 8px;
}
.manual-access-form input {
  min-height: 42px;
  padding: 9px 11px;
  box-sizing: border-box;
  border: 1px solid #880000;
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
}

@media (max-width: 760px) {
  .game-detail,
  .admin-list-page {
    width: calc(100% - 16px);
    padding: 18px 14px;
  }
  .admin-list-header {
    align-items: stretch;
    flex-direction: column;
  }
  .manual-access-form {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   NEWS & DEV-BLOG STYLES
   ========================================= */
.news-page-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  color: #fff;
  padding: 10px;
}
.news-page-container .news-header {
  text-align: center;
  margin-bottom: 10px;
}
.news-page-container .news-header h1 {
  font-family: "Audiowide", sans-serif;
  color: #2bff9c;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.news-page-container .news-header .news-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}
.news-page-container .news-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-page-container .news-card {
  border-left: 4px solid #880000;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.news-page-container .news-card:hover {
  transform: translateX(6px);
  border-left-color: #2bff9c;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.news-page-container .news-card .news-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.news-page-container .news-card .news-meta .news-category {
  color: #2bff9c;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-page-container .news-card .news-meta .news-date {
  color: rgba(255, 255, 255, 0.5);
}
.news-page-container .news-card h3 {
  font-family: "Audiowide", sans-serif;
  margin: 0 0 10px 0;
  font-size: 1.6rem;
  color: #fff;
}
.news-page-container .news-card p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
}
.news-page-container .news-card .read-more-btn {
  display: inline-block;
  color: #ff963f;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.news-page-container .news-card .read-more-btn i {
  margin-left: 5px;
  transition: transform 0.2s ease;
}
.news-page-container .news-card .read-more-btn:hover {
  color: #2bff9c;
}
.news-page-container .news-card .read-more-btn:hover i {
  transform: translateX(4px);
}

.news-detail, .news-editor {
  max-width: 1080px;
  margin: 25px auto;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(4, 8, 13, 0.92);
}

.news-detail header {
  margin: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-detail h1 {
  font-family: "Audiowide", sans-serif;
  color: #2bff9c;
}

.news-detail-image {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 14px;
  margin: 24px 0;
}

.news-markdown {
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.news-markdown h2, .news-markdown h3 {
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
}

.news-markdown a {
  color: #ff963f;
}

.news-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.news-editor-grid textarea {
  min-height: 420px;
  width: 100%;
}

.news-editor-grid aside {
  padding: 18px;
  border: 1px solid rgba(43, 255, 156, 0.25);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  overflow: auto;
}

.news-empty {
  text-align: center;
  opacity: 0.75;
  padding: 40px;
}

@media (max-width: 850px) {
  .news-editor-grid {
    grid-template-columns: 1fr;
  }
  .news-card .news-meta {
    flex-direction: column;
    gap: 6px;
  }
}
/* Symfony form layout for the editorial backend. */
.news-editor {
  margin-top: 48px;
}
.news-editor .streamer-form-intro {
  margin-bottom: 28px;
}
.news-editor .streamer-form-intro .streamer-form-kicker {
  display: block;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-editor .streamer-form-intro h1 {
  margin: 0 0 10px;
}
.news-editor .streamer-form-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.news-editor fieldset {
  min-width: 0;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(43, 255, 156, 0.28);
  border-radius: 16px;
  background: rgba(7, 11, 16, 0.62);
}
.news-editor legend {
  padding: 0 10px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: 1rem;
}
.news-editor form > ul,
.news-editor form > div > ul {
  color: #ff8c8c;
}
.news-editor .streamer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-bottom: 22px;
}
.news-editor form label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Audiowide", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.news-editor input[type=text],
.news-editor input[type=datetime-local],
.news-editor textarea,
.news-editor select {
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(190, 0, 0, 0.95);
  border-radius: 8px;
  outline: none;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.news-editor input[type=text]:focus,
.news-editor input[type=datetime-local]:focus,
.news-editor textarea:focus,
.news-editor select:focus {
  border-color: #2bff9c;
  box-shadow: 0 0 0 3px rgba(43, 255, 156, 0.12);
}
.news-editor textarea {
  resize: vertical;
}
.news-editor select {
  color-scheme: dark;
}
.news-editor #news_excerpt {
  min-height: 110px;
  margin-bottom: 22px;
}
.news-editor small,
.news-editor .help-text {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.45;
}
.news-editor .news-editor-grid {
  margin: 0 0 24px;
}
.news-editor .news-editor-grid > div,
.news-editor .news-editor-grid > aside {
  min-width: 0;
}
.news-editor .news-editor-grid aside h3 {
  margin: 0 0 14px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
}
.news-editor input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #2bff9c;
}
.news-editor .streamer-form-grid > div:last-child > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.news-editor .streamer-form-grid > div:last-child > div label {
  margin: 0;
}
.news-editor .streamer-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
.news-editor .streamer-form-actions a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

@media (max-width: 720px) {
  .news-editor {
    margin-top: 20px;
    padding: 18px;
  }
  .news-editor .streamer-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .news-editor fieldset {
    padding: 16px;
  }
  .news-editor .streamer-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
/* Editorial media uploads and richer public news cards. */
.news-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 24px;
}

.news-media-field {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
}
.news-media-field h3 {
  margin: 0 0 14px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
}
.news-media-field input[type=file] {
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 8px;
  border: 1px solid rgba(190, 0, 0, 0.95);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
}

.news-image-preview {
  aspect-ratio: 16/9;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
.news-image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card {
  padding: 0;
  overflow: hidden;
}
.news-card .news-card-content {
  padding: 22px;
}
.news-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-size: 1.6rem;
}

.news-card--with-image {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}

.news-card-image {
  display: block;
  min-height: 230px;
  overflow: hidden;
}
.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.news-card-image:hover img {
  transform: scale(1.035);
}

.news-preview-notice {
  margin: 20px 0;
  padding: 12px 15px;
  border: 1px solid rgba(255, 177, 66, 0.45);
  border-radius: 10px;
  background: rgba(255, 177, 66, 0.1);
  color: #ffd28b;
}

.admin-news-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-news-title img {
  width: 64px;
  height: 42px;
  border-radius: 7px;
  object-fit: cover;
}
.admin-news-title span {
  min-width: 0;
}

.status-pill--archiviert {
  opacity: 0.65;
}

.status-pill--geplant {
  border-color: #ffb142;
  color: #ffca76;
}

.danger-action {
  color: #ff8585 !important;
}

@media (max-width: 720px) {
  .news-media-grid,
  .news-card--with-image {
    grid-template-columns: 1fr;
  }
  .news-card-image {
    min-height: 190px;
  }
}
/* =========================================
   KONTAKT FORMULAR
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1.3fr;
  grid-gap: 30px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}
.contact-grid #contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  /* Dropdown-spezifische Anpassungen */
  /* Datei-Upload spezifische Anpassungen */
  /* Den unschönen Standard-Button "Datei auswählen" im Draco-Style schmieden */
}
.contact-grid #contact-form .field-fname {
  grid-column: 1;
}
.contact-grid #contact-form .field-lname {
  grid-column: 2;
}
.contact-grid #contact-form .field-message {
  grid-column: 1/span 2;
}
.contact-grid #contact-form .field-email {
  grid-column: 1/span 2;
}
.contact-grid #contact-form .field-submit {
  grid-column: 1/span 2;
}
.contact-grid #contact-form label {
  font-family: "Audiowide", sans-serif;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-grid #contact-form input[type=text], .contact-grid #contact-form input[type=email], .contact-grid #contact-form textarea {
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #880000;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  box-sizing: border-box;
  margin-top: 5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-grid #contact-form input[type=text]:focus, .contact-grid #contact-form input[type=email]:focus, .contact-grid #contact-form textarea:focus {
  outline: none;
  border-color: #2bff9c;
  box-shadow: 0 0 8px rgba(43, 255, 156, 0.4);
}
.contact-grid #contact-form textarea {
  height: 140px;
  resize: vertical;
}
.contact-grid #contact-form input[type=submit] {
  background: #880000;
  color: #fff;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 10px 24px;
  font-family: "Audiowide", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.contact-grid #contact-form input[type=submit]:hover {
  background: transparent;
  border-color: #2bff9c;
  color: #2bff9c;
}
.contact-grid #contact-form select,
.contact-grid #contact-form input[type=file] {
  width: 100%;
  border: 1px solid #880000; /* Das typische Draco-Rot aus deinen Inputs */
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: inherit;
  /* 🔥 DER LEBENSRETTER FÜRS GRID: Einheitliche Höhe erzwingen! */
  height: 42px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-grid #contact-form select:focus,
.contact-grid #contact-form input[type=file]:focus {
  border-color: #ff3333;
  box-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
}
.contact-grid #contact-form select {
  cursor: pointer;
  padding: 0 10px; /* Padding links/rechts, da die Höhe fixiert ist */
}
.contact-grid #contact-form select option {
  background-color: #1a1a1a; /* Dunkler Hintergrund für die aufgeklappte Liste */
  color: #fff;
  padding: 10px;
}
.contact-grid #contact-form input[type=file] {
  padding: 5px; /* Etwas weniger Padding, damit der Button gut reinpasst */
  cursor: pointer;
}
.contact-grid #contact-form input[type=file]::file-selector-button {
  background: #880000;
  color: #ffffff;
  border: none;
  padding: 6px 15px;
  border-radius: 3px;
  margin-right: 15px;
  font-family: "Audiowide", sans-serif; /* Deine Headling-Schriftart */
  font-size: 0.85em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s;
  height: 100%;
}
.contact-grid #contact-form input[type=file]::file-selector-button:hover {
  background: #ff3333;
}
.contact-grid #contact-form input[type=file]::file-selector-button:active {
  transform: scale(0.95);
}
.contact-grid .contact-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  box-sizing: border-box;
  height: fit-content;
}
.contact-grid .contact-info h2 {
  font-family: "Audiowide", sans-serif;
  margin-top: 0;
  color: #2bff9c;
}
.contact-grid .contact-info p {
  color: #fff;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-gap: 25px;
    padding: 10px 10px 80px 10px;
  }
  .contact-grid .contact-info {
    order: -1;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .contact-grid #contact-form .field-fname, .contact-grid #contact-form .field-lname {
    grid-column: 1/span 2;
  }
}
@media (max-width: 768px) {
  .contact-grid #contact-form input[type=submit] {
    width: 100%;
  }
}

/* =========================================
   STREAMER ADMIN FORMULAR
   ========================================= */
.streamer-form-page {
  width: calc(100% - 32px);
  max-width: 1100px;
  margin: 20px auto 80px;
  padding: clamp(18px, 3vw, 36px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(5, 8, 12, 0.86);
  backdrop-filter: blur(12px);
}
.streamer-form-page .streamer-form-intro {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.streamer-form-page .streamer-form-intro h2 {
  margin: 4px 0 8px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
}
.streamer-form-page .streamer-form-intro p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}
.streamer-form-page .streamer-form-kicker,
.streamer-form-page .preview-label {
  color: #ff963f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.streamer-form-page .streamer-form {
  display: grid;
  gap: 24px;
}
.streamer-form-page .form-section {
  min-width: 0;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
}
.streamer-form-page .form-section legend {
  padding: 0 10px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: 1rem;
}
.streamer-form-page .form-grid,
.streamer-form-page .media-grid,
.streamer-form-page .markdown-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.streamer-form-page .form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.streamer-form-page .form-field--full {
  grid-column: 1/-1;
}
.streamer-form-page .form-field__label {
  min-height: 2.7rem;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}
.streamer-form-page .form-field label {
  margin: 0;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.streamer-form-page .form-field input:not([type=checkbox]),
.streamer-form-page .form-field select,
.streamer-form-page .form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  box-sizing: border-box;
  border: 1px solid #a60000;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font: inherit;
}
.streamer-form-page .form-field input:not([type=checkbox]):focus,
.streamer-form-page .form-field select:focus,
.streamer-form-page .form-field textarea:focus {
  outline: none;
  border-color: #2bff9c;
  box-shadow: 0 0 0 3px rgba(43, 255, 156, 0.16);
}
.streamer-form-page .form-field textarea {
  min-height: 220px;
  resize: vertical;
}
.streamer-form-page .form-field .help-text {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.5;
}
.streamer-form-page .form-field ul {
  margin: 7px 0 0;
  padding-left: 18px;
  color: #ff8585;
  font-size: 0.84rem;
}
.streamer-form-page .field-tip {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: help;
}
.streamer-form-page .media-picker {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-width: 0;
}
.streamer-form-page .media-preview {
  display: grid;
  place-items: center;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.streamer-form-page .media-preview img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.45);
}
.streamer-form-page .markdown-preview {
  min-height: 220px;
  padding: 18px;
  box-sizing: border-box;
  border: 1px solid rgba(43, 255, 156, 0.28);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.38);
  overflow-wrap: anywhere;
}
.streamer-form-page .markdown-preview .da-bio-content {
  margin-top: 12px;
}
.streamer-form-page .tag-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 32px;
  margin-top: 12px;
}
.streamer-form-page .form-visibility {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}
.streamer-form-page .form-visibility label {
  font-family: "Audiowide", sans-serif;
}
.streamer-form-page .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.streamer-form-page .form-actions .button-primary,
.streamer-form-page .form-actions .button-secondary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 10px;
  box-sizing: border-box;
  font-family: "Audiowide", sans-serif;
  text-decoration: none;
  cursor: pointer;
}
.streamer-form-page .form-actions .button-primary {
  border: 1px solid #b00000;
  background: #a00000;
  color: #fff;
}
.streamer-form-page .form-actions .button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
}
.streamer-form-page [hidden] {
  display: none !important;
}
@media (max-width: 760px) {
  .streamer-form-page {
    width: calc(100% - 16px);
    max-width: 1100px;
    padding: 16px;
    margin-top: 10px;
  }
  .streamer-form-page .form-grid,
  .streamer-form-page .media-grid,
  .streamer-form-page .markdown-grid {
    grid-template-columns: 1fr;
  }
  .streamer-form-page .form-field--full {
    grid-column: auto;
  }
  .streamer-form-page .form-field__label {
    min-height: 0;
  }
  .streamer-form-page .form-section {
    padding: 16px 12px;
  }
  .streamer-form-page .form-actions > * {
    flex: 1 1 100%;
  }
}

/* Ticketfähiges Kontaktformular */
.contact-grid #contact-form .field-subject, .contact-grid #contact-form .contact-consent {
  grid-column: 1/span 2;
}
.contact-grid #contact-form .field-submit button {
  min-height: 44px;
  padding: 10px 24px;
  border: 1px solid #b00000;
  border-radius: 10px;
  background: #a00000;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  cursor: pointer;
}
.contact-grid #contact-form .field-submit button:hover {
  border-color: #2bff9c;
  color: #2bff9c;
}
.contact-grid #contact-form .contact-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.contact-grid #contact-form .contact-consent label {
  font-family: inherit;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0;
}

.contact-page__intro {
  padding: 20px 20px 0;
}

.contact-page__intro h1 {
  margin-bottom: 6px;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
}

.form-errors, .form-success {
  grid-column: 1/-1;
  padding: 12px 14px;
  border-radius: 9px;
}

.form-errors {
  border: 1px solid #ff6d6d;
  background: rgba(115, 0, 0, 0.4);
  color: #ffd6d6;
}

.form-success {
  border: 1px solid #2bff9c;
  background: rgba(43, 255, 156, 0.1);
}

@media (max-width: 480px) {
  .contact-grid #contact-form .field-subject,
  .contact-grid #contact-form .contact-consent {
    grid-column: 1/span 2;
  }
}
/* =========================================
   ABOUT / STREAMER PROFILE
   ========================================= */
.streamers-container {
  padding: 20px;
  box-sizing: border-box;
}

.aboutStreamer {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 40px);
  width: 100%;
  box-sizing: border-box;
}
.aboutStreamer .profile-sidebar {
  display: flex;
  flex: 0 0 220px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 220px;
  perspective: 1000px;
}
.aboutStreamer .avatar-card-container {
  width: 180px;
  height: 180px;
}
.aboutStreamer .avatar-card-container.AvatarFlip:hover .avatar-card-inner, .aboutStreamer .avatar-card-container.AvatarFlip:focus-within .avatar-card-inner {
  transform: rotateY(180deg);
}
.aboutStreamer .avatar-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.aboutStreamer .avatar-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 3px solid #880000;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  background-position: center;
  background-size: cover;
  backface-visibility: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}
.aboutStreamer .avatar-front {
  z-index: 2;
  transform: rotateY(0deg);
}
.aboutStreamer .avatar-back {
  border-color: #2bff9c;
  transform: rotateY(180deg);
}
.aboutStreamer .socialPanel {
  width: 100%;
}
.aboutStreamer .socialWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  box-sizing: border-box;
  border-radius: 12px;
}
.aboutStreamer .socialWrap a {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  text-shadow: 1px 1px #2bff9c;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.aboutStreamer .socialWrap a:hover, .aboutStreamer .socialWrap a:focus-visible {
  border-color: #2bff9c;
  color: #2bff9c;
  outline: none;
  transform: translateY(-2px);
}
.aboutStreamer .socialWrap .social-abbr {
  font-family: "Audiowide", sans-serif;
  font-size: 0.68rem;
  text-shadow: none;
}
.aboutStreamer .profile-identity {
  width: 100%;
  padding: 9px 12px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  overflow-wrap: anywhere;
  text-align: center;
}
.aboutStreamer .profile-identity span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
}
.aboutStreamer .profile-identity strong {
  color: #fff;
  font-size: 0.85rem;
}
.aboutStreamer .infoPanel {
  flex: 1 1 auto;
  min-width: 0;
  color: #fff;
}
.aboutStreamer .infoPanel .streamerName {
  margin: 0 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(136, 0, 0, 0.3);
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(1.65rem, 3vw, 2rem);
}
.aboutStreamer .profile-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 14px;
}
.aboutStreamer .da-bio-role {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
}
.aboutStreamer .profile-age {
  padding: 4px 10px;
  border: 1px solid rgba(43, 255, 156, 0.35);
  border-radius: 999px;
  background: rgba(43, 255, 156, 0.08);
  color: #2bff9c;
  font-size: 0.78rem;
  white-space: nowrap;
}
.aboutStreamer .da-bio-content {
  max-width: 90ch;
  color: #e0e0e0;
}
.aboutStreamer .da-bio-content p {
  margin: 0 0 15px;
  line-height: 1.65;
}
.aboutStreamer .da-bio-content strong {
  color: #2bff9c;
}
.aboutStreamer .da-bio-content > :last-child {
  margin-bottom: 0;
}

.da-bio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.da-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  box-sizing: border-box;
  border: 1px solid rgba(43, 255, 156, 0.35);
  border-radius: 999px;
  background: rgba(43, 255, 156, 0.1);
  color: #2bff9c;
  font-size: 0.82rem;
  line-height: 1.2;
}

.aboutSeperator {
  height: 2px;
  margin: 40px 0;
  background: linear-gradient(90deg, transparent, #880000, transparent);
}

.fa-twitch {
  color: #6441A5;
}

.fa-youtube-play {
  color: #ec0000;
}

@media (max-width: 768px) {
  .streamers-container {
    padding: 10px;
  }
  .aboutStreamer {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .aboutStreamer .profile-sidebar {
    flex: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
  .aboutStreamer .avatar-card-container {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
  }
  .aboutStreamer .socialPanel {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 220px;
  }
  .aboutStreamer .profile-identity {
    width: auto;
    max-width: 180px;
  }
  .aboutStreamer .infoPanel {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .aboutStreamer .profile-sidebar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .aboutStreamer .socialPanel,
  .aboutStreamer .profile-identity {
    width: 100%;
    max-width: 260px;
  }
  .aboutStreamer .infoPanel .streamerName,
  .aboutStreamer .profile-heading {
    text-align: center;
    justify-content: center;
  }
  .da-bio-tags {
    justify-content: center;
  }
}
/* =========================================
   LEGAL PAGES (IMPRESSUM & DATENSCHUTZ)
   ========================================= */
#impressum, #datenschutz {
  padding: 15px 10px;
  color: #fff;
  line-height: 1.7;
}
#impressum h1, #datenschutz h1 {
  font-family: "Audiowide", sans-serif;
  color: #2bff9c;
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(136, 0, 0, 0.3);
  padding-bottom: 10px;
}
#impressum h2, #datenschutz h2 {
  font-family: "Audiowide", sans-serif;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 6px;
}
#impressum h3, #datenschutz h3 {
  font-family: "Audiowide", sans-serif;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-top: 25px;
  margin-bottom: 10px;
}
#impressum p, #datenschutz p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-size: 0.95rem;
}
#impressum p strong, #datenschutz p strong {
  color: #fff;
  letter-spacing: 0.5px;
}
#impressum a, #datenschutz a {
  color: #ff963f;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  font-weight: bold;
}
#impressum a:hover, #datenschutz a:hover {
  color: #2bff9c;
  text-shadow: 0 0 8px rgba(43, 255, 156, 0.4);
}
#impressum hr, #datenschutz hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.community-code {
  width: min(1120px, 100% - 32px);
  margin: 24px auto 70px;
  padding: 36px;
  color: #fff;
  background: rgba(3, 7, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-sizing: border-box;
  backdrop-filter: blur(9px);
}
.community-code__hero {
  max-width: 850px;
}
.community-code__hero h1 {
  margin: 8px 0 14px;
  color: #2bff9c;
  font: clamp(2rem, 5vw, 3.2rem) "Audiowide", sans-serif;
  text-transform: uppercase;
}
.community-code__hero > p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.7;
}
.community-code__kicker {
  color: #2bff9c;
  font: 0.78rem "Audiowide", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.community-code__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.85rem;
}
.community-code__toc {
  display: flex;
  gap: 8px;
  margin: 30px 0 10px;
  padding: 8px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.community-code__toc a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
}
.community-code__toc a:hover {
  color: #2bff9c;
  background: rgba(43, 255, 156, 0.09);
}
.community-code__section {
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  scroll-margin-top: 80px;
}
.community-code__heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.community-code__heading > span {
  color: #2bff9c;
  font: 1.4rem "Audiowide", sans-serif;
  opacity: 0.65;
}
.community-code__heading h2 {
  margin: 0;
  font: clamp(1.3rem, 3vw, 1.8rem) "Audiowide", sans-serif;
}
.community-code__heading p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.55);
}
.community-code__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.community-code__values article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
}
.community-code__values i {
  color: #2bff9c;
  font-size: 1.4rem;
}
.community-code__values h3 {
  margin: 12px 0 8px;
  font-family: "Audiowide", sans-serif;
}
.community-code__values p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}
.community-code__rules {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.community-code__rules li {
  position: relative;
  padding: 14px 16px 14px 44px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  background: rgba(255, 255, 255, 0.025);
  border-left: 2px solid rgba(43, 255, 156, 0.45);
  border-radius: 0 9px 9px 0;
}
.community-code__rules li::before {
  content: "\f00c";
  position: absolute;
  left: 17px;
  top: 16px;
  color: #2bff9c;
  font-family: FontAwesome;
}
.community-code__rules strong {
  color: #fff;
}
.community-code__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.community-code__steps > div {
  padding: 17px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
}
.community-code__steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: #2bff9c;
  background: rgba(43, 255, 156, 0.1);
  border-radius: 50%;
  font-weight: 700;
}
.community-code__steps strong, .community-code__steps small {
  display: block;
}
.community-code__steps small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}
.community-code__notice {
  margin: 18px 0 0;
  padding: 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 150, 63, 0.07);
  border: 1px solid rgba(255, 150, 63, 0.3);
  border-radius: 10px;
  line-height: 1.55;
}
.community-code__notice i {
  color: #ff963f;
}
.community-code__report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.community-code__report h2 {
  margin: 7px 0 10px;
  font-family: "Audiowide", sans-serif;
}
.community-code__report p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.community-code__report > a {
  flex: 0 0 auto;
  padding: 12px 17px;
  color: #fff;
  background: #880000;
  border: 1px solid rgba(43, 255, 156, 0.55);
  border-radius: 9px;
  font-family: "Audiowide", sans-serif;
  text-decoration: none;
}
.community-code__footer {
  position: static;
  inset: auto;
  width: 100%;
  margin: 24px 0 0;
  padding: 16px 18px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(136, 0, 0, 0.78);
  border: 1px solid rgba(136, 0, 0, 0.95);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .community-code__values {
    grid-template-columns: 1fr;
  }
  .community-code__steps {
    grid-template-columns: 1fr 1fr;
  }
  .community-code__report {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .community-code {
    width: calc(100% - 18px);
    margin-top: 10px;
    padding: 20px;
  }
  .community-code__section {
    padding: 28px 0;
  }
  .community-code__steps {
    grid-template-columns: 1fr;
  }
  .community-code__meta {
    flex-direction: column;
    gap: 7px;
  }
}

.social-login-page,
.account-page {
  width: calc(100% - 32px);
  max-width: 1080px;
  margin: 30px auto 90px;
  padding: clamp(22px, 4vw, 40px);
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(5, 8, 12, 0.9);
  color: #fff;
  backdrop-filter: blur(12px);
}
.social-login-page h1,
.social-login-page h2,
.account-page h1,
.account-page h2 {
  font-family: "Audiowide", sans-serif;
  color: #2bff9c;
}

.social-login-page {
  max-width: 620px;
  text-align: center;
}
.social-login-page > p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}
.social-login-page > small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.55);
}

.social-login-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.social-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 18px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.social-login:hover, .social-login:focus-visible {
  border-color: #2bff9c;
  outline: none;
  transform: translateY(-2px);
}
.social-login--discord {
  background: #5865f2;
}
.social-login--google {
  background: #fff;
  color: #202124;
}
.social-login--patreon {
  background: #141518;
  border-color: #ff424d;
  color: #fff;
}

.login-error,
.account-notice {
  margin: 0 0 18px;
  padding: 13px 15px;
  border: 1px solid #880000;
  border-radius: 9px;
  color: #fff;
}
.login-error i,
.account-notice i {
  margin-right: 7px;
}

.login-error,
.account-notice--error {
  background: rgba(136, 0, 0, 0.35);
}

.account-notice--success {
  border-color: #2bff9c;
  background: rgba(43, 255, 156, 0.12);
}

.account-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.account-header img {
  width: 82px;
  height: 82px;
  border: 2px solid #2bff9c;
  border-radius: 50%;
  object-fit: cover;
}
.account-header div {
  flex: 1;
  min-width: 0;
}
.account-header h1 {
  margin: 5px 0;
  overflow-wrap: anywhere;
}
.account-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  overflow-wrap: anywhere;
}

.account-section {
  margin-top: 30px;
}
.account-section h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

.account-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.account-section-heading h2 {
  margin-bottom: 6px;
}
.account-section-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

.identity-grid,
.account-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.identity-card,
.account-content-grid article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.identity-card > span,
.identity-card > small,
.account-content-grid article > span,
.account-content-grid article > small {
  display: block;
}
.identity-card > span,
.account-content-grid article > span {
  margin: 12px 0 5px;
}
.identity-card small,
.account-content-grid article small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  overflow-wrap: anywhere;
}
.identity-card h3,
.account-content-grid article h3 {
  margin: 8px 0;
  font-family: "Audiowide", sans-serif;
}
.identity-card a,
.account-content-grid article a {
  color: #2bff9c;
}

.identity-card--connected {
  border-color: rgba(43, 255, 156, 0.28);
}

.identity-card--primary {
  border-color: #2bff9c;
  box-shadow: inset 0 0 24px rgba(43, 255, 156, 0.06);
}

.identity-card--available {
  display: flex;
  flex-direction: column;
}
.identity-card--available p {
  flex: 1;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

.identity-provider {
  display: flex;
  align-items: center;
  gap: 9px;
}
.identity-provider > i {
  width: 26px;
  color: #2bff9c;
  font-size: 1.25rem;
  text-align: center;
}
.identity-provider strong {
  font-family: "Audiowide", sans-serif;
}

.identity-status {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(43, 255, 156, 0.12);
  color: #2bff9c;
  font-size: 0.72rem;
}

.identity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.identity-actions form {
  flex: 1 1 150px;
}

.identity-action {
  width: 100%;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(43, 255, 156, 0.45);
  border-radius: 8px;
  background: rgba(43, 255, 156, 0.08);
  color: #2bff9c;
  cursor: pointer;
}
.identity-action:hover, .identity-action:focus-visible {
  border-color: #2bff9c;
  outline: none;
}
.identity-action:disabled {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}
.identity-action--danger:not(:disabled) {
  border-color: rgba(255, 95, 95, 0.45);
  background: rgba(150, 0, 0, 0.12);
  color: #ff8b8b;
}

.identity-connect {
  width: 100%;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: #fff;
  font-family: "Audiowide", sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.identity-connect:hover, .identity-connect:focus-visible {
  border-color: #2bff9c;
  outline: none;
  transform: translateY(-2px);
}
.identity-connect--discord {
  background: #5865f2;
}
.identity-connect--google {
  background: #fff;
  color: #202124;
}
.identity-connect--patreon {
  background: #141518;
  border-color: #ff424d;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 66, 77, 0.18);
}

@media (max-width: 640px) {
  .social-login-page,
  .account-page {
    width: calc(100% - 16px);
    padding: 20px 15px;
  }
  .account-header {
    flex-wrap: wrap;
  }
  .account-header .button-secondary {
    width: 100%;
  }
  .identity-grid,
  .account-content-grid {
    grid-template-columns: 1fr;
  }
  .identity-status {
    font-size: 0;
  }
  .identity-status i {
    margin: 0;
    font-size: 0.75rem;
  }
}
.account-password-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}
.account-password-form > div {
  display: grid;
  gap: 7px;
}
.account-password-form label {
  font-family: "Audiowide", sans-serif;
  font-size: 0.82rem;
}
.account-password-form input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  box-sizing: border-box;
  border: 1px solid #a60000;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font: inherit;
}
.account-password-form input:focus {
  outline: none;
  border-color: #2bff9c;
  box-shadow: 0 0 0 3px rgba(43, 255, 156, 0.13);
}
.account-password-form small {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.account-password-form button {
  align-self: end;
  min-height: 44px;
}

@media (max-width: 640px) {
  .account-password-form {
    grid-template-columns: 1fr;
  }
}
.support-admin {
  display: grid;
  gap: 24px;
}

.support-panel {
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(43, 255, 156, 0.2);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
}

.support-panel-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.support-panel-heading h2 {
  margin: 3px 0 5px;
  font-family: "Audiowide", sans-serif;
}
.support-panel-heading p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.support-panel-heading form {
  flex: 0 0 auto;
}

.support-catalog-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 12px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(43, 255, 156, 0.16);
  border-radius: 10px;
  background: rgba(43, 255, 156, 0.045);
}
.support-catalog-note strong {
  color: #2bff9c;
}
.support-catalog-note span {
  color: rgba(255, 255, 255, 0.66);
}
.support-catalog-note--warning {
  border-color: rgba(255, 159, 67, 0.5);
  background: rgba(255, 159, 67, 0.08);
}
.support-catalog-note--warning strong {
  color: #ffad5c;
}

.support-offer-grid {
  display: grid;
  gap: 15px;
}

.support-offer-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(4, 7, 10, 0.7);
}
.support-offer-card header,
.support-offer-card .support-offer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.support-offer-card h3 {
  margin: 7px 0 3px;
  font-family: "Audiowide", sans-serif;
}
.support-offer-card small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  overflow-wrap: anywhere;
}
.support-offer-card code {
  color: rgba(255, 255, 255, 0.72);
}
.support-offer-card .support-offer-actions {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.support-provider {
  display: inline-flex;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}
.support-provider--patreon {
  background: rgba(255, 66, 77, 0.16);
  color: #ff737b;
}
.support-provider--kofi {
  background: rgba(41, 171, 226, 0.16);
  color: #67cff7;
}

.support-content-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
}
.support-content-choices strong {
  grid-column: 1/-1;
  color: #2bff9c;
}
.support-content-choices label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}
.support-content-choices input {
  margin-top: 2px;
  accent-color: #2bff9c;
}

.support-active {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.support-offer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.support-empty {
  padding: 26px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}

.support-manual-form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.75fr auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 22px;
}
.support-manual-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
}
.support-manual-form select,
.support-manual-form input {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 9px 11px;
  border: 1px solid #880000;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
}
.support-manual-form button {
  min-height: 44px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .support-panel-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .support-panel-heading .button-primary {
    width: 100%;
  }
  .support-manual-form {
    grid-template-columns: 1fr 1fr;
  }
  .support-manual-form button {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .support-catalog-note,
  .support-content-choices,
  .support-manual-form {
    grid-template-columns: 1fr;
  }
  .support-content-choices strong {
    grid-column: auto;
  }
  .support-offer-card header,
  .support-offer-card .support-offer-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .support-offer-buttons {
    width: 100%;
  }
  .support-offer-buttons .button-primary,
  .support-offer-buttons .button-secondary {
    width: 100%;
  }
}
.admin-dashboard {
  width: min(1280px, 100% - 32px);
  margin: 20px auto 60px;
  padding: 34px;
  color: #fff;
  background: rgba(3, 7, 12, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}
.admin-dashboard__hero, .admin-dashboard__section-heading, .admin-dashboard__panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.admin-dashboard__hero h1, .admin-dashboard__section-heading h2, .admin-dashboard__panel-heading h2 {
  margin: 4px 0 0;
}
.admin-dashboard__hero h1 {
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}
.admin-dashboard__hero p {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}
.admin-dashboard__kicker, .admin-dashboard__section-heading span, .admin-dashboard__panel-heading span {
  color: #2bff9c;
  font: 0.78rem "Audiowide", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.admin-dashboard__logout {
  flex: 0 0 auto;
  padding: 10px 15px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  text-decoration: none;
}
.admin-dashboard__tabs {
  display: flex;
  gap: 8px;
  margin: 28px 0;
  padding: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-inline: contain;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.admin-dashboard__tabs::-webkit-scrollbar {
  display: none;
}
.admin-dashboard__tabs a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.admin-dashboard__tabs a:hover, .admin-dashboard__tabs a.is-active {
  color: #2bff9c;
  background: rgba(43, 255, 156, 0.1);
}
.admin-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.admin-dashboard__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
.admin-dashboard__panel, .admin-dashboard__modules {
  padding: 22px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
}
.admin-dashboard__panel-heading {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-dashboard__panel-heading h2 {
  font-size: 1.15rem;
}
.admin-dashboard__panel-heading > i, .admin-dashboard__panel-heading > a {
  color: #2bff9c;
  font-size: 1.2rem;
}
.admin-dashboard__modules {
  margin-top: 18px;
}
.admin-dashboard__section-heading small {
  color: rgba(255, 255, 255, 0.55);
}
.admin-dashboard__empty {
  margin: 20px 0 5px;
  color: rgba(255, 255, 255, 0.55);
}

.admin-metric {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  box-sizing: border-box;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}
.admin-metric[href]:hover {
  border-color: rgba(43, 255, 156, 0.55);
  transform: translateY(-2px);
}
.admin-metric--warning {
  border-color: rgba(255, 150, 63, 0.65);
}
.admin-metric__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: #2bff9c;
  background: rgba(43, 255, 156, 0.1);
  border-radius: 10px;
}
.admin-metric strong, .admin-metric small {
  display: block;
}
.admin-metric strong {
  font: 1.35rem "Audiowide", sans-serif;
}
.admin-metric small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.admin-schedule-list > a, .admin-recent-list > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-decoration: none;
}
.admin-schedule-list > a:last-child, .admin-recent-list > a:last-child {
  border-bottom: 0;
}
.admin-schedule-list strong, .admin-schedule-list small, .admin-recent-list strong, .admin-recent-list small {
  display: block;
}
.admin-schedule-list small, .admin-recent-list small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.52);
}

.admin-schedule-list__type {
  min-width: 44px;
  padding: 4px 7px;
  color: #ff963f;
  background: rgba(255, 150, 63, 0.08);
  border: 1px solid rgba(255, 150, 63, 0.3);
  border-radius: 6px;
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
}

.admin-recent-list > a {
  justify-content: space-between;
}

.admin-module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.admin-module-grid > a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  text-decoration: none;
}
.admin-module-grid > a:hover {
  border-color: rgba(43, 255, 156, 0.5);
}
.admin-module-grid > a > i:first-child, .admin-module-grid > a > i:last-child {
  color: #2bff9c;
}
.admin-module-grid strong, .admin-module-grid small {
  display: block;
}
.admin-module-grid small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
}

.admin-list-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  text-decoration: none;
}

.admin-streamer-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-streamer-identity img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid #2bff9c;
  border-radius: 50%;
}
.admin-streamer-identity strong, .admin-streamer-identity small {
  display: block;
}
.admin-streamer-identity small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .admin-dashboard {
    padding: 24px;
  }
  .admin-dashboard__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin-dashboard__content-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .admin-dashboard {
    width: calc(100% - 18px);
    margin-top: 10px;
    padding: 18px;
  }
  .admin-dashboard__hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-dashboard__metrics, .admin-module-grid {
    grid-template-columns: 1fr;
  }
  .admin-dashboard__section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .admin-list-header__actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }
}
.inquiry-admin {
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 20px auto 80px;
  padding: clamp(18px, 3vw, 34px);
  box-sizing: border-box;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(4, 8, 12, 0.9);
  backdrop-filter: blur(12px);
}
.inquiry-admin__header, .inquiry-admin__section-heading, .inquiry-admin__ticket-head, .inquiry-admin__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.inquiry-admin__header {
  margin-bottom: 22px;
}
.inquiry-admin__kicker {
  color: #2bff9c;
  font: 0.74rem "Audiowide", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.inquiry-admin h1, .inquiry-admin h2, .inquiry-admin h3 {
  font-family: "Audiowide", sans-serif;
}
.inquiry-admin h1 {
  margin: 5px 0 7px;
  color: #2bff9c;
}
.inquiry-admin h2 {
  margin: 0;
  font-size: 1.15rem;
}
.inquiry-admin p {
  line-height: 1.55;
}
.inquiry-admin a {
  color: #2bff9c;
}
.inquiry-admin__filters {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(220px, 2fr) auto;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}
.inquiry-admin input, .inquiry-admin select, .inquiry-admin textarea, .inquiry-admin button {
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(43, 255, 156, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font: inherit;
}
.inquiry-admin input, .inquiry-admin select, .inquiry-admin textarea {
  width: 100%;
  padding: 10px 12px;
}
.inquiry-admin textarea {
  min-height: 130px;
  resize: vertical;
}
.inquiry-admin button, .inquiry-admin .inquiry-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 16px;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-family: "Audiowide", sans-serif;
}
.inquiry-admin button:hover, .inquiry-admin .inquiry-button:hover {
  border-color: #2bff9c;
  color: #2bff9c;
}
.inquiry-admin__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}
.inquiry-admin table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}
.inquiry-admin th, .inquiry-admin td {
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.inquiry-admin th {
  color: #2bff9c;
  font: 0.75rem "Audiowide", sans-serif;
  text-transform: uppercase;
}
.inquiry-admin tbody tr:hover {
  background: rgba(43, 255, 156, 0.035);
}
.inquiry-admin td small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
}
.inquiry-admin td strong a {
  color: #fff;
  text-decoration: none;
}
.inquiry-admin__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 20px;
}
.inquiry-admin__panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}
.inquiry-admin__panel + .inquiry-admin__panel {
  margin-top: 18px;
}
.inquiry-admin__section-heading {
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.inquiry-admin__message {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.inquiry-admin__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}
.inquiry-admin__facts div {
  padding: 11px;
  border-radius: 9px;
  background: rgba(0, 0, 0, 0.3);
}
.inquiry-admin__facts dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
}
.inquiry-admin__facts dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}
.inquiry-admin__form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.inquiry-admin__timeline {
  display: grid;
  gap: 12px;
}
.inquiry-admin__event {
  padding: 13px;
  border-left: 3px solid rgba(43, 255, 156, 0.55);
  background: rgba(0, 0, 0, 0.28);
}
.inquiry-admin__event header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.inquiry-admin__event p {
  margin: 8px 0 0;
  white-space: pre-wrap;
}
.inquiry-admin__muted {
  color: rgba(255, 255, 255, 0.58);
}
.inquiry-admin__empty {
  padding: 28px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
}
.inquiry-admin .inquiry-status {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  white-space: nowrap;
}
.inquiry-admin .inquiry-status--new {
  color: #2bff9c;
  border-color: rgba(43, 255, 156, 0.65);
}
.inquiry-admin .inquiry-status--in_progress, .inquiry-admin .inquiry-status--waiting {
  color: #ffb45c;
  border-color: rgba(255, 180, 92, 0.55);
}
.inquiry-admin .inquiry-status--answered {
  color: #75cfff;
  border-color: rgba(117, 207, 255, 0.55);
}
.inquiry-admin .inquiry-status--closed {
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 880px) {
  .inquiry-admin__filters, .inquiry-admin__grid {
    grid-template-columns: 1fr;
  }
  .inquiry-admin__header, .inquiry-admin__ticket-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .inquiry-admin {
    width: calc(100% - 16px);
    padding: 14px 10px;
  }
  .inquiry-admin__facts {
    grid-template-columns: 1fr;
  }
  .inquiry-admin__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

/* Klassen der Ticket-Templates */
.inquiry-admin .inquiry-filters {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) minmax(150px, 1fr) minmax(170px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}
.inquiry-admin .inquiry-filters a {
  text-align: center;
}
.inquiry-admin .inquiry-bulk-actions {
  display: grid;
  grid-template-columns: auto minmax(220px, 340px) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 12px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}
.inquiry-admin .inquiry-bulk-actions span {
  color: rgba(255, 255, 255, 0.72);
}
.inquiry-admin .inquiry-bulk-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.inquiry-admin .inquiry-select-column {
  width: 34px;
  text-align: center !important;
}
.inquiry-admin .inquiry-select-column input {
  width: 18px;
  min-height: 18px;
  accent-color: #2bff9c;
}
.inquiry-admin .admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}
.inquiry-admin .admin-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
}
.inquiry-admin .admin-table th, .inquiry-admin .admin-table td {
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.inquiry-admin .admin-table th {
  color: #2bff9c;
  font: 0.75rem "Audiowide", sans-serif;
  text-transform: uppercase;
}
.inquiry-admin .admin-table td small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
}
.inquiry-admin .inquiry-row--new {
  background: rgba(43, 255, 156, 0.045);
}
@media (max-width: 800px) {
  .inquiry-admin .inquiry-filters, .inquiry-admin .inquiry-bulk-actions {
    grid-template-columns: 1fr;
  }
}

.inquiry-detail {
  width: calc(100% - 32px);
  max-width: 1260px;
  margin: 20px auto 80px;
  padding: clamp(18px, 3vw, 34px);
  box-sizing: border-box;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(4, 8, 12, 0.9);
  backdrop-filter: blur(12px);
}
.inquiry-detail h1, .inquiry-detail h2 {
  font-family: "Audiowide", sans-serif;
}
.inquiry-detail h1 {
  margin: 7px 0;
  color: #2bff9c;
}
.inquiry-detail h2 {
  margin: 0 0 13px;
  font-size: 1.08rem;
}
.inquiry-detail a {
  color: #2bff9c;
}
.inquiry-detail__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.inquiry-detail__header > div > span {
  display: block;
  margin-top: 13px;
  color: #ff963f;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.inquiry-detail__header p {
  color: rgba(255, 255, 255, 0.58);
}
.inquiry-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.7fr);
  gap: 20px;
}
.inquiry-detail main, .inquiry-detail aside {
  min-width: 0;
}
.inquiry-detail main > section, .inquiry-detail main > article, .inquiry-detail .inquiry-sidebar > section {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}
.inquiry-detail input, .inquiry-detail select, .inquiry-detail textarea, .inquiry-detail button {
  min-height: 42px;
  box-sizing: border-box;
  border: 1px solid rgba(43, 255, 156, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font: inherit;
}
.inquiry-detail input, .inquiry-detail select, .inquiry-detail textarea {
  width: 100%;
  padding: 10px 12px;
}
.inquiry-detail textarea {
  min-height: 130px;
  resize: vertical;
}
.inquiry-detail button {
  width: 100%;
  margin-top: 9px;
  padding: 9px 14px;
  cursor: pointer;
  font-family: "Audiowide", sans-serif;
}
.inquiry-detail button:hover {
  border-color: #2bff9c;
  color: #2bff9c;
}
.inquiry-detail .inquiry-message__author {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.inquiry-detail .inquiry-message p, .inquiry-detail .inquiry-activity__body {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  line-height: 1.6;
}
.inquiry-detail .inquiry-facts dl {
  display: grid;
  grid-template-columns: minmax(130px, 0.65fr) 1.35fr;
  gap: 9px 16px;
}
.inquiry-detail .inquiry-facts dt {
  color: rgba(255, 255, 255, 0.55);
}
.inquiry-detail .inquiry-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.inquiry-detail .inquiry-compose form, .inquiry-detail .inquiry-sidebar form {
  display: grid;
  gap: 9px;
}
.inquiry-detail .inquiry-compose p {
  color: rgba(255, 255, 255, 0.64);
}
.inquiry-detail .inquiry-timeline {
  display: grid;
  gap: 12px;
}
.inquiry-detail .inquiry-timeline h2 {
  margin-bottom: 2px;
}
.inquiry-detail .inquiry-activity {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  padding: 13px;
  border-left: 3px solid rgba(43, 255, 156, 0.55);
  background: rgba(0, 0, 0, 0.28);
}
.inquiry-detail .inquiry-activity header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.inquiry-detail .inquiry-activity header span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}
.inquiry-detail .inquiry-mail-link {
  display: inline-flex;
  gap: 7px;
  margin-top: 10px;
}
.inquiry-detail .inquiry-sidebar p {
  display: grid;
  gap: 4px;
}
.inquiry-detail .inquiry-sidebar p span, .inquiry-detail .inquiry-sidebar small {
  color: rgba(255, 255, 255, 0.55);
}
.inquiry-detail .status-pill {
  display: inline-flex;
  align-items: center;
  height: fit-content;
  padding: 5px 10px;
  border: 1px solid rgba(43, 255, 156, 0.55);
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .inquiry-detail__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .inquiry-detail {
    width: calc(100% - 16px);
    padding: 14px 10px;
  }
  .inquiry-detail__header {
    flex-direction: column;
  }
  .inquiry-detail .inquiry-facts dl {
    grid-template-columns: 1fr;
  }
  .inquiry-detail .inquiry-facts dd {
    margin-bottom: 8px;
  }
}

.inquiry-spam-rules .admin-list-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.inquiry-spam-rules .spam-rule-state {
  display: inline-flex;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.76rem;
  white-space: nowrap;
}
.inquiry-spam-rules .spam-rule-state--active {
  color: #7fe0a3;
  border-color: rgba(127, 224, 163, 0.55);
}
.inquiry-spam-rules .spam-rule-state--inactive {
  color: rgba(255, 255, 255, 0.55);
}
.inquiry-spam-rules .spam-rule-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.inquiry-spam-rules .spam-rule-actions form {
  margin: 0;
}
.inquiry-spam-rules .spam-rule-actions button {
  min-height: 36px;
  padding: 7px 11px;
}
.inquiry-spam-rules .spam-rule-actions .is-danger {
  border-color: rgba(255, 98, 98, 0.55);
  color: #ff8c8c;
}
@media (max-width: 700px) {
  .inquiry-spam-rules .admin-list-header {
    flex-direction: column;
  }
}

.admin-users-page,
.admin-user-edit,
.admin-verify {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 20px auto 80px;
  padding: clamp(18px, 3vw, 34px);
  box-sizing: border-box;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(4, 8, 12, 0.9);
  backdrop-filter: blur(12px);
}
.admin-users-page h1, .admin-users-page h2, .admin-users-page legend,
.admin-user-edit h1,
.admin-user-edit h2,
.admin-user-edit legend,
.admin-verify h1,
.admin-verify h2,
.admin-verify legend {
  font-family: "Audiowide", sans-serif;
}
.admin-users-page h1,
.admin-user-edit h1,
.admin-verify h1 {
  color: #2bff9c;
}
.admin-users-page a,
.admin-user-edit a,
.admin-verify a {
  color: #2bff9c;
}
.admin-users-page input, .admin-users-page select, .admin-users-page button,
.admin-user-edit input,
.admin-user-edit select,
.admin-user-edit button,
.admin-verify input,
.admin-verify select,
.admin-verify button {
  min-height: 44px;
  box-sizing: border-box;
  border: 1px solid rgba(43, 255, 156, 0.42);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font: inherit;
}
.admin-users-page input, .admin-users-page select,
.admin-user-edit input,
.admin-user-edit select,
.admin-verify input,
.admin-verify select {
  width: 100%;
  padding: 10px 12px;
}

.admin-user-search {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
}

.admin-user-identity {
  display: flex;
  align-items: center;
  gap: 11px;
}
.admin-user-identity img {
  width: 42px;
  height: 42px;
  border: 2px solid #2bff9c;
  border-radius: 50%;
  object-fit: cover;
}
.admin-user-identity strong, .admin-user-identity small {
  display: block;
}
.admin-user-identity small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
}

.admin-role-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.admin-role-list span {
  padding: 3px 7px;
  border: 1px solid rgba(43, 255, 156, 0.35);
  border-radius: 999px;
  color: #2bff9c;
  font-size: 0.72rem;
}

.admin-user-edit {
  max-width: 760px;
}
.admin-user-edit header {
  margin-bottom: 24px;
}
.admin-user-edit header > span {
  display: block;
  margin-top: 18px;
}
.admin-user-edit header h1 {
  margin: 5px 0;
}
.admin-user-edit header p {
  color: rgba(255, 255, 255, 0.62);
}
.admin-user-edit form {
  display: grid;
  gap: 20px;
}
.admin-user-edit fieldset {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}
.admin-user-edit fieldset legend {
  padding: 0 9px;
  color: #2bff9c;
}
.admin-user-edit fieldset label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
}
.admin-user-edit fieldset input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}
.admin-user-edit fieldset strong, .admin-user-edit fieldset small {
  display: block;
}
.admin-user-edit fieldset small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.admin-user-edit__field {
  display: grid;
  gap: 8px;
}
.admin-user-edit__field label {
  font-family: "Audiowide", sans-serif;
}
.admin-user-edit__field small {
  color: rgba(255, 255, 255, 0.55);
}

.admin-password-state {
  display: grid;
  gap: 5px;
  padding: 15px;
  border-left: 3px solid #2bff9c;
  background: rgba(43, 255, 156, 0.05);
}
.admin-password-state span {
  color: #2bff9c;
}
.admin-password-state small {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.admin-verify {
  max-width: 560px;
  text-align: center;
}
.admin-verify h1 {
  margin: 7px 0 12px;
}
.admin-verify > p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}
.admin-verify form {
  display: grid;
  gap: 10px;
  margin: 22px 0 15px;
  text-align: left;
}
.admin-verify form button {
  margin-top: 7px;
}
.admin-verify > .button-primary {
  display: inline-flex;
  margin-top: 10px;
  text-decoration: none;
}

@media (max-width: 680px) {
  .admin-users-page, .admin-user-edit, .admin-verify {
    width: calc(100% - 16px);
    padding: 16px 12px;
  }
  .admin-user-search {
    grid-template-columns: 1fr;
  }
}
.schedule-admin .schedule-admin__list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.schedule-admin .schedule-admin__entry {
  display: grid;
  grid-template-columns: minmax(145px, 0.7fr) minmax(220px, 2fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid #2bff9c;
  border-radius: 11px;
}
.schedule-admin .schedule-admin__entry--inactive {
  opacity: 0.62;
  border-left-color: rgba(255, 255, 255, 0.22);
}
.schedule-admin .schedule-admin__date {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.schedule-admin .schedule-admin__date strong {
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
}
.schedule-admin .schedule-admin__date span {
  color: rgba(255, 255, 255, 0.58);
}
.schedule-admin .schedule-admin__content {
  min-width: 0;
}
.schedule-admin .schedule-admin__content h2 {
  margin: 0 0 5px;
  font: 1rem/1.35 "Audiowide", sans-serif;
}
.schedule-admin .schedule-admin__content a {
  color: #b88cff;
  text-decoration: none;
}
.schedule-admin .schedule-admin__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.schedule-admin .schedule-admin__actions a, .schedule-admin .schedule-admin__actions button {
  color: #2bff9c;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.schedule-admin .schedule-admin__actions button {
  color: #ff8585;
}
.schedule-admin .schedule-admin__actions form {
  margin: 0;
}
@media (max-width: 850px) {
  .schedule-admin .schedule-admin__entry {
    grid-template-columns: 1fr auto;
  }
  .schedule-admin .schedule-admin__content {
    grid-column: 1/-1;
    grid-row: 2;
  }
  .schedule-admin .schedule-admin__actions {
    grid-column: 1/-1;
  }
}
@media (max-width: 480px) {
  .schedule-admin .schedule-admin__entry {
    grid-template-columns: 1fr;
  }
  .schedule-admin .schedule-admin__content, .schedule-admin .schedule-admin__actions {
    grid-column: 1;
  }
}

.schedule-editor .schedule-editor__times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.schedule-editor .schedule-editor__times > div {
  min-width: 0;
}
@media (max-width: 560px) {
  .schedule-editor .schedule-editor__times {
    grid-template-columns: 1fr;
  }
}

/* Eigenständige Buttons und Editor-Regeln – unabhängig von anderen Admin-Modulen */
.schedule-admin .admin-list-page__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.schedule-admin .admin-list-page__header h1 {
  margin: 5px 0 8px;
}
.schedule-admin .admin-list-page__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
.schedule-admin .admin-list-page__eyebrow {
  color: #2bff9c;
  font: 0.76rem "Audiowide", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.schedule-admin .admin-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  background: #880000;
  border: 1px solid #880000;
  border-radius: 10px;
  font-family: "Audiowide", sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(136, 0, 0, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}
.schedule-admin .admin-primary-action:hover {
  color: #fff;
  filter: brightness(1.15);
  transform: translateY(-2px);
  border-color: #2bff9c;
}
@media (max-width: 650px) {
  .schedule-admin .admin-list-page__header {
    align-items: stretch;
    flex-direction: column;
  }
  .schedule-admin .admin-primary-action {
    width: 100%;
  }
}

.schedule-editor {
  width: min(1080px, 100% - 32px);
  margin: 34px auto;
  box-sizing: border-box;
}
.schedule-editor .streamer-form-card {
  padding: clamp(22px, 4vw, 42px);
  background: rgba(3, 8, 13, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}
.schedule-editor .streamer-form-header {
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.schedule-editor .streamer-form-header h1 {
  margin: 5px 0 8px;
  color: #fff;
  font: clamp(1.65rem, 3vw, 2.1rem)/1.2 "Audiowide", sans-serif;
}
.schedule-editor .streamer-form-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.55;
}
.schedule-editor .streamer-form-eyebrow {
  color: #2bff9c;
  font: 0.76rem "Audiowide", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.schedule-editor .streamer-form {
  display: grid;
  gap: 24px;
}
.schedule-editor .streamer-form-section {
  min-width: 0;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(43, 255, 156, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.015);
}
.schedule-editor .streamer-form-section legend {
  padding: 0 10px;
  color: #2bff9c;
  font: 0.95rem "Audiowide", sans-serif;
}
.schedule-editor .streamer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}
.schedule-editor .streamer-form-field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.schedule-editor .streamer-form-field--wide {
  grid-column: 1/-1;
}
.schedule-editor .streamer-form-field > label,
.schedule-editor .streamer-form-field .schedule-editor__times label {
  color: rgba(255, 255, 255, 0.9);
  font: 0.78rem "Audiowide", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.schedule-editor .streamer-form-field input:not([type=checkbox]),
.schedule-editor .streamer-form-field select {
  display: block;
  width: 100%;
  min-height: 45px;
  padding: 10px 12px;
  box-sizing: border-box;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(136, 0, 0, 0.9);
  border-radius: 8px;
  font: inherit;
  color-scheme: dark;
}
.schedule-editor .streamer-form-field input:not([type=checkbox]):focus,
.schedule-editor .streamer-form-field select:focus {
  outline: 2px solid rgba(43, 255, 156, 0.2);
  outline-offset: 2px;
  border-color: #2bff9c;
}
.schedule-editor .streamer-form-field select option {
  color: #fff;
  background: #080c10;
}
.schedule-editor .streamer-form-field small, .schedule-editor .streamer-form-field .form-help {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.79rem;
  line-height: 1.4;
}
.schedule-editor .streamer-form-field ul {
  margin: 0;
  padding: 0;
  color: #ff8e8e;
  list-style: none;
  font-size: 0.82rem;
}
.schedule-editor .schedule-editor__times {
  align-items: start;
}
.schedule-editor .schedule-editor__times > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.schedule-editor .streamer-form-checkbox {
  justify-content: center;
  align-self: end;
  min-height: 45px;
  padding: 0 13px;
  box-sizing: border-box;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: rgba(43, 255, 156, 0.055);
  border: 1px solid rgba(43, 255, 156, 0.2);
  border-radius: 8px;
}
.schedule-editor .streamer-form-checkbox input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #2bff9c;
}
.schedule-editor .streamer-form-checkbox label {
  margin: 0;
  cursor: pointer;
  text-transform: none;
}
.schedule-editor .streamer-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.schedule-editor .streamer-form-actions .admin-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 22px;
  color: #fff;
  background: #880000;
  border: 1px solid #880000;
  border-radius: 9px;
  font: 0.9rem "Audiowide", sans-serif;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.schedule-editor .streamer-form-actions .admin-primary-action:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
.schedule-editor .streamer-form-actions > a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 10px 6px;
}
.schedule-editor .streamer-form-actions > a:hover {
  color: #2bff9c;
}
@media (max-width: 700px) {
  .schedule-editor {
    width: calc(100% - 20px);
    max-width: 1080px;
    margin: 18px auto;
  }
  .schedule-editor .streamer-form-card {
    padding: 20px 16px;
  }
  .schedule-editor .streamer-form-section {
    padding: 18px 14px;
  }
  .schedule-editor .streamer-form-grid {
    grid-template-columns: 1fr;
  }
  .schedule-editor .streamer-form-field--wide {
    grid-column: 1;
  }
  .schedule-editor .streamer-form-checkbox {
    align-self: stretch;
    justify-content: flex-start;
  }
}
@media (max-width: 430px) {
  .schedule-editor .streamer-form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .schedule-editor .streamer-form-actions .admin-primary-action, .schedule-editor .streamer-form-actions > a {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

.application-login,
.application-portfolio {
  max-width: 1120px;
  margin: 0 auto;
}

.application-login {
  min-height: 65vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}
.application-login__card {
  width: min(100%, 520px);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(43, 255, 156, 0.35);
  border-radius: 18px;
  background: rgba(8, 12, 16, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.application-login__form {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.application-login__form input {
  box-sizing: border-box;
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  font-size: 1rem;
}
.application-login__form button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.2rem;
  border: 0;
  border-radius: 8px;
  color: #1d1d1d;
  background: #2bff9c;
  font-weight: 700;
  cursor: pointer;
}

.application-eyebrow {
  margin: 0 0 0.5rem;
  color: #2bff9c;
  font-family: "Audiowide", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.application-alert {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid #ff6b6b;
  background: rgba(136, 0, 0, 0.4);
}

.application-portfolio {
  padding: clamp(1rem, 3vw, 2.5rem);
}

.application-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 17, 22, 0.97), rgba(62, 8, 8, 0.92));
}
.application-hero h1 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(2rem, 6vw, 4.5rem);
}
.application-hero__lead {
  max-width: 720px;
  line-height: 1.7;
}

.application-logout {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: #e7e7e7;
  background: transparent;
  cursor: pointer;
}

.application-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 2rem;
}
.application-sections a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: #e7e7e7;
  background: rgba(0, 0, 0, 0.72);
  text-decoration: none;
}
.application-sections a:hover, .application-sections a:focus-visible {
  color: #1d1d1d;
  background: #2bff9c;
}

.application-panel {
  margin: 1rem 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(7, 10, 14, 0.88);
}
.application-panel h2 {
  margin-top: 0;
}
.application-panel p {
  line-height: 1.75;
}

.application-letter__address {
  margin: 1.5rem 0;
  line-height: 1.65;
}
.application-letter__date {
  text-align: right;
}
.application-letter h2 {
  max-width: 850px;
  margin-top: 2rem;
}

.application-grid,
.application-projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.application-grid > div,
.application-project {
  padding: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.application-projects {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.application-project {
  display: flex;
  flex-direction: column;
}
.application-project h3 {
  margin-top: 0;
}
.application-project a {
  align-self: flex-start;
  margin-top: auto;
  color: #2bff9c;
  font-weight: 700;
}
.application-project__stack {
  color: #2bff9c;
  font-size: 0.9rem;
}
.application-project__note {
  margin-top: auto;
  color: rgba(231, 231, 231, 0.75);
  font-size: 0.9rem;
}

.application-cv {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}
.application-cv__contact {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-left: 4px solid #2bff9c;
  background: rgba(255, 255, 255, 0.06);
}
.application-cv__contact a {
  color: #2bff9c;
}
.application-cv__entry {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.application-cv__entry time {
  color: #2bff9c;
  font-weight: 700;
}
.application-cv__entry p {
  margin: 0.4rem 0 0;
}
.application-cv__skills {
  display: grid;
  gap: 0.75rem;
}
.application-cv__skills > div {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) 1fr;
  gap: 1rem;
}
.application-cv__skills dt {
  font-weight: 700;
}
.application-cv__skills dd {
  margin: 0;
}

.application-documents__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.application-document-link {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: #1d1d1d;
  background: #2bff9c;
  font-weight: 700;
  text-decoration: none;
}
.application-document-link--secondary {
  border: 1px solid rgba(43, 255, 156, 0.65);
  color: #2bff9c;
  background: transparent;
}

@media (max-width: 900px) {
  .application-projects {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .application-hero {
    flex-direction: column;
  }
  .application-grid {
    grid-template-columns: 1fr;
  }
  .application-letter__date {
    text-align: left;
  }
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
