body {
    background-color: #94c2cd !important; /* Dein dunkles Blau aus dem Chat-Design */
    color: #94c2cd; /* Weißer Text, damit man auf dem dunklen Blau alles perfekt lesen kann */
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Oder deine genutzte Schriftart */
}

/* Identisch zum Hauptsystem-Look */
.player-card {
    max-width: 400px;
    height: 840px;

    padding: 30px;
    border-left: 8px solid #0d3747;
    
    /* Glassy Look */
    background: rgba(255, 255, 255, 0.12);      /* leicht transparentes Weiß */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);         /* Safari-Support */
    border-left: 8px solid rgba(13, 55, 71, 0.8); /* dein Blau, leicht transparent */
    border: 1px solid rgba(255, 255, 255, 0.2);   /* zarter Rand für Tiefe */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);   /* weicher Schatten für "Schweben"-Effekt */                         /* optional, wirkt bei Glass meist runder */
}
.banner-container {
    line-height: 0;
    border-bottom: 6px solid rgba(13, 55, 71, 0.8);
}

.banner-container .banner-image {
    width: 100%;
    display: block;
}

.card-content {
    padding: 30px;
    color: #ffffff;
}

.card-content h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-content label {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin: 18px 0 6px 0;
}

.card-content label:first-of-type {
    margin-top: 0;
}

.login-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.95rem;
    border-radius: 0 10px 0 10px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

textarea.login-input {
    resize: vertical;
    min-height: 140px;
    font-family: 'Roboto Mono', monospace;
    line-height: 1.5;
}

select.login-input {
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" opacity="0.6"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 40px;
}

select.login-input option {
    background: #0d3747;
    color: #ffffff;
}

.player-btn {
    margin-top: 24px;
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 14px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 0 12px 0 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 0 rgba(13, 55, 71, 0.6);
    transition: color 0.3s ease, background 0.3s ease, letter-spacing 0.3s ease, transform 0.15s ease;
}

.player-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.player-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    letter-spacing: 1px;
}

.player-btn:hover::before {
    left: 125%;
}

.player-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 rgba(13, 55, 71, 0.6);
}

.support-flash {
    padding: 12px 16px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-radius: 0 8px 0 8px;
    backdrop-filter: blur(8px);
}

.support-flash-success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}

.support-flash-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

@media screen and (max-width: 600px) {
    .player-card {
        margin: 20px 16px;
    }
    .card-content {
        padding: 20px;
    }
}