/* Custom Styles für das Gaming Interface */

.card-gaming {
    display: none;
    background-color: rgba(24, 24, 27, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(63, 63, 70, 0.4);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

/* Sichtbarer Screen */
.card-gaming.active-screen {
    display: block;
    animation: screenEnter 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.brand-badge {
    background: rgba(124, 58, 237, 0.1);
    color: #a78bfa;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    padding: 6px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.1);
}

/* Violette Buttons */
.btn-neon-violet {
    width: 100%;
    background-color: #7c3aed;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px;
    border-radius: 14px;
    transition: all 0.2s ease;
}
.btn-neon-violet:hover {
    background-color: #6d28d9;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.4);
    transform: translateY(-1px);
}
.btn-neon-violet:active { transform: translateY(1px); }

/* Pinke Buttons */
.btn-neon-pink {
    width: 100%;
    background-color: #db2777;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px;
    border-radius: 14px;
    transition: all 0.2s ease;
}
.btn-neon-pink:hover {
    background-color: #be185d;
    box-shadow: 0 0 25px rgba(219, 39, 119, 0.4);
    transform: translateY(-1px);
}
.btn-neon-pink:active { transform: translateY(1px); }

/* Quiz Antworten Buttons */
.option-btn-gaming {
    width: 100%;
    text-align: left;
    background-color: rgba(39, 39, 42, 0.4);
    color: #e4e4e7;
    border: 1px solid #27272a;
    padding: 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.15s ease;
}
.option-btn-gaming:hover:not(:disabled) {
    background-color: rgba(63, 63, 70, 0.5);
    border-color: #52525b;
    color: #ffffff;
    padding-left: 20px;
}
.option-btn-gaming:disabled { opacity: 0.6; cursor: not-allowed; }

/* Likert Buttons */
.likert-gaming {
    background-color: #18181b;
    border: 1px solid #27272a;
    color: #a1a1aa;
    padding: 12px 6px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    transition: all 0.15s ease;
}
.likert-gaming:hover {
    background-color: #27272a;
    color: #f4f4f5;
}
.likert-gaming.selected {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

@keyframes screenEnter {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}