/* EINSETZBAR DOMINANZ-STYLE */
.master-header {
    background: linear-gradient(to bottom, #ffd700, #ff8c00); /* Gold für die Meister */
    color: black;
    font-size: 50px;
    border-bottom: 20px solid #000;
    padding: 30px;
    text-shadow: 3px 3px 0px white;
}

.shittalk-banner {
    background: red;
    color: white;
    font-weight: bold;
    transform: rotate(-3deg);
    font-size: 30px;
    border: 10px double white;
    margin: 40px 0;
}

.mealmatrix-fail {
    text-decoration: line-through;
    opacity: 0.3;
    filter: blur(2px);
}

.einsetzbar-win {
    background: #00ff00;
    color: black;
    font-size: 40px;
    border: 5px solid gold;
    padding: 20px;
    animation: pulse 0.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}