/* Bereich für die animierte Karten-Zone */
#intro-card-zone 
{
    position: relative; /* Relativ verschoben */
    top: -60px; /* 60px nach oben verschoben */
}
/* Bereich für die untere Überschrift */
#ueberschrift-unten 
{
    position: relative; /* Relativ verschoben */
    top: -60px; /* 60px nach oben verschoben */
}
/* Bereich für die Musiksteuerung */
#audio-controls 
{
    position: relative; /* Relativ verschoben */
    top: -60px; /* 60px nach oben verschoben */
}
/* Bereich für die mittlere Überschrift */
#ueberschrift-mitte 
{
    position: relative; /* Relativ verschoben */
    top: -60px; /* 60px nach oben verschoben */
}
/* Bereich für die obere Überschrift */
#ueberschrift-oben 
{
    position: relative; /* Relativ verschoben */
    top: -60px; /* 60px nach oben verschoben */
}
/* Versteckt ein Element */
.is-hidden 
{
display: none; /* Unsichtbar */
}

/* Blendet Chatbot-Elemente aus */
/* Blendet die Chatbot-Elemente auf der Seite immer aus */
body.page-peter-reddemann #open-chatbot,
body.page-peter-reddemann #chatbot-container 
{
    display: none !important; /* Immer ausgeblendet */
}

/* Macht einen Link zum Blockelement */
/* Macht einen Link zu einem Blockelement (nimmt die volle Breite ein) */
.link-block 
{
    display: block; /* Block-Layout */
}

/* Gibt dem Text eine rote Akzentfarbe */
.accent-red 
{
    color: rgb(119, 3, 3); /* Rote Akzentfarbe */
}

/* Setzt die Breite eines Elements (z.B. einer Linie) auf 83% */
.hr-83 
{
    width: 83%; /* Breite von 83% */
}

/* Setzt die Textfarbe auf ein helles Beige */
.text-black 
{
    color: #e8dfd4; /* Helle Beige Farbe */
}

/* Große Schrift */
.text-lg 
{
    font-size: 20px; /* Große Schriftgröße */
}

/* Mittlere Schrift */
.text-md 
{
    font-size: 17px; /* Mittlere Schriftgröße */
}

/* Sehr große Schrift */
.text-xxl 
{
    font-size: 60px; /* Sehr große Schriftgröße */
}

/* Flex-Container, der die Kindelemente gleichmäßig verteilt */
.actions-evenly 
{
    display: flex; /* Flex-Container */
    justify-content: space-evenly; /* Gleichmäßige Verteilung */
}

/* Barrierefreier Sprunglink, der außerhalb des sichtbaren Bereichs positioniert ist und beim Fokussieren sichtbar wird */
.skip-link 
{
    position: absolute; /* Absolute Positionierung */
    top: -48px; /* 48px über dem sichtbaren Bereich */
    left: 12px; /* 12px vom linken Rand */
    padding: 8px 12px; /* Innenabstand */
    background: #000; /* Hintergrundfarbe */
    color: #fff; /* Textfarbe */
    text-decoration: none; /* Keine Unterstreichung */
    border-radius: 6px; /* Abgerundete Ecken */
    z-index: 10000; /* Sehr hoher Stapelindex, damit es über allem anderen liegt */
    transition: top 150ms ease; /* Sanfter Übergang für die Position */
}
/* Wenn der Sprunglink fokussiert oder sichtbar ist, wird er in den sichtbaren Bereich verschoben */
.skip-link:focus, .skip-link:focus-visible 
{
top: 12px; /* 12px vom oberen Rand, damit es sichtbar wird */
}
/* Fokus-Stil für interaktive Elemente, wenn sie fokussiert oder sichtbar sind */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [role="button"]:focus-visible 
{
outline: 3px solid rgb(119, 3, 3); /* Roter Fokusrahmen */
	outline-offset: 2px; /* Abstand zum Element */
	border-radius: 4px; /* Abgerundete Ecken */
}
/* Reduziert Animationen und Übergänge für Benutzer, die dies bevorzugen */
@media (prefers-reduced-motion: reduce) 
{
/* Deaktiviert Animationen, Übergänge und sanftes Scrollen für alle Elemente */   
*, *::before, *::after 
{
animation-duration: 0.01ms !important; /* Sehr kurze Animationsdauer, um sie effektiv zu deaktivieren */
		animation-iteration-count: 1 !important; /* Animationen nur einmal abspielen, um sie effektiv zu deaktivieren */
		transition-duration: 0.01ms !important; /* Sehr kurze Übergangsdauer, um sie effektiv zu deaktivieren */
		scroll-behavior: auto !important; /* Kein sanftes Scrollen, sondern sofortiges Springen */
}
/* Deaktiviert die Animation für den Glitch-Effekt auf dem "dead.php"-Link, wenn der Benutzer reduzierte Bewegung bevorzugt */
.skip-link 
{
transition: none !important; /* Deaktiviert die Transition für den Sprunglink */
transform: none !important; /* Deaktiviert die Transformation für den Sprunglink */
}
}

.youtube-grid {
display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 20px 0;
}

.video-wrapper {
flex: 1 1 calc(33.333% - 20px);
	min-width: 300px;
	max-width: 500px;
}

.video-embed {
position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-iframe {
position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-title {
text-align: center;
	margin-top: 10px;
	color: #fff;
	font-weight: 600;
}

#foo1 {
display: flex;    
    background-color: #49494983;
    /*border: dotted 10px green;*/
    justify-content: space-between;
}

#foo-links {
display: flex;
}

#foo-rechts {
display: flex;
    gap: 50px;
}

#copyright {
margin: 10px 20px;
    /*border: dotted 3px blue;*/
}

#zone1 {
margin: 10px 20px;
    /*border: dotted 3px aqua;*/
}

#zone2 {
margin: 10px 20px;
    /*border: dotted 3px hotpink;*/
}

#radio-feed-section {
background-color: rgba(30, 30, 30, 0.9);
    padding: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

#radio-feed-section h3 {
color: #ffffff;
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

#radio-feed-container {
display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-behavior: smooth;
}

#radio-feed-container::-webkit-scrollbar {
height: 6px;
}

#radio-feed-container::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#radio-feed-container::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

#radio-feed-container::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.5);
}

.radio-item {
min-width: 110px;
    max-width: 110px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.radio-item:hover {
background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.radio-item a {
text-decoration: none;
    color: inherit;
    display: block; /* Block-Layout */
    text-align: center;
}

.radio-icon {
font-size: 18px;
    margin-bottom: 3px;
}

.radio-title {
color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 3px;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dead-post-template,
#dead-post-feed {
    max-width: 860px;
    margin: 24px auto;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
}

#dead-post-template h2,
#dead-post-feed h2 {
    margin: 0 0 10px;
}

.dead-post-hint {
    margin: 0 0 14px;
    opacity: 0.9;
}

#dead-post-form {
    display: grid;
    gap: 10px;
}

#dead-post-form textarea,
#dead-post-form input[type="file"] {
    width: 100%;
}

#dead-post-form textarea {
    min-height: 120px;
    resize: vertical;
}

#dead-post-feedback {
    margin: 2px 0 0;
    padding: 8px 10px;
    border-radius: 8px;
}

#dead-post-feedback.is-success {
    border: 1px solid rgba(100, 255, 180, 0.45);
    background: rgba(100, 255, 180, 0.12);
}

#dead-post-feedback.is-error {
    border: 1px solid rgba(255, 120, 120, 0.45);
    background: rgba(255, 120, 120, 0.12);
}

#dead-post-list {
    display: grid;
    gap: 14px;
}

.dead-post-item {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.26);
}

.dead-post-item header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.dead-post-item p {
    margin: 0 0 10px;
    white-space: pre-wrap;
    word-break: break-word;
}

.dead-post-item img {
    display: block;
    width: 100%;
    max-height: 540px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.28);
}

.dead-post-empty {
    opacity: 0.9;
    margin: 0;
}

.radio-label {
color: rgba(255, 255, 255, 0.7);
    font-size: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.radio-loading {
text-align: center;
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    font-size: 14px;
}

#news-feed-section {
background-color: rgba(30, 30, 30, 0.9);
    padding: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

#news-feed-section h3 {
color: #ffffff;
    text-align: center;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

#news-feed-container {
display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
    scroll-behavior: smooth;
}

#news-feed-container::-webkit-scrollbar {
height: 6px;
}

#news-feed-container::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

#news-feed-container::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

#news-feed-container::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.5);
}

.news-item {
min-width: 140px;
    max-width: 140px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.news-item:hover {
background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.news-item a {
text-decoration: none;
    color: inherit;
    display: block;
}

.news-title {
color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 4px;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    margin-top: 3px;
}

.news-loading {
text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    font-size: 14px;
}

.news-error {
text-align: center;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px;
    font-size: 14px;
}

#socialmedia-bar {
font-size: 30px;
    font-style: normal;
    /*border: dotted 10px orange;*/
    position: fixed;
    top: 220px;
    right: 10px;
    z-index: 10;
}

#socialmedia-bar a i {
width: 30px;
    height: 30px;
}

#menu-home {
/*border: dotted 10px orange;*/
    width: 100%;
    height: 95px;
    position: fixed;
    top: 0;
    background: rgba(0,0,0,0);
    z-index: 11;
    display: flex;       
    justify-content: end;    
    gap: 10px;    
    align-items: center;
}

#menu-home-btn-style {
display: flex;
}

#menu-home-btn-style a,
#menu-home-btn-style button {
font-style: normal;   
    color: gray;    
     background-color: rgba(0, 0, 0, 0);
     padding: 10px;
     text-align: center;
    text-decoration: none;
     border-radius: 15px;
    border: solid 1px gray;
    font-size: inherit;
    font-family: inherit;
    cursor: pointer;
}

#menu-home-btn-style a:hover,
#menu-home-btn-style button:hover {
color: rgb(251, 251, 251);
    transition: all 0.5s ease;
    transform: scale(1.2);
}

#menu-home-btn-style button:disabled {
    opacity: 0.75;
    cursor: wait;
}

#menu-home-btn-style a[href$="dead.php"]:not(.is-locked) {
    color: rgb(170, 28, 28);
    border-color: rgba(170, 28, 28, 0.75);
    text-shadow: 0 0 6px rgba(170, 28, 28, 0.45);
    animation: deadLinkGlitchImpulse 2.6s steps(1, end) infinite;
}

#menu-home-btn-style a[href$="dead.php"]:not(.is-locked):hover {
    animation-duration: 1.1s;
}

#menu-home-btn-style a[href$="dead.php"].is-locked {
    color: rgb(120, 120, 120);
    border-color: rgba(120, 120, 120, 0.58);
    text-shadow: none;
    opacity: 0.72;
}

@keyframes deadLinkGlitchImpulse {
    0%, 82%, 100% {
        box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(170, 28, 28, 0);
        text-shadow: 0 0 6px rgba(170, 28, 28, 0.45);
        letter-spacing: normal;
    }
    83% {
        box-shadow: inset 0 0 10px rgba(120, 18, 18, 0.45), 0 0 12px rgba(170, 28, 28, 0.4);
        text-shadow: -1px 0 rgba(255, 38, 38, 0.9), 1px 0 rgba(130, 130, 130, 0.7), 0 0 12px rgba(170, 28, 28, 0.7);
        letter-spacing: 0.3px;
    }
    84% {
        box-shadow: inset 0 0 14px rgba(130, 16, 16, 0.65), 0 0 16px rgba(200, 20, 20, 0.62);
        text-shadow: 1px -1px rgba(255, 30, 30, 0.98), -1px 1px rgba(120, 120, 120, 0.82), 0 0 16px rgba(220, 26, 26, 0.9);
        letter-spacing: 0.5px;
    }
    85% {
        box-shadow: inset 0 0 8px rgba(92, 14, 14, 0.45), 0 0 8px rgba(140, 20, 20, 0.42);
        text-shadow: 0 0 8px rgba(170, 28, 28, 0.62);
        letter-spacing: normal;
    }
    94% {
        box-shadow: inset 0 0 12px rgba(125, 20, 20, 0.56), 0 0 15px rgba(185, 24, 24, 0.58);
        text-shadow: -1px 0 rgba(255, 36, 36, 0.95), 1px 0 rgba(118, 118, 118, 0.78), 0 0 14px rgba(210, 28, 28, 0.88);
        letter-spacing: 0.4px;
    }
    95% {
        box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(170, 28, 28, 0);
        text-shadow: 0 0 6px rgba(170, 28, 28, 0.45);
        letter-spacing: normal;
    }
}

#menu-home.scrolled {
background: rgba(255,255,255,1);
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.2); 
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.2);
}

#menu-home-burgerbutton {
display: none;
}

@media only screen and (max-width: 900px) {
#menu-home {
justify-content: start;
}

#menu-home-burgerbutton {
display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 40px;
    color: #f6e8d2;
    font-size: 30px;
    margin-left: 20px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(186, 132, 89, 0.58);
    background: linear-gradient(180deg, rgba(86, 60, 45, 0.72) 0%, rgba(54, 36, 29, 0.74) 54%, rgba(36, 24, 20, 0.76) 100%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 224, 188, 0.16), 0 0 0 1px rgba(118, 36, 36, 0.24);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55), 0 0 5px rgba(255, 111, 111, 0.16);
    transition: background 170ms ease, border-color 170ms ease, box-shadow 170ms ease, transform 130ms ease, filter 160ms ease, color 140ms ease;
}

#menu-home-burgerbutton:hover,
#menu-home-burgerbutton:focus-visible {
color: #fff4e2;
    border-color: rgba(224, 150, 96, 0.78);
    background: linear-gradient(180deg, rgba(101, 66, 47, 0.76) 0%, rgba(64, 39, 29, 0.76) 56%, rgba(45, 28, 23, 0.78) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 196, 0.2), 0 0 0 1px rgba(214, 62, 62, 0.34), 0 0 14px rgba(199, 62, 62, 0.24);
    animation: sepiaButtonGlitchImpulse 230ms steps(2, end) 1;
}

#menu-home.menu-open #menu-home-burgerbutton,
#menu-home-burgerbutton.is-active,
#menu-home-burgerbutton[aria-expanded="true"] {
    color: #fff4e2;
    border-color: rgba(224, 150, 96, 0.82);
    background: linear-gradient(180deg, rgba(101, 66, 47, 0.78) 0%, rgba(64, 39, 29, 0.78) 56%, rgba(45, 28, 23, 0.8) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 196, 0.22), 0 0 0 1px rgba(214, 62, 62, 0.38), 0 0 16px rgba(199, 62, 62, 0.28);
    filter: saturate(1.08) brightness(1.05);
}

#menu-home-burgerbutton:active {
    transform: translateY(1px);
    filter: brightness(0.98) saturate(1.1);
}

#menu-home-btn-style {
display: none;
}
}

.roboto-slab-semibold {
font-family: "Roboto Slab", serif;                                                      
   font-weight: 600;
}

.parallax-container {
/*border: dotted 10px green;*/
    position: relative;
    height: 100vh;
    background-image: url("../media/images/images/Peter_Reddemann/PR2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media only screen and (max-width: 900px) {
.parallax-container {
background-image: url("../media/images/images/Peter_Reddemann/PR2.png");
}
}

.parallax-content {
/*border: dotted 10px orange;*/                                                            
    color: var(--dynamic-color);                                                            
    transition: color 0.1s ease;                                                            
    width: 500px;                                                                            
    padding: 150px 0px 0px 50px;
}

@media (max-width: 1400px) {
.parallax-content {
margin-top: 180px;
}
}

@media (max-width: 900px) {
.parallax-content {
margin: auto;                                
      margin-top: 250px;
}
}

@keyframes donerSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
  }

#ka-do-sp-wrapper {
perspective: 1000px;
    width: 120px;
    height: 200px;
    margin: 0;
    position: relative;
}

#intro-card-zone {
display: flex;
    align-items: center;
    gap: 24px;
    margin: 14px 0 0 140px;
    width: fit-content;
}

@media (max-width: 900px) {
#ka-do-sp-wrapper {
display: none;
}
}

.rotierender-wrapper {
animation: donerSpin 4s linear infinite;
    transform-style: preserve-3d;
    transform-origin: center center; /* ⬅ Bleibt zentriert! */
    width: 120px;
    height: 200px;
}

.karte-wrapper {
width: 100%;
    height: 100%;
    transform: rotateZ(-25deg); /* ⬅ Das kippt sie optisch */
    transform-style: preserve-3d;
    position: relative;
}

.vs-animation, .rs-animation {
position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    background-size: cover;
}

.karte-wrapper {
transform: rotateZ(-25deg); /* ⬅ Schräger Dreh-Effekt */
    transform-origin: center center;
    transform-style: preserve-3d;
}

.vs-animation {
background-image: url("../MEDIA/drehende_karte/K_V_01.png");
    border: 3px solid #000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.38);
    overflow: hidden;
    transform: rotateY(0deg) translateZ(1px);
    z-index: 2;
}

.vs-animation::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.26);
    pointer-events: none;
}

.rs-animation {
background-image: url("../MEDIA/drehende_karte/KR_01.png");
    transform: rotateY(180deg) translateZ(1px);
}

.logo-wrapper {
height: 195px;                                                                              
    border-radius: 15px;                                                                        
    border: 2px solid #444;                                                                   
    overflow: hidden;                                                                    
    background-color: #000;                                                             
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.logo-inner {
width: 100%;                                                                           
    height: 100%;                                                                             
    background-image: url("../MEDIA/drehende_karte/K_V_01.png");                                                
    background-size: 120%;                                                                 
    background-position: center;                                                         
    background-repeat: no-repeat;
}

#ueberschrift-oben {
/*border: dotted 10px gray;*/
    font-size: 25px;                                                   
    font-weight: bold;                                           
    margin-bottom: 30px;                                                    
    color: gray;
}

#ueberschrift-mitte {
/*border: dotted 10px gray;*/                                            
    font-size: 80px;                                                           
    line-height: 1.0;
}

@media (max-width: 1400px) {
#ueberschrift-mitte {
font-size: 75px;
}
}

#ueberschrift-unten {
/*border: dotted 10px gray;*/                      
    font-size: 16px;                                   
    line-height: 1.3;                              
    margin-top: 30px;                                 
    color: gray;
}

.cont-01 {
/*border: dotted 10px green;*/                            
    padding: 100px;                                      
    margin: 10px 0px 10px 0px;                           
    text-align: center;
    font-size: 25px;
    color: gray;
}

.cont-02 {
/*border: dotted 10px green;*/
    padding: 150px 10px 380px 10px;
    text-align: center;                                                                          
    font-size: 25px;
    color: gray;
}

.co-oc-02 {
display: flex; 
    justify-content: center;
    flex-direction: row;
}

#co-in-02 {
display: flex;
    flex-direction: column;
    /*border: dotted 10px red;*/                                 
    width: 300px;                                     
    height: 500px;                                                                                 
    margin: 50px 10px 40px 50px;                     
    padding: 10px 10px 40px 10px;              
    text-align: left;                                      
    font-size: 16px;                                           
    line-height: 1.3;                                         
    color: #cca080;
    gap: 5px 5px;
}

#co-ka-02 {
/*border: dotted 10px orange;*/                               
    width: 300px;                                                                              
    height: 500px;                                                             
    margin: 50px 10px 40px 50px;                                                              
    padding: 10px 40px 40px 10px;
}

#co-ka-02:hover .vs-02 {
-webkit-transform: perspective(450px) rotateY(0deg);                                                                               
    transform: perspective(450px) rotateY(0deg);
}

#co-ka-02:hover .rs-02 {
-webkit-transform: perspective(450px) rotateY(179.9deg);    
    transform: perspective(450px) rotateY(179.9deg);
}

@media (max-width: 900px) {
.co-oc-02 {
flex-direction: column-reverse;
}

#co-in-02 {
margin: auto;
        margin: 50px auto 40px auto;
}

#co-ka-02 {
margin: 50px auto 40px auto;
}
}

.vs-02 {
position: absolute;                         
    width: 330px;                                   
    height: 530px;                                      
    border-radius: 15px;                                      
    -webkit-transition: -webkit-transform 1s;                
    transition: transform 1s;
    background-color: black;                                                            
    background-image: url("../MEDIA/Horror_1.jpg");           
    border: solid 2px black;                                                   
    color: black;                                                        
    -webkit-transform: perspective(450px) rotateY(-179.9deg);                          
    transform: perspective(450px) rotateY(-179.9deg);                                 
    -webkit-backface-visibility: hidden;                    
    backface-visibility: hidden;
}

.rs-02 {
position: absolute;                                                       
    width: 300px;                                 
    height: 500px;                                    
    border-radius: 15px;                                 
    -webkit-transition: -webkit-transform 1s;    
    transition: transform 1s;
    /*display:flex;*/                                 
    /*justify-content: center;*/                     
    align-items: center;                                   
    background-image: url("../MEDIA/drehende_karte/dark_K_1.png");      
    color: black;                                   
    /*text-align: center;*/                                
    /*vertical-align: middle;*/                                
    /*border: solid 15px black;*/                             
    -webkit-transform: perspective(450px) rotateY(0deg);                                
    transform: perspective(450px) rotateY(0deg);                                              
    -webkit-backface-visibility: hidden;                                                     
    backface-visibility: hidden;
}

#co-in-02 div a i {
color: gray;
    width: 280px;
    height: 25px;
    font-size: 25px;
}

.cont-03 {
/*border: dotted 10px green;*/
    padding: 150px 10px 380px 10px;
    text-align: center;                                                                          
    font-size: 25px;
    color: gray;
}

.co-oc-03 {
display: flex; 
    justify-content: center;
    flex-direction: row;
}

#co-in-03 {
display: flex;
    flex-direction: column;
    /*border: dotted 10px orange;*/                                                    
    width: 300px;                                                                            
    height: 500px;                                                              
    margin: 50px 10px 40px 50px;                     
    padding: 10px 10px 40px 10px;                                                   
    text-align: left;                                                                 
    font-size: 16px;                                                                  
    line-height: 1.3;                                                              
    color: #cca080;
}

#co-ka-03 {
/*border: dotted 10px orange;*/                                                      
    width: 300px;                                                                     
    height: 500px;                                                                                                                                   
    margin: 50px 10px 40px 50px;                                                              
    padding: 10px 40px 40px 10px;
}

#co-ka-03:hover .vs-03 {
-webkit-transform: perspective(450px) rotateY(0deg);                         
    transform: perspective(450px) rotateY(0deg);
}

#co-ka-03:hover .rs-03 {
-webkit-transform: perspective(450px) rotateY(179.9deg);                     
    transform: perspective(450px) rotateY(179.9deg);
}

@media (max-width: 900px) {
.co-oc-03 {
flex-direction: column-reverse;
}

#co-in-03 {
margin: auto;
        margin: 50px auto 40px auto;
}

#co-ka-03 {
margin: 50px auto 40px auto;
}
}

.vs-03 {
position: absolute;                                                              
    width: 330px;                                                                     
    height: 530px;                                                            
    border-radius: 15px;                                                            
    -webkit-transition: -webkit-transform 1s;                                  
    transition: transform 1s;
    background-color: black;
    background-image: url("../MEDIA/Horror_1.jpg");       
    border: solid 2px black;                                                 
    color: black;                                                            
    -webkit-transform: perspective(450px) rotateY(-179.9deg);                           
    transform: perspective(450px) rotateY(-179.9deg);                                     
    -webkit-backface-visibility: hidden;                                                 
    backface-visibility: hidden;
}

.rs-03 {
position: absolute;                                                        
    width: 300px;                                                           
    height: 500px;                                                     
    border-radius: 15px;                                                             
    -webkit-transition: -webkit-transform 1s;                           
    transition: transform 1s;
    display:flex;                                                                         
    justify-content: center;                                                                                                                                 
    align-items: center;                                                                                                                                                      
    background-image: url("../MEDIA/drehende_karte/dark_K_1.png");                                                             
    color: black;                                                                  
    text-align: center;                                                            
    vertical-align: middle;                                                        
    /*border: solid 15px black;*/                                                 
    -webkit-transform: perspective(450px) rotateY(0deg);                                       
    transform: perspective(450px) rotateY(0deg);                                               
    -webkit-backface-visibility: hidden;                                                      
    backface-visibility: hidden;
}

#co-in-03 a i {
color: grey;
    width: 30px;
    height: 30px;
    font-size: 30px;
}

.cont-04 {
/*border: dotted 10px green;*/
    padding: 150px 10px 380px 10px;
    text-align: center;                                                                          
    font-size: 25px;
    color: gray;
}

.co-oc-04 {
display: flex; 
    justify-content: center;
    flex-direction: row;
}

#co-in-04 {
display: flex;
    flex-direction: column;
    /*border: dotted 10px orange;*/                                                    
    width: 300px;                                                                            
    height: 500px;                                                              
    margin: 50px 10px 40px 50px;                     
    padding: 10px 10px 40px 10px;                                                   
    text-align: left;                                                                 
    font-size: 16px;                                                                  
    line-height: 1.3;                                                              
    color: #cca080;
}

#co-ka-04 {
/*border: dotted 10px orange;*/                                                      
    width: 300px;                                                                     
    height: 500px;                                                                                                                                   
    margin: 50px 10px 40px 50px;                                                              
    padding: 10px 40px 40px 10px;
}

#co-ka-04:hover .vs-04 {
-webkit-transform: perspective(450px) rotateY(0deg);                         
    transform: perspective(450px) rotateY(0deg);
}

#co-ka-04:hover .rs-04 {
-webkit-transform: perspective(450px) rotateY(179.9deg);                     
    transform: perspective(450px) rotateY(179.9deg);
}

@media (max-width: 900px) {
.co-oc-04 {
flex-direction: column-reverse;
}

#co-in-04 {
margin: auto;
        margin: 50px auto 40px auto;
}

#co-ka-04 {
margin: 50px auto 40px auto;
}
}

.vs-04 {
position: absolute;                                                              
    width: 330px;                                                                     
    height: 530px;                                                            
    border-radius: 15px;                                                            
    -webkit-transition: -webkit-transform 1s;                                  
    transition: transform 1s;
    background-color: black;
    background-image: url("../MEDIA/Horror_1.jpg");       
    border: solid 2px black;                                                 
    color: black;                                                            
    -webkit-transform: perspective(450px) rotateY(-179.9deg);                           
    transform: perspective(450px) rotateY(-179.9deg);                                     
    -webkit-backface-visibility: hidden;                                                 
    backface-visibility: hidden;
}

.rs-04 {
position: absolute;                                                        
    width: 300px;                                                           
    height: 500px;                                                     
    border-radius: 15px;                                                            
    -webkit-transition: -webkit-transform 1s;                           
    transition: transform 1s;
    display:flex;                                                                         
    justify-content: center;                                                                                                                                 
    align-items: center;                                                                                                                                                      
    background-image: url("../MEDIA/drehende_karte/dark_K_1.png");                                                             
    color: black;                                                                  
    text-align: center;                                                            
    vertical-align: middle;                                                        
    /*border: solid 15px black;*/                                                 
    -webkit-transform: perspective(450px) rotateY(0deg);                                       
    transform: perspective(450px) rotateY(0deg);                                               
    -webkit-backface-visibility: hidden;                                                      
    backface-visibility: hidden;
}

#co-ka-02,
#co-ka-03,
#co-ka-04 {
    width: 120px;
    height: 200px;
    margin: 50px 20px 40px 20px;
    padding: 0;
}

.vs-02,
.rs-02,
.vs-03,
.rs-03,
.vs-04,
.rs-04 {
    width: 120px;
    height: 200px;
    background-size: cover;
}

#co-in-04 a i {
width: 30px;
    height: 30px;
    font-size: 30px;
}

.cont-05                                /* cont-container-05 = Content Container Nr.5 */ {
/*border: dotted 10px green;*/      /* Diese Eigenschaft fügt dem Element eine gepunktete Umrandung hinzu.*/
    padding: 150px 10px 280px 10px;     /* Das Padding legt den inneren Abstand zwischen dem Inhalt des Elements und seiner Umrandung fest.*/
    margin: 10px 0px 10px 0px;          /* Das Margin definiert den äußeren Abstand zwischen dem Element und anderen Elementen.*/
    text-align: center;                 /* Diese Eigenschaft richtet den Textinhalt des Elements zentral aus.*/
    color: gray;                   /* Diese Eigenschaft legt die Schriftfarbe des Textes im Element fest.*/
    font-size: 25px;                    /* Diese Eigenschaft definiert die Schriftgröße des Textes im Element.*/
}

.s-g                               /* s-g = Definiert Standart Grafik */ {
--r: 0deg;
    width: 120px;
    height: 200px;
    border-radius: 15px;
    border: solid 5px black;
    display:flex;
    justify-content: center;
    align-items: center;
    background-size: 120%;
    background-position: center;
    transform: perspective(800px) rotate(var(--r)) rotateY(0deg);
    transform-origin: center;
    transition: transform 0.6s ease;
    cursor: pointer;
    /*position: absolute;*/
}

.s-g:hover {
transform: perspective(800px) rotate(var(--r)) rotateY(180deg);
}

#ka01                               /* ka01 = Definiert Karte Nr.1 */ {
background-image: url("../MEDIA/drehende_karte/KR_01.png");
    --r: -110deg;
    margin-top: -70px; 
    margin-left: 1200px;
}

#ka02 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -70deg;                                                                                                                                     
    margin-top: 50px;                                                                        
    margin-left: 1200px;
}

#ka03 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -50deg;                                                                                                                                     
    margin-top: -150px;                                                                        
    margin-left: 1100px;
}

#ka04 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                            
    --r: -30deg;                                                                                                                                     
    margin-top: -250px;                                                                        
    margin-left: 750px;
}

#ka05 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -10deg;                                                                                                                                    
    margin-top: -350px;                                                                        
    margin-left: 850px;
}

#ka06 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: 0deg;                                                                                                                                     
    margin-top: -250px;                                                                        
    margin-left: 250px;
}

#ka07 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -200deg;                                                                                                                                     
    margin-top: -250px;                                                                        
    margin-left: 350px;
}

#ka08 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -220deg;                                                                                                                                     
    margin-top: -50px;                                                                        
    margin-left: 50px;
}

#ka09 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                            
    --r: -240deg;                                                                                                                                     
    margin-top: -50px;                                                                        
    margin-left: 50px;
}

#ka10 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -260deg;                                                                                                                                     
    margin-top: -50px;                                                                        
    margin-left: 50px;
}

#ka11 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -80deg;                                                                                                                                     
    margin-top: -190px;                                                                        
    margin-left: 550px;
}

#ka12 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -160deg;                                                                                                                                     
    margin-top: -260px;                                                                        
    margin-left: 640px;
}

#ka13 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -200deg;                                                                                                                                     
    margin-top: -370px;                                                                        
    margin-left: 580px;
}

#ka14 {
background-image: url("../MEDIA/drehende_karte/KR_01.png");                                                             
    --r: -60deg;                                                                                                                                     
    margin-top: -50px;                                                                        
    margin-left: 880px;
}

.fa-btn-style button {
padding: 8px 30px;
    font-family: "Roboto Slab", serif;
    font-size: 12px;   
    color: gray;    
    background-color: rgba(0, 0, 0, 0);
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    border: solid 1px gray;
}

.fa-btn-style button:hover {
color: rgb(246, 246, 246);
    transition: all 0.5s ease;
    transform: scale(1.2);
}

#audio-controls {
    margin-top: -44px;
}

#audio-controls button {
    padding: 14px 42px;
    font-size: 16px;
    min-width: 300px;
    color: rgb(170, 28, 28);
    border-color: rgba(170, 28, 28, 0.75);
    text-shadow: 0 0 6px rgba(170, 28, 28, 0.45);
    animation: deadLinkGlitchImpulse 2.6s steps(1, end) infinite;
}

#audio-controls button:hover {
    animation-duration: 1.1s;
}

input[type="text"], input[type="password"] {
width: 100%;
    padding: 10px;
    margin: 10px 0;
    box-sizing: border-box;
}

button[type="submit"] {
width: 100%;
    padding: 10px;
    background-color: #197001;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

p a {
color: #0088ff;
    text-decoration: none;
}

p a:hover {
text-decoration: underline;
}

.login-wrapper {
max-width: 400px;
    margin: 3rem auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: "Roboto Slab", serif;
}

.login-wrapper h2 {
text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.login-wrapper label {
display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 500;
}

.login-wrapper input {
width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #f9f9f9;
}

.login-wrapper button {
width: 100%;
    padding: 0.75rem;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-wrapper button:hover {
background-color: #0056b3;
}

.login-wrapper .error {
color: #b00020;
    text-align: center;
    margin-bottom: 1rem;
}

h2 {
text-align: center;
    margin-bottom: 20px;
}

input[type="email"], input[type="text"], input[type="password"] {
width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button[type="submit"] {
width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

button[type="submit"]:hover {
background-color: #68da6c;
    color: black;
    border: none;
}

p {
text-align: center;
    margin-top: 10px;
}

a {
color: #007BFF;
    text-decoration: none;
}

a:hover {
text-decoration: underline;
}

#logout-warning {
font-size: 1.1rem;
    text-align: center;
    padding: 1.5rem;
    background: #ffcc00;
    color: #000;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    max-width: 90%;
    width: 300px;
}

#logout-warning.visible {
opacity: 1;
}

#logout-timer {
font-weight: bold;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    display: block;
}

.register-wrapper {
max-width: 400px;
    margin: 3rem auto;
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: "Roboto Slab", serif;
}

.register-wrapper h2 {
text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.register-wrapper label {
display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 500;
}

.register-wrapper input {
width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: #f9f9f9;
}

.register-wrapper button {
width: 100%;
    padding: 0.75rem;
    background-color: #28a745; /* Grün statt Blau für optische Unterscheidung */
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register-wrapper button:hover {
background-color: #1e7e34;
}

.register-wrapper .error {
color: #b00020;
    text-align: center;
    margin-bottom: 1rem;
}

.register-wrapper .success {
color: #28a745;
    text-align: center;
    margin-bottom: 1rem;
}

h2 {
text-align: center;
    margin-bottom: 20px;
}

input[type="email"], input[type="text"], input[type="password"] {
width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

button[type="submit"] {
width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

p {
text-align: center;
    margin-top: 10px;
}

a {
color: #007BFF;
    text-decoration: none;
}

a:hover {
text-decoration: underline;
}

body {
/*border: dotted 10px red;*/
   margin: 0;
   padding: 0;  
   font-family: "Roboto Slab", serif;
   text-decoration: none;
    color: #e5e5e5;
    background-color: #090707;
    background-image:
        radial-gradient(circle at 18% 12%, rgba(120, 14, 14, 0.37) 0%, rgba(120, 14, 14, 0) 34%),
        radial-gradient(circle at 82% 88%, rgba(78, 12, 12, 0.34) 0%, rgba(78, 12, 12, 0) 36%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.77) 0%, rgba(13, 10, 10, 0.86) 48%, rgba(9, 7, 7, 0.92) 100%),
        url("MEDIA/Horror_1.jpg");
    background-size: auto, auto, auto, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-attachment: fixed;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body::before {
    background:
        radial-gradient(circle at 28% 24%, rgba(140, 18, 18, 0.12) 0%, rgba(140, 18, 18, 0) 46%),
        radial-gradient(circle at 74% 68%, rgba(70, 8, 8, 0.11) 0%, rgba(70, 8, 8, 0) 44%);
    filter: blur(14px);
    opacity: 0.64;
}

body::after {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
    opacity: 0.73;
}

.content-divider {
display: block;
   width: 20%;
   max-width: 400px;
   margin: -100px 0px 0px 200px;
}

.content-divider_1 {
display: flex;
   width: 10%;
   max-width: 200px;
   margin: -350px 0px 0px 1050px;
}

.content-divider_2 {
display: flex;
   width: 80%;
   max-width: 200px;
   margin: -350px 0px 0px 1050px;
}

.roboto-slab-semibold {
font-family: "Roboto Slab", serif;
   font-weight: 600;
}

.trennstrich-3px-hoch-50px-breit {
height: 4px;
   width: 50px;
}

.fa-btn-style a i {
font-style: normal;   
   color: gray;    
   background-color: rgba(0, 0, 0, 0);
   padding: 10px;
   text-align: center;
   text-decoration: none;
   border-radius: 15px;
   border: solid 1px gray;
}

.fa-btn-style a i:hover {
color: rgb(251, 251, 251);
    transition: all 0.5s ease;
    transform: scale(1.2);
}

#anordnen {
display: flex;
}

#login-form-container {
background-color: #f9f9f946; /* Heller Hintergrund passend zur Website */
   border: 1px solid #ddd; /* Dezente Umrandung */
   border-radius: 8px;
   padding: 20px;
   max-width: 400px;
   margin: 200px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   font-family: "Roboto Slab", serif; /* Passend zu deiner Website */
}

#login-form-container h2 {
color: #333; /* Dunkler Text für Überschrift */
   text-align: center;
   margin-bottom: 20px;
}

#login-form-container label {
display: block;
   margin-bottom: 8px;
   color: #555; /* Dezenter Text für Labels */
   font-weight: 600;
}

#login-form-container input {
width: 95%;
   padding: 10px;
   margin-bottom: 15px;
   border: 1px solid #ccc;
   border-radius: 4px;
   font-size: 14px;
   font-family: "Roboto Slab", serif;
}

#login-form-container input:focus {
border-color: #0078d7; /* Blaue Farbe passend zur Website */
   outline: none;
   box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
}

#login-form-container button {
width: 100%;
   padding: 10px;
   font-family: "Roboto Slab", sans-serif;
   border: dotted 2px #cca080;
   background-color: #021f43; /* Primärfarbe der Website */
   color: #fff;
   border-radius: 15px;
   font-size: 16px;
   font-weight: bold;
   cursor: pointer;
}

#login-form-container button:hover {
transition: all 0.5s ease;
   transform: scale(1.2);
}

#register-form-container {
background-color: #f9f9f946; /* Heller Hintergrund passend zur Website */
   border: 1px solid #ddd; /* Dezente Umrandung */
   border-radius: 8px;
   padding: 20px;
   max-width: 400px;
   margin: 20px;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   font-family: "Roboto Slab", serif; /* Passend zu deiner Website */
}

#register-form-container h2 {
color: #333; /* Dunkler Text für Überschrift */
   text-align: center;
   margin-bottom: 20px;
}

#register-form-container label {
display: block;
   margin-bottom: 8px;
   color: #555; /* Dezenter Text für Labels */
   font-weight: 600;
}

#register-form-container input {
width: 95%;
   padding: 10px;
   margin-bottom: 15px;
   border: 1px solid #ccc;
   border-radius: 4px;
   font-size: 14px;
   font-family: "Roboto Slab", serif;
}

#register-form-container input:focus {
border-color: #0078d7; /* Blaue Farbe passend zur Website */
   outline: none;
   box-shadow: 0 0 5px rgba(0, 120, 215, 0.5);
}

#register-form-container button {
width: 100%;
   padding: 10px;
   font-family: "Roboto Slab", sans-serif;
   border: dotted 2px #cca080;
   background-color: #021f43; /* Primärfarbe der Website */
   color: #fff;
   border-radius: 15px;
   font-size: 16px;
   font-weight: bold;
   cursor: pointer;
}

#register-form-container button:hover {
transition: all 0.5s ease;
   transform: scale(1.2);
}

#cookie-banner {
position: fixed;
   bottom: 0;
   left: 0;
   width: 100%;
   background-color: rgba(0, 0, 0, 0.476);
   border: solid 1px black;
   color: gray;
   text-align: center;
   padding: 15px;
   box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
   z-index: 1000;
   display: none; /* Standardmäßig ausgeblendet */
}

#cookie-banner p {
margin: 0;
   font-size: 14px;
   display: inline-block;
}

#cookie-banner a {
color: gray;
   text-decoration: underline;
}

#cookie-banner button {
margin-left: 10px;
   padding: 10px 15px;
   font-size: 14px;
   color: gray;
   border: 1px solid white;
   background-color: rgba(0, 0, 0, 0);
   border: none;
   border-radius: 5px;
   cursor: pointer;
}

#cookie-banner button:hover {
color: rgb(246, 246, 246);
   transition: all 0.5s ease;
   transform: scale(1.2);
}

#chatbot-container {
position: fixed;
   bottom: 90px;
   right: 20px; /* Position für Nela */
    z-index: 3600;
   display: none;
   width: 320px;
   max-height: 500px;
   border-radius: 10px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
   overflow: hidden;
}

#chatbot-header {
background-color: rgba(5, 7, 42, 0.545); /* Dunkelblauer Header */
   color: #ffffff; /* Weißer Text */
   padding: 10px;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

#chatbot-header span {
font-weight: bold;
}

#chatbot-header button {
/*background: none;*/
   border: none;
   background-color: #720404;
   color: #ffffff;
   border-radius: 4px;
   padding: 2px 6px;
   font-size: 16px;
   cursor: pointer;
}

#chatbot-messages {
padding: 10px;
   max-height: 280px;
   overflow-y: auto;
   font-size: 14px;
   background-color: rgba(5, 7, 42, 0.545); /* Heller Hintergrund für Nachrichtenbereich */
   color: #ffffff; /* Weißer Text */
   display: flex;
   flex-direction: column;
   gap: 8px;
}

#chatbot-messages::-webkit-scrollbar {
width: 6px;
}

#chatbot-messages::-webkit-scrollbar-track {
background: rgba(0, 0, 0, 0.1);
   border-radius: 10px;
}

#chatbot-messages::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.3);
   border-radius: 10px;
}

#chatbot-messages::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.5);
}

#chatbot-input {
display: flex;
   padding: 10px;
   background-color: rgba(5, 7, 42, 0.545);
   border-bottom-left-radius: 10px;
   border-bottom-right-radius: 10px;
}

#chatbot-input input {
flex: 1;
   padding: 10px 12px;
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 20px;
   margin-right: 8px;
   background-color: rgba(255, 255, 255, 0.9);
   font-size: 14px;
   outline: none;
   transition: all 0.3s ease;
}

#chatbot-input input:focus {
border-color: #4a90e2;
   box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

#chatbot-input button {
background-color: #8B0000;
   color: #ffffff; /* Weißer Text */
   border: none;
   padding: 10px 15px;
   border-radius: 5px;
   cursor: pointer;
   font-size: 16px;
   font-weight: bold;
   transition: all 0.3s ease;
}

#chatbot-input button:hover {
background-color: #B22222;
   transform: scale(1.05);
}

#chatbot-quick-replies {
display: flex;
   flex-wrap: wrap;
   gap: 6px;
   padding: 8px 10px;
   background-color: rgba(5, 7, 42, 0.545);
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-reply {
background-color: rgba(255, 255, 255, 0.15);
   color: #ffffff;
   border: 1px solid rgba(255, 255, 255, 0.3);
   padding: 6px 12px;
   border-radius: 15px;
   font-size: 12px;
   cursor: pointer;
   transition: all 0.3s ease;
   white-space: nowrap;
}

.quick-reply:hover {
background-color: rgba(255, 255, 255, 0.25);
   transform: translateY(-2px);
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#open-chatbot {
font-family: "Roboto Slab", serif;
   position: fixed;
   bottom: 20px;
    right: 10px; /* gleicher Abstand wie Social/E-Mail-Leiste */
    z-index: 3600;
   background-color: rgba(71, 71, 71, 0); /* Hauptfarbe */
   color: grey; /* Weißer Text */
   border: none;
   border-radius: 50%;
   border: solid 1px grey;
   width: 60px;
   height: 60px;
   font-size: 20px;
   cursor: pointer;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#open-chatbot:hover {
transition: all 0.5s ease;
   transform: scale(1.2);
}

.message.bot {
background-color: #f9f9f9; /* Heller Hintergrund für Bot-Nachrichten */
   color: #403f3f; /* Dunkler Text */
   padding: 10px 12px;
   border-radius: 15px 15px 15px 3px;
   margin-bottom: 8px;
   max-width: 75%;
   align-self: flex-start;
   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
   animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
   from {
      opacity: 0;
      transform: translateX(-20px);
   }
   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@keyframes slideInRight {
   from {
      opacity: 0;
      transform: translateX(20px);
   }
   to {
      opacity: 1;
      transform: translateX(0);
   }
}

@keyframes blink {
   0%, 100% { opacity: 0.3; }
   50% { opacity: 1; }
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;  
    font-size: 16px;
}

.fa-btn-style a i {
font-style: normal;   
   color: gray;    
   background-color: rgba(0, 0, 0, 0);
   padding: 10px;
   text-align: center;
   text-decoration: none;
   border-radius: 15px;
   border: solid 1px gray;
}

.fa-btn-style a i:hover {
transition: all 0.5s ease;
    transform: scale(1.2);
}

.trennstrich-3px-hoch-50px-breit {
height: 3px;
   width: 50px;
}

.roboto-slab-semibold {
font-family: "Roboto Slab", serif;
   font-weight: 600;
}

#kartenstapel {
/*border: dotted 10px red;*/
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

#karte1, #karte2, #karte3, #karte4, #karte5, #karte6, #karte7, #karte8 {
/*border: dotted 10px green;*/
    position: relative;
    padding: 0px 10px 530px 10px;
    margin: 150px 580px 10px 975px;
}

#karte1:hover .vorderseite, #karte2:hover .vorderseite, #karte3:hover .vorderseite, #karte4:hover .vorderseite, #karte5:hover .vorderseite, #karte6:hover .vorderseite, #karte7:hover .vorderseite, #karte8:hover .vorderseite {
-webkit-transform: perspective(450px) rotateY(0deg);
    transform: perspective(450px) rotateY(0deg);
}

#karte1:hover .rueckseite, #karte2:hover .rueckseite, #karte3:hover .rueckseite, #karte4:hover .rueckseite, #karte5:hover .rueckseite, #karte6:hover .rueckseite, #karte7:hover .rueckseite, #karte8:hover .rueckseite {
-webkit-transform: perspective(450px) rotateY(179.9deg);
    transform: perspective(450px) rotateY(179.9deg);
}

.vorderseite, .rueckseite {
position: absolute;
    width: 300px;
    height: 500px;
    border-radius: 15px;
    -webkit-transition: -webkit-transform 1s;
    transition: transform 1s;
}

.vorderseite {
padding: 20px;
    background-color: white;
    border: solid 2px white;
    color: black;
    -webkit-transform: perspective(450px) rotateY(-179.9deg);
    transform: perspective(450px) rotateY(-179.9deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.rueckseite {
display:flex;
    justify-content: center;
    align-items: center;
    background-image: url("../media/");
    color: black;
    text-align: center;
    vertical-align: middle;
    border: solid 15px black;
    -webkit-transform: perspective(450px) rotateY(0deg);
    transform: perspective(450px) rotateY(0deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.is-hidden {
	display: none;
}

.link-block {
	display: block;
}

/* Rote Akzentfarbe für Text */
.accent-red {
    color: rgb(119, 3, 3); /* Rotton */
}

.hr-83 {
	width: 83%;
}

.text-black {
    color: #e8dfd4;
}

.text-lg {
	font-size: 20px;
}

.text-md {
	font-size: 17px;
}

.text-xxl {
	font-size: 60px;
}

.actions-evenly {
	display: flex;
	justify-content: space-evenly;
}

.skip-link {
	position: absolute;
	top: -48px;
	left: 12px;
	padding: 8px 12px;
	background: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	z-index: 10000;
	transition: top 150ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
	top: 12px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
	outline: 3px solid rgb(119, 3, 3);
	outline-offset: 2px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.yt-preview-image,
	.yt-preview-play,
	.skip-link,
	.yt-preview-button {
		transition: none !important;
		transform: none !important;
	}
}

.youtube-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	padding: 20px 0;
}

.video-wrapper {
	flex: 1 1 calc(33.333% - 20px);
	min-width: 300px;
	max-width: 500px;
}

.video-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.video-iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.video-title {
	text-align: center;
	margin-top: 10px;
	color: #fff;
	font-weight: 600;
}

.yt-preview-button {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: #000;
	cursor: pointer;
	overflow: hidden;
	transition: filter 180ms ease;
}

.yt-preview-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 220ms ease;
}

.yt-preview-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	border-radius: 14px;
	background: rgba(0, 0, 0, 0.75);
	color: #fff;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 180ms ease, transform 180ms ease;
}

.yt-preview-button:hover .yt-preview-image,
.yt-preview-button:focus .yt-preview-image,
.yt-preview-button:focus-visible .yt-preview-image {
	transform: scale(1.06);
}

.yt-preview-button:hover .yt-preview-play,
.yt-preview-button:focus .yt-preview-play,
.yt-preview-button:focus-visible .yt-preview-play {
	background: rgba(255, 0, 0, 0.9);
	transform: translate(-50%, -50%) scale(1.05);
}

#login-overlay {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: radial-gradient(circle at 50% 18%, rgba(120, 16, 16, 0.2) 0%, rgba(10, 8, 9, 0.92) 55%, rgba(6, 6, 7, 0.97) 100%);
    z-index: 1200;
}

#content-lock-notice {
    position: relative;
    top: 40px;
    left: auto;
    transform: none;
    width: min(430px, calc(100vw - 40px));
    margin: 0;
    padding: 12px 14px;
    border: 1px solid rgba(255, 78, 78, 0.55);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(71, 18, 18, 0.92) 0%, rgba(34, 12, 12, 0.92) 100%);
    color: #ffd7d7;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    z-index: 1210;
    margin-left: 420px;
    transition: opacity 180ms ease, filter 180ms ease;
}

body.auth-overlay-open #content-lock-notice {
    opacity: 0.12;
    filter: blur(2px);
    z-index: 1;
}

#content-unlock-toast {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translate(-50%, -12px);
    z-index: 1250;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1px solid rgba(75, 190, 109, 0.55);
    background: linear-gradient(180deg, rgba(33, 83, 42, 0.95) 0%, rgba(22, 56, 29, 0.95) 100%);
    color: #d8ffe6;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

#content-unlock-toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

#presence-panel {
    display: none;
    position: fixed;
    top: 420px;
    right: 10px;
    bottom: 95px;
    left: auto;
    width: 220px;
    max-height: none;
    overflow: auto;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(120, 170, 194, 0.34);
    background: rgba(13, 21, 29, 0.78);
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(112, 170, 198, 0.14);
    z-index: 12;
}

#presence-panel.is-visible {
    display: block;
}

#presence-panel h2 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #dff2f8;
}

.presence-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: #b9d7e4;
    font-size: 13px;
}

.presence-filter input {
    accent-color: #6ec8e6;
}

#presence-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.presence-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: #d4e8f1;
    font-size: 13px;
}

.presence-lamp {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    flex: 0 0 11px;
}

.presence-item.is-online .presence-lamp {
    background: #00d640;
    box-shadow: 0 0 10px rgba(0, 214, 64, 0.9);
}

.presence-item.is-offline .presence-lamp {
    background: #d21919;
    box-shadow: 0 0 10px rgba(210, 25, 25, 0.85);
}

.presence-empty {
    color: #acc8d4;
    font-size: 13px;
}

@media only screen and (max-width: 900px) {
    #presence-panel {
        position: static;
        width: auto;
        max-height: none;
        margin: 10px 12px 0;
    }
}

#member-chat-platform {
    position: fixed;
    left: 14px;
    bottom: 18px;
    width: min(480px, calc(100vw - 30px));
    max-height: 62vh;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 1px solid rgba(120, 170, 194, 0.45);
    background: linear-gradient(180deg, rgba(16, 26, 34, 0.94) 0%, rgba(8, 14, 21, 0.95) 100%);
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(136, 196, 222, 0.14) inset;
    z-index: 3500;
    padding: 12px;
    gap: 10px;
    pointer-events: auto;
}

.member-chat-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.member-chat-head-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.member-chat-head-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-chat-head-controls label {
    font-size: 12px;
    color: #b8d7e5;
}

#member-chat-target {
    min-width: 150px;
    border-radius: 7px;
    border: 1px solid rgba(120, 170, 194, 0.7);
    background: rgba(12, 20, 27, 0.9);
    color: #e2f2f8;
    padding: 5px 8px;
    font-size: 13px;
}

#member-chat-target.has-unread {
    border-color: rgba(109, 197, 230, 0.82);
    box-shadow: 0 0 12px rgba(84, 173, 206, 0.45);
}

#member-chat-unread-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(109, 197, 230, 0.8);
    background: linear-gradient(180deg, rgba(27, 72, 94, 0.96) 0%, rgba(12, 36, 49, 0.96) 100%);
    color: #e6f7ff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(84, 173, 206, 0.45);
}

#member-chat-platform h2 {
    margin: 0;
    font-size: 17px;
    letter-spacing: 0.3px;
    color: #dff2f8;
}

#member-chat-meta {
    margin: 0;
    font-size: 12px;
    color: #a9c9d8;
}

#member-chat-meta.has-unread {
    color: #c9eaf6;
    text-shadow: 0 0 8px rgba(70, 152, 186, 0.62);
    animation: chatMetaUnreadPulse 0.95s ease-in-out infinite, chatMetaUnreadJitter 1.07s steps(1, end) infinite;
}

@keyframes chatMetaUnreadPulse {
    0%, 100% {
        text-shadow: 0 0 8px rgba(70, 152, 186, 0.7), -1px 0 rgba(120, 206, 238, 0.28), 1px 0 rgba(102, 128, 142, 0.22);
        letter-spacing: 0;
        opacity: 0.9;
        color: #c6e5f1;
    }
    18% {
        text-shadow: 0 0 11px rgba(78, 170, 206, 0.84), -2px 0 rgba(138, 214, 242, 0.52), 2px 0 rgba(126, 149, 160, 0.26);
        letter-spacing: 0.2px;
        color: #d4eef8;
        opacity: 0.96;
    }
    31% {
        text-shadow: 0 0 10px rgba(74, 162, 196, 0.78), 2px -1px rgba(126, 206, 236, 0.46), -2px 1px rgba(118, 142, 154, 0.24);
        letter-spacing: 0.1px;
        color: #cce8f4;
        opacity: 0.93;
    }
    50% {
        text-shadow: 0 0 14px rgba(88, 186, 224, 0.9), -2px 0 rgba(144, 220, 244, 0.58), 2px 0 rgba(98, 124, 138, 0.36);
        letter-spacing: 0.4px;
        opacity: 0.98;
        color: #daf1f9;
    }
    62% {
        text-shadow: 0 0 13px rgba(84, 177, 214, 0.88), 2px -1px rgba(136, 216, 242, 0.48), -2px 1px rgba(104, 128, 142, 0.32);
        letter-spacing: 0.3px;
        opacity: 0.96;
        color: #d1ebf7;
    }
    79% {
        text-shadow: 0 0 12px rgba(82, 174, 210, 0.84), -3px 0 rgba(128, 210, 238, 0.58), 3px 0 rgba(120, 146, 160, 0.3);
        letter-spacing: 0.26px;
        color: #cee9f6;
        opacity: 0.95;
    }
}

@keyframes chatMetaUnreadJitter {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    7% {
        transform: translate3d(-1px, 0, 0);
    }
    8% {
        transform: translate3d(3px, -1px, 0);
    }
    9% {
        transform: translate3d(-2px, 1px, 0);
    }
    10% {
        transform: translate3d(0, 0, 0);
    }
    19% {
        transform: translate3d(2px, 0, 0);
    }
    20% {
        transform: translate3d(-3px, 1px, 0);
    }
    21% {
        transform: translate3d(1px, -1px, 0);
    }
    22% {
        transform: translate3d(0, 0, 0);
    }
    33% {
        transform: translate3d(-2px, 0, 0);
    }
    34% {
        transform: translate3d(2px, -1px, 0);
    }
    35% {
        transform: translate3d(-1px, 1px, 0);
    }
    36% {
        transform: translate3d(0, 0, 0);
    }
    48% {
        transform: translate3d(1px, -1px, 0);
    }
    49% {
        transform: translate3d(-4px, 2px, 0);
    }
    50% {
        transform: translate3d(3px, -1px, 0);
    }
    51% {
        transform: translate3d(0, 0, 0);
    }
    63% {
        transform: translate3d(-1px, 0, 0);
    }
    64% {
        transform: translate3d(2px, -1px, 0);
    }
    65% {
        transform: translate3d(-2px, 1px, 0);
    }
    66% {
        transform: translate3d(0, 0, 0);
    }
    77% {
        transform: translate3d(2px, 0, 0);
    }
    78% {
        transform: translate3d(-3px, 1px, 0);
    }
    79% {
        transform: translate3d(1px, -1px, 0);
    }
    80% {
        transform: translate3d(0, 0, 0);
    }
    89% {
        transform: translate3d(-2px, 0, 0);
    }
    90% {
        transform: translate3d(3px, -1px, 0);
    }
    91% {
        transform: translate3d(-1px, 1px, 0);
    }
    92% {
        transform: translate3d(0, 0, 0);
    }
}

#member-chat-stream {
    position: relative;
    z-index: 1;
}

#member-chat-messages {
    overflow: auto;
    min-height: 240px;
    max-height: 44vh;
    border: 1px solid rgba(120, 170, 194, 0.38);
    border-radius: 10px;
    padding: 10px;
    display: grid;
    gap: 8px;
    background: rgba(8, 15, 20, 0.44);
}

.chat-message {
    color: #d8ecf4;
    font-size: 13px;
    line-height: 1.35;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    border: 1px solid rgba(118, 164, 186, 0.34);
    border-radius: 10px;
    padding: 7px 9px;
    background: rgba(18, 30, 38, 0.58);
}

.chat-message strong {
    color: #eaf8fd;
}

.chat-message.chat-own {
    border-color: rgba(95, 170, 198, 0.46);
    background: rgba(18, 42, 54, 0.64);
}

.chat-message.chat-own strong {
    color: #a8e3f5;
}

.chat-system {
    color: #aecbd8;
    font-size: 12px;
}

#member-chat-jump {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 9px;
    border: 1px solid rgba(109, 197, 230, 0.74);
    padding: 7px 10px;
    font-size: 12px;
    background: linear-gradient(180deg, rgba(24, 58, 76, 0.95) 0%, rgba(12, 30, 41, 0.95) 100%);
    color: #e7f8ff;
    cursor: pointer;
    text-align: center;
    backdrop-filter: blur(2px);
    text-shadow: 0 0 8px rgba(109, 197, 230, 0.55);
    box-shadow: 0 0 14px rgba(74, 149, 178, 0.42), inset 0 0 10px rgba(26, 72, 92, 0.45);
    animation: deadLinkGlitchImpulse 3.2s steps(1, end) infinite;
}

#member-chat-jump:hover {
    background: linear-gradient(180deg, rgba(34, 76, 98, 0.98) 0%, rgba(14, 40, 55, 0.98) 100%);
    animation-duration: 1.2s;
}

#member-chat-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    position: relative;
    z-index: 3;
}

#member-chat-input {
    flex: 1;
    min-width: 0;
    min-height: 88px;
    max-height: 220px;
    resize: vertical;
    border-radius: 8px;
    border: 1px solid rgba(120, 170, 194, 0.7);
    padding: 12px 14px;
    background: rgba(12, 20, 27, 0.92);
    color: #e2f2f8;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.45;
    pointer-events: auto;
}

#member-chat-send {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(170, 28, 28, 0.74);
    padding: 9px 13px;
    background: linear-gradient(180deg, rgba(40, 12, 12, 0.95) 0%, rgba(22, 8, 8, 0.95) 100%);
    color: #ffe8e8;
    cursor: pointer;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(170, 28, 28, 0.55);
    box-shadow: 0 0 14px rgba(120, 18, 18, 0.42), inset 0 0 10px rgba(72, 12, 12, 0.45);
    animation: deadLinkGlitchImpulse 3.1s steps(1, end) infinite;
    pointer-events: auto;
}

#member-chat-send:hover {
    background: linear-gradient(180deg, rgba(58, 14, 14, 0.98) 0%, rgba(30, 10, 10, 0.98) 100%);
    animation-duration: 1.15s;
}

@media only screen and (max-width: 900px) {
    #member-chat-platform {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 86px;
        max-height: 68vh;
    }

    #member-chat-messages {
        min-height: 220px;
        max-height: 48vh;
    }

    #member-chat-input {
        min-height: 96px;
        max-height: 240px;
        font-size: 16px;
    }
}

#main-content,
#main-content p,
#main-content .text-md,
#main-content .text-lg,
#main-content .text-black {
    color: #d8c1a8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9), 0 0 8px rgba(102, 34, 18, 0.28);
    letter-spacing: 0.08px;
}

#main-content h2 {
    color: #e3ccb3;
    text-shadow: 0 0 10px rgba(132, 36, 22, 0.56), 0 0 18px rgba(78, 26, 16, 0.38), 0 1px 2px rgba(0, 0, 0, 0.92);
    letter-spacing: 0.22px;
}

body.content-unlocked #content-lock-notice {
    display: none;
}

.protected-content.is-locked {
    filter: blur(9px) grayscale(0.2) saturate(0.88) brightness(0.35) contrast(1.12);
    box-shadow: inset 0 0 0 9999px rgba(68, 58, 54, 0.34), inset 0 0 30px rgba(22, 20, 20, 0.49), inset 0 0 38px rgba(196, 22, 22, 0.6);
    pointer-events: none;
    user-select: none;
    opacity: 1;
    transition: filter 180ms ease, opacity 180ms ease, box-shadow 180ms ease, transform 60ms linear;
    animation: lockAggressivePulse 1.5s ease-in-out infinite, lockBloodGlitch 2.4s steps(1, end) infinite;
}

@keyframes lockAggressivePulse {
    0%, 100% {
        box-shadow: inset 0 0 0 9999px rgba(68, 58, 54, 0.34), inset 0 0 24px rgba(18, 18, 18, 0.42), inset 0 0 28px rgba(196, 18, 18, 0.51);
    }
    50% {
        box-shadow: inset 0 0 0 9999px rgba(58, 46, 42, 0.45), inset 0 0 36px rgba(12, 12, 12, 0.57), inset 0 0 46px rgba(218, 20, 20, 0.67);
    }
}

@keyframes lockBloodGlitch {
    0%, 68%, 100% {
        transform: translate3d(0, 0, 0);
    }
    69% {
        transform: translate3d(-3px, 1px, 0);
    }
    70% {
        transform: translate3d(4px, -2px, 0);
        box-shadow: inset 0 0 0 9999px rgba(62, 50, 46, 0.47), inset 0 0 44px rgba(16, 16, 16, 0.67), inset 0 0 66px rgba(244, 24, 24, 0.8);
    }
    71% {
        transform: translate3d(-5px, 2px, 0);
    }
    72% {
        transform: translate3d(3px, -1px, 0);
    }
    73% {
        transform: translate3d(-2px, 1px, 0);
    }
    74% {
        transform: translate3d(0, 0, 0);
    }
    89% {
        transform: translate3d(-4px, 0, 0);
    }
    90% {
        transform: translate3d(5px, -2px, 0);
    }
    91% {
        transform: translate3d(-3px, 2px, 0);
        box-shadow: inset 0 0 0 9999px rgba(52, 43, 43, 0.54), inset 0 0 64px rgba(14, 14, 14, 0.72), inset 0 0 96px rgba(255, 30, 30, 0.94);
    }
    92% {
        transform: translate3d(3px, -1px, 0);
    }
    93% {
        transform: translate3d(-2px, 1px, 0);
    }
    94% {
        transform: translate3d(0, 0, 0);
    }
}

#login-overlay.is-open {
    display: flex;
}

#login-dialog {
    position: relative;
    width: 100%;
    max-width: 500px;
}

#close-login {
    position: absolute;
    top: -16px;
    right: -12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 86, 86, 0.68);
    background: linear-gradient(180deg, rgba(84, 18, 18, 0.98) 0%, rgba(30, 12, 12, 0.98) 100%);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: transform 120ms ease, background-color 180ms ease;
}

#close-login:hover,
#close-login:focus-visible {
    background: linear-gradient(180deg, rgba(128, 24, 24, 0.98) 0%, rgba(47, 16, 16, 0.98) 100%);
    transform: scale(1.05);
}

.login-wrapper-overlay {
    margin: 0;
    padding: 1.7rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 92, 92, 0.45);
    background: linear-gradient(165deg, #2a2d31 0%, #191b1f 35%, #1d1012 68%, #120a0b 100%);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.74), 0 0 0 1px rgba(255, 70, 70, 0.12), 0 0 24px rgba(190, 28, 28, 0.2);
}

#login-title {
    margin: 0 0 12px;
    color: #ffe1e1;
    letter-spacing: 0.4px;
    text-shadow: 0 0 12px rgba(199, 40, 40, 0.35);
}

#login-step-indicator {
    margin-bottom: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 88, 88, 0.38);
    background: linear-gradient(180deg, rgba(116, 24, 24, 0.36) 0%, rgba(56, 18, 18, 0.32) 100%);
    color: #ffd0d0;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

#auth-mode-switch {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 8px 0 14px;
}

#auth-mode-switch label {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 94, 94, 0.34);
    background: linear-gradient(180deg, rgba(45, 46, 52, 0.65) 0%, rgba(25, 21, 24, 0.68) 100%);
    font-size: 14px;
    color: #ead5d5;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

#auth-mode-switch label:hover {
    border-color: rgba(255, 95, 95, 0.7);
    background: linear-gradient(180deg, rgba(76, 32, 36, 0.72) 0%, rgba(38, 19, 22, 0.72) 100%);
}

#auth-mode-switch input[type="radio"] {
    width: auto !important;
    height: auto;
    padding: 0;
    margin: 2px 0 0 0 !important;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    flex: 0 0 auto;
}

#auth-mode-switch .auth-mode-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
}

#auth-mode-switch input[type="radio"]:checked + .auth-mode-text {
    color: #ffe6e6;
    font-weight: 700;
}

#auth-mode-switch label:has(input[type="radio"]:checked) {
    border-color: rgba(255, 84, 84, 0.88);
    background: linear-gradient(180deg, rgba(111, 30, 34, 0.78) 0%, rgba(59, 22, 25, 0.78) 100%);
    box-shadow: 0 0 0 2px rgba(255, 86, 86, 0.24), 0 0 16px rgba(220, 48, 48, 0.16);
}

#auth-inline-form {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

#auth-inline-form label {
    margin-bottom: 0;
    color: #f8e7e7;
    font-weight: 500;
}

#auth-inline-form input[type="text"],
#auth-inline-form input[type="email"],
#auth-inline-form input[type="password"] {
    margin: 0;
    padding: 0.78rem;
    border: 1px solid rgba(255, 92, 92, 0.42);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(16, 16, 18, 0.94) 0%, rgba(22, 12, 14, 0.94) 100%);
    color: #ffeaea;
}

#auth-inline-form input[type="text"]:focus,
#auth-inline-form input[type="email"]:focus,
#auth-inline-form input[type="password"]:focus {
    border-color: rgba(255, 94, 94, 0.92);
    box-shadow: 0 0 0 3px rgba(255, 75, 75, 0.24), 0 0 14px rgba(184, 30, 30, 0.22);
    outline: none;
}

#auth-inline-form input::placeholder {
    color: rgba(255, 218, 218, 0.55);
}

#auth-submit-btn {
    margin-top: 6px;
    padding: 0.8rem;
    border-radius: 9px;
    background: linear-gradient(180deg, #e23f3f 0%, #8e2323 52%, #5d1717 100%);
    color: #fff;
    font-weight: 600;
    border: 0;
    transition: transform 120ms ease, filter 180ms ease;
}

#auth-submit-btn:hover,
#auth-submit-btn:focus-visible {
    filter: brightness(1.08) saturate(1.08);
    transform: translateY(-1px);
}

#register-only-fields {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

#auth-inline-feedback {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.04);
    color: #fceaea;
    font-size: 14px;
}

#auth-inline-feedback.feedback-success {
    background: rgba(29, 136, 65, 0.24);
    border-color: rgba(29, 136, 65, 0.44);
    color: #8effb2;
}

#auth-inline-feedback.feedback-error {
    background: rgba(224, 46, 46, 0.24);
    border-color: rgba(224, 46, 46, 0.48);
    color: #ffb9b9;
}

.auth-forgot-row {
    margin: 6px 0 0;
    text-align: center;
}

#auth-forgot-link {
    font-size: 13px;
    color: #ffb0b0;
    text-decoration: none;
    font-weight: 500;
}

#auth-forgot-link:hover,
#auth-forgot-link:focus-visible {
    text-decoration: underline;
}

@media (max-width: 560px) {
    #login-overlay {
        padding: 12px;
    }

    .login-wrapper-overlay {
        padding: 1.2rem;
    }

    #login-step-indicator {
        font-size: 12.5px;
    }
}

@media (max-width: 900px) {
#intro-card-zone {
display: block;
    margin: 10px auto 0;
    width: min(92vw, 560px);
}

#content-lock-notice {
width: 100%;
    margin-left: 0;
}
}

@keyframes sepiaButtonGlitchImpulse {
    0% {
        transform: translate3d(0, 0, 0);
        filter: saturate(1.02) brightness(1.02);
        text-shadow: 0 0 0 rgba(255, 90, 90, 0);
    }
    24% {
        transform: translate3d(-1px, 0, 0);
    }
    38% {
        transform: translate3d(1px, -1px, 0);
        text-shadow: 0 0 8px rgba(255, 104, 104, 0.45);
    }
    52% {
        transform: translate3d(-2px, 1px, 0);
    }
    66% {
        transform: translate3d(2px, -1px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
        filter: saturate(1.08) brightness(1.08);
        text-shadow: 0 0 8px rgba(255, 104, 104, 0.28);
    }
}

button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    color: #f6e8d2;
    border-color: rgba(186, 132, 89, 0.58);
    background: linear-gradient(180deg, rgba(86, 60, 45, 0.72) 0%, rgba(54, 36, 29, 0.74) 54%, rgba(36, 24, 20, 0.76) 100%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 224, 188, 0.16), 0 0 0 1px rgba(118, 36, 36, 0.24);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55), 0 0 5px rgba(255, 111, 111, 0.16);
    transition: background 170ms ease, border-color 170ms ease, box-shadow 170ms ease, transform 130ms ease, filter 160ms ease;
}

button:hover,
button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible,
input[type="button"]:hover,
input[type="button"]:focus-visible,
input[type="reset"]:hover,
input[type="reset"]:focus-visible {
    border-color: rgba(224, 150, 96, 0.78);
    background: linear-gradient(180deg, rgba(101, 66, 47, 0.76) 0%, rgba(64, 39, 29, 0.76) 56%, rgba(45, 28, 23, 0.78) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 196, 0.2), 0 0 0 1px rgba(214, 62, 62, 0.34), 0 0 14px rgba(199, 62, 62, 0.24);
    animation: sepiaButtonGlitchImpulse 230ms steps(2, end) 1;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
    transform: translateY(1px);
    filter: brightness(0.98) saturate(1.1);
}

button:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
input[type="reset"]:disabled {
    color: rgba(224, 206, 176, 0.52);
    border-color: rgba(126, 96, 73, 0.36);
    background: linear-gradient(180deg, rgba(62, 48, 42, 0.68) 0%, rgba(40, 32, 28, 0.72) 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 220, 186, 0.08);
    text-shadow: none;
    cursor: not-allowed;
}

#menu-home-btn-style a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 12px;
    color: #f6e8d2;
    border: 1px solid rgba(186, 132, 89, 0.58);
    background: linear-gradient(180deg, rgba(86, 60, 45, 0.72) 0%, rgba(54, 36, 29, 0.74) 54%, rgba(36, 24, 20, 0.76) 100%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 224, 188, 0.16), 0 0 0 1px rgba(118, 36, 36, 0.24);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55), 0 0 5px rgba(255, 111, 111, 0.16);
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: background 170ms ease, border-color 170ms ease, box-shadow 170ms ease, transform 130ms ease, filter 160ms ease, color 140ms ease;
}

#menu-home-btn-style a:hover,
#menu-home-btn-style a:focus-visible {
    color: #fff4e2;
    border-color: rgba(224, 150, 96, 0.78);
    background: linear-gradient(180deg, rgba(101, 66, 47, 0.76) 0%, rgba(64, 39, 29, 0.76) 56%, rgba(45, 28, 23, 0.78) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 196, 0.2), 0 0 0 1px rgba(214, 62, 62, 0.34), 0 0 14px rgba(199, 62, 62, 0.24);
    animation: sepiaButtonGlitchImpulse 230ms steps(2, end) 1;
}

#menu-home-btn-style a:active {
    transform: translateY(1px);
    filter: brightness(0.98) saturate(1.1);
}

#menu-home-btn-style a[href$="dead.php"].is-locked {
    color: rgba(224, 206, 176, 0.52);
    border-color: rgba(126, 96, 73, 0.36);
    background: linear-gradient(180deg, rgba(62, 48, 42, 0.68) 0%, rgba(40, 32, 28, 0.72) 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 220, 186, 0.08);
    text-shadow: none;
    opacity: 0.76;
    cursor: not-allowed;
    animation: none;
}

#menu-home-btn-style a[href$="dead.php"].is-locked:hover,
#menu-home-btn-style a[href$="dead.php"].is-locked:focus-visible {
    color: rgba(224, 206, 176, 0.52);
    border-color: rgba(126, 96, 73, 0.36);
    background: linear-gradient(180deg, rgba(62, 48, 42, 0.68) 0%, rgba(40, 32, 28, 0.72) 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 220, 186, 0.08);
    text-shadow: none;
    cursor: not-allowed;
    transform: none;
    filter: none;
    animation: none;
}

#socialmedia-bar .link-block {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 8px 0;
    border-radius: 12px;
    border: 1px solid rgba(186, 132, 89, 0.58);
    background: linear-gradient(180deg, rgba(86, 60, 45, 0.72) 0%, rgba(54, 36, 29, 0.74) 54%, rgba(36, 24, 20, 0.76) 100%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 224, 188, 0.16), 0 0 0 1px rgba(118, 36, 36, 0.24);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55), 0 0 5px rgba(255, 111, 111, 0.16);
    text-decoration: none;
    color: #f6e8d2;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 170ms ease, border-color 170ms ease, box-shadow 170ms ease, transform 130ms ease, filter 160ms ease, color 140ms ease;
}

#socialmedia-bar .link-block i {
    color: inherit;
    border: 0;
    background: transparent;
}

#socialmedia-bar .link-block:hover,
#socialmedia-bar .link-block:focus-visible {
    color: #fff4e2;
    border-color: rgba(224, 150, 96, 0.78) !important;
    background: linear-gradient(180deg, rgba(101, 66, 47, 0.76) 0%, rgba(64, 39, 29, 0.76) 56%, rgba(45, 28, 23, 0.78) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 230, 196, 0.2), 0 0 0 1px rgba(214, 62, 62, 0.34), 0 0 14px rgba(199, 62, 62, 0.24);
    animation: sepiaButtonGlitchImpulse 230ms steps(2, end) 1;
}

#socialmedia-bar .link-block:focus-visible {
    outline: 2px solid rgba(224, 150, 96, 0.58);
    outline-offset: 2px;
}

#socialmedia-bar .link-block:active {
    transform: translateY(1px);
    filter: brightness(0.98) saturate(1.1);
}

:root {
    --control-center-width: 380px;
    --control-center-gap: 16px;
}

#control-center {
    position: fixed;
    top: 104px;
    right: 24px;
    bottom: 14px;
    width: var(--control-center-width);
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(136, 190, 214, 0.42);
    background: linear-gradient(180deg, rgba(18, 27, 35, 0.88) 0%, rgba(10, 15, 22, 0.92) 100%);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(120, 180, 210, 0.18) inset, 0 0 26px rgba(67, 116, 145, 0.22);
    z-index: 3300;
    overflow: hidden;
    transition: width 220ms ease, min-width 220ms ease, padding 220ms ease, right 220ms ease, box-shadow 220ms ease;
}

#control-center,
#control-center * {
    box-sizing: border-box;
}

#control-center-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.control-center-tab {
    min-height: 34px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.control-center-tab.is-active {
    border-color: rgba(176, 226, 245, 0.82);
    box-shadow: 0 0 0 1px rgba(118, 186, 218, 0.44), 0 0 14px rgba(96, 176, 214, 0.3);
}

.control-center-head h2 {
    margin: 0;
    font-size: 18px;
    color: #dff2f8;
}

.control-center-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
}

#control-center-toggle {
    min-width: 34px;
    height: 32px;
    padding: 0;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1;
    align-self: start;
    justify-self: end;
}

.control-center-head p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #a9c9d8;
    grid-column: 1 / -1;
}

.control-center-section {
    border: 1px solid rgba(120, 170, 194, 0.36);
    border-radius: 12px;
    padding: 10px;
    background: rgba(16, 24, 31, 0.58);
    width: 100%;
    max-width: 100%;
}

.control-center-panel {
    display: none;
}

.control-center-panel.is-active {
    display: block;
}

#control-center-status,
#control-center-chat {
    border: 0;
    background: transparent;
    padding: 0;
}

#control-center-status.control-center-panel.is-active {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

#control-center-chat.control-center-panel.is-active,
#control-center-dead.control-center-panel.is-active,
#control-center-users.control-center-panel.is-active {
    overflow: auto;
}

#control-center.is-collapsed {
    width: 56px;
    min-width: 56px;
    padding: 8px;
    gap: 0;
    bottom: auto;
}

#control-center.is-collapsed .control-center-head {
    grid-template-columns: 1fr;
    justify-items: center;
}

#control-center.is-collapsed .control-center-head h2,
#control-center.is-collapsed .control-center-head p,
#control-center.is-collapsed #control-center-tabs,
#control-center.is-collapsed .control-center-panel {
    display: none;
}

#control-center.is-collapsed #control-center-toggle {
    min-width: 36px;
}

#cc-user-admin {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(120, 170, 194, 0.3);
}

#cc-dead-admin {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(120, 170, 194, 0.3);
}

#cc-user-admin h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #d6ebf3;
}

#cc-dead-admin h3 {
    margin: 0 0 8px;
    font-size: 14px;
    color: #d6ebf3;
}

.cc-dead-admin-search-label {
    display: block;
    margin: 0 0 5px;
    font-size: 12px;
    color: #b9d7e4;
}

#cc-dead-admin-search {
    width: 100%;
    margin: 0 0 8px;
    min-height: 32px;
}

#cc-user-admin-feedback {
    margin: 0 0 8px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 12px;
    color: #d7edf6;
    background: rgba(28, 46, 59, 0.38);
    border: 1px solid rgba(120, 170, 194, 0.38);
}

#cc-dead-admin-feedback {
    margin: 0 0 8px;
    padding: 7px 8px;
    border-radius: 8px;
    font-size: 12px;
    color: #d7edf6;
    background: rgba(28, 46, 59, 0.38);
    border: 1px solid rgba(120, 170, 194, 0.38);
}

#cc-user-admin-feedback.is-error {
    color: #ffd2d2;
    background: rgba(104, 26, 26, 0.4);
    border-color: rgba(184, 72, 72, 0.5);
}

#cc-dead-admin-feedback.is-error {
    color: #ffd2d2;
    background: rgba(104, 26, 26, 0.4);
    border-color: rgba(184, 72, 72, 0.5);
}

#cc-user-admin-feedback.is-success {
    color: #c8ffd7;
    background: rgba(26, 84, 49, 0.35);
    border-color: rgba(72, 174, 104, 0.5);
}

#cc-dead-admin-feedback.is-success {
    color: #c8ffd7;
    background: rgba(26, 84, 49, 0.35);
    border-color: rgba(72, 174, 104, 0.5);
}

#cc-user-admin-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

#cc-dead-admin-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.cc-user-admin-item {
    border: 1px solid rgba(120, 170, 194, 0.3);
    border-radius: 10px;
    padding: 8px;
    background: rgba(14, 22, 28, 0.58);
    display: grid;
    gap: 6px;
}

.cc-user-admin-meta {
    font-size: 12px;
    color: #c7e0eb;
    overflow-wrap: anywhere;
}

.cc-user-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cc-user-admin-actions button {
    min-height: 30px;
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 10px;
}

.cold-creepy-btn {
    border: 1px solid rgba(170, 215, 232, 0.42);
    background: linear-gradient(180deg, rgba(22, 34, 43, 0.92), rgba(10, 16, 22, 0.96));
    color: #d7eef5;
    text-shadow: 0 0 6px rgba(155, 222, 240, 0.25);
    box-shadow: inset 0 0 0 1px rgba(120, 170, 190, 0.16), 0 0 12px rgba(44, 78, 96, 0.28);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.cold-creepy-btn:hover,
.cold-creepy-btn:focus-visible {
    border-color: rgba(190, 236, 252, 0.72);
    box-shadow: inset 0 0 0 1px rgba(150, 214, 236, 0.24), 0 0 18px rgba(70, 128, 155, 0.38);
    transform: translateY(-1px);
}

#control-center-toggle {
    border: 1px solid rgba(170, 215, 232, 0.46);
    background: linear-gradient(180deg, rgba(20, 33, 43, 0.94), rgba(9, 16, 22, 0.98));
    color: #d7eef5;
    text-shadow: 0 0 6px rgba(155, 222, 240, 0.28);
    box-shadow: inset 0 0 0 1px rgba(120, 170, 190, 0.18), 0 0 14px rgba(44, 78, 96, 0.34);
}

#control-center-toggle:hover,
#control-center-toggle:focus-visible {
    border-color: rgba(196, 239, 253, 0.8);
    box-shadow: inset 0 0 0 1px rgba(160, 220, 242, 0.3), 0 0 20px rgba(75, 134, 162, 0.46);
}

#control-center #presence-panel {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    top: auto;
    width: 100%;
    max-height: none;
    max-width: 100%;
    margin: 0;
    border-radius: 10px;
    border-color: rgba(120, 170, 194, 0.26);
    box-shadow: none;
    z-index: auto;
    display: grid;
    grid-template-rows: auto auto 1fr;
    min-height: 0;
    height: 100%;
    overflow: hidden;
}

#control-center #presence-list {
    min-height: 0;
    overflow-y: auto;
    padding-right: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(122, 169, 189, 0.42) rgba(12, 19, 26, 0.24);
}

#control-center #presence-list::-webkit-scrollbar {
    width: 8px;
}

#control-center #presence-list::-webkit-scrollbar-track {
    background: rgba(12, 19, 26, 0.24);
    border-radius: 10px;
}

#control-center #presence-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(136, 188, 210, 0.5), rgba(86, 132, 154, 0.46));
    border: 1px solid rgba(170, 216, 233, 0.18);
    border-radius: 10px;
}

#control-center #presence-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(164, 214, 232, 0.58), rgba(104, 156, 180, 0.54));
}

#control-center #member-chat-platform {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    max-height: none;
    z-index: auto;
    margin: 0;
}

#control-center .member-chat-head-controls {
    flex-wrap: wrap;
}

#control-center #member-chat-target {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
}

#control-center #member-chat-messages {
    max-height: 30vh;
}

#control-center,
#control-center p,
#control-center li,
#control-center label,
#control-center span,
#control-center small,
#control-center strong,
#control-center h3,
#control-center h4,
#presence-panel,
#presence-panel p,
#presence-panel li,
#presence-panel label,
#presence-panel span,
#member-chat-platform,
#member-chat-platform p,
#member-chat-platform li,
#member-chat-platform label,
#member-chat-platform span,
#member-chat-platform small,
#member-chat-platform strong {
    color: #d7edf6;
}

#control-center .control-center-head p,
#member-chat-meta,
#presence-empty,
#presence-filter {
    color: #b8d3df;
}

#control-center a,
#presence-panel a,
#member-chat-platform a {
    color: #dff4fb;
}

#control-center a:hover,
#control-center a:focus-visible,
#presence-panel a:hover,
#presence-panel a:focus-visible,
#member-chat-platform a:hover,
#member-chat-platform a:focus-visible {
    color: #f1fbff;
}

#main-content {
    padding-right: 0;
}

#socialmedia-bar {
    right: calc(var(--control-center-width) + 18px);
    transition: right 220ms ease;
}

body.control-center-collapsed #main-content {
    padding-right: 0;
}

body.control-center-collapsed #socialmedia-bar {
    right: 74px;
}

body:not(.control-center-collapsed) #open-chatbot {
    right: calc(var(--control-center-width) + 40px);
}

body:not(.control-center-collapsed) #chatbot-container {
    right: calc(var(--control-center-width) + 50px);
}

body.control-center-collapsed #open-chatbot {
    right: 74px;
}

body.control-center-collapsed #chatbot-container {
    right: 86px;
}

@media (max-width: 1220px) {
    #control-center {
        position: static;
        width: auto;
        margin: 100px 12px 12px;
        max-height: none;
    }

    #main-content {
        padding-right: 0;
    }

    body.control-center-collapsed #main-content {
        padding-right: 0;
    }

    #socialmedia-bar {
        right: 10px;
    }

    #open-chatbot {
        right: 10px;
    }

    #chatbot-container {
        right: 20px;
    }

    #control-center #member-chat-messages {
        max-height: 38vh;
    }
}

:is(
    button,
    input[type="submit"],
    input[type="button"],
    .control-center-tab,
    #control-center-toggle,
    #member-chat-send,
    #member-chat-jump,
    #auth-submit-btn,
    #open-chatbot,
    #send-chatbot,
    #chatbot-header button,
    #menu-home-burgerbutton,
    #menu-home-btn-style a,
    .fa-btn-style button,
    .fa-btn-style a
) {
    border: 1px solid rgba(170, 215, 232, 0.46) !important;
    background: linear-gradient(180deg, rgba(20, 33, 43, 0.94), rgba(9, 16, 22, 0.98)) !important;
    color: #d7eef5 !important;
    text-shadow: 0 0 6px rgba(155, 222, 240, 0.28) !important;
    box-shadow: inset 0 0 0 1px rgba(120, 170, 190, 0.18), 0 0 14px rgba(44, 78, 96, 0.34) !important;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease !important;
}

:is(
    button,
    input[type="submit"],
    input[type="button"],
    .control-center-tab,
    #control-center-toggle,
    #open-chatbot,
    #send-chatbot,
    #chatbot-header button,
    #menu-home-burgerbutton,
    #menu-home-btn-style a,
    .fa-btn-style button,
    .fa-btn-style a
):is(:hover, :focus-visible, :active) {
    border-color: rgba(196, 239, 253, 0.8) !important;
    box-shadow: inset 0 0 0 1px rgba(160, 220, 242, 0.3), 0 0 20px rgba(75, 134, 162, 0.46) !important;
    transform: translateY(-1px) !important;
}

body,
#main-content,
#socialmedia-bar,
#chatbot-container,
#auth-overlay,
#auth-overlay-content {
    color: #d7edf6;
}

:is(
    #main-content,
    #socialmedia-bar,
    #chatbot-container,
    #auth-overlay,
    #auth-overlay-content
) :is(
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    li,
    dt,
    dd,
    label,
    span,
    small,
    strong,
    em,
    blockquote,
    figcaption,
    td,
    th,
    legend
) {
    color: #d7edf6;
}

:is(
    #main-content,
    #socialmedia-bar,
    #chatbot-container,
    #auth-overlay,
    #auth-overlay-content
) :is(.muted, .subtle, .meta, .hint) {
    color: #b8d3df;
}

:is(
    #main-content,
    #socialmedia-bar,
    #chatbot-container,
    #auth-overlay,
    #auth-overlay-content
) a {
    color: #dff4fb;
}

:is(
    #main-content,
    #socialmedia-bar,
    #chatbot-container,
    #auth-overlay,
    #auth-overlay-content
) a:hover,
:is(
    #main-content,
    #socialmedia-bar,
    #chatbot-container,
    #auth-overlay,
    #auth-overlay-content
) a:focus-visible {
    color: #f1fbff;
}

input::placeholder,
textarea::placeholder {
    color: #a8c5d2;
}

:is(.cont-01, .cont-02, .cont-03, .cont-04, .cont-05, .cont-06) {
    color: #d7edf6 !important;
}

:is(.cont-01, .cont-02, .cont-03, .cont-04, .cont-05, .cont-06)
    :is(h1, h2, h3, h4, h5, h6, p, div, span, li, strong, em, small, label, a, i, .text-black, .video-title) {
    color: #d7edf6 !important;
}

:is(#co-in-02, #co-in-03, #co-in-04) {
    color: #d7edf6 !important;
}

:is(#co-in-02 a i, #co-in-03 a i, #co-in-04 a i) {
    color: #dff4fb !important;
}

#spa-dead-view {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    overflow: auto;
    background: linear-gradient(180deg, rgba(7, 12, 18, 0.98) 0%, rgba(10, 16, 24, 0.99) 100%);
}

#spa-dead-view.is-open {
    display: block;
}

body.spa-dead-open {
    overflow: hidden;
}

:is(.cont-01, .cont-02, .cont-03, .cont-04) {
    margin: 0;
    padding-top: 90px !important;
    padding-bottom: 140px !important;
}

:is(.cont-05, .cont-06) {
    margin: 0;
    padding-top: 78px !important;
    padding-bottom: 96px !important;
}

:is(.content-divider, .content-divider_1, .content-divider_2) {
    display: block;
    margin: -90px auto 10px auto;
}

@media (max-width: 900px) {
    :is(.cont-01, .cont-02, .cont-03, .cont-04) {
        padding-top: 70px !important;
        padding-bottom: 100px !important;
    }

    :is(.cont-05, .cont-06) {
        padding-top: 58px !important;
        padding-bottom: 74px !important;
    }

    :is(.content-divider, .content-divider_1, .content-divider_2) {
        margin: -40px auto 8px auto;
    }
}

:is(#co-in-02, #co-in-03, #co-in-04) {
    width: min(760px, 74vw) !important;
    max-width: 100%;
    height: 200px !important;
    padding-bottom: 10px !important;
}

:is(#co-in-02, #co-in-03, #co-in-04) .text-black {
    max-height: none;
    overflow: visible;
    line-height: 1.18;
}

@media (max-width: 900px) {
    :is(#co-in-02, #co-in-03, #co-in-04) {
        width: 100% !important;
    }
}

