/* --- INTERAKTIVES KNEIPENSPIEL STYLING --- */
.kneipenspiel-box {
    background-color: #121212 !important;
    border: 2px solid var(--accent-gold) !important;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}
.kneipenspiel-box h3 {
    color: var(--accent-gold) !important;
    margin-top: 0;
}
.bierglas-container {
    max-width: 250px;
    margin: 20px auto;
    position: relative;
}
/* Versteckt die technischen Radio-Buttons */
.bierglas-container input[type="radio"] {
    display: none !important;
}
/* Das Glas zeichnen */
.glas-koerper {
    width: 100px;
    height: 160px;
    border: 5px solid #ffffff;
    border-top: none;
    border-radius: 0 0 15px 15px;
    margin: 0 auto 20px auto;
    position: relative;
    background: rgba(255,255,255,0.05);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
/* Das flüssige Gold */
.bier-inhalt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #a67c1e, #d4af37);
    height: 0%;
    transition: height 0.4s ease-out;
}
/* Die cremige Schaumkrone */
.schaum-krone {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.4s ease-out;
}

/* Die Zapf-Buttons */
.btn-zapfen {
    display: none;
    background: var(--accent-gold) !important;
    color: #000000 !important;
    font-weight: bold !important;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 0 #a67c1e;
    transition: transform 0.1s;
}
.btn-zapfen:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 #a67c1e;
}

/* --- DIE REINE CSS-KLICK-LOGIK --- */
/* Schritt 0: Glas leer */
#schluck0:checked ~ .zapf-steuerung .btn-1 { display: inline-block; }

/* Schritt 1: Viertel voll */
#schluck1:checked ~ .glas-koerper .bier-inhalt { height: 30%; }
#schluck1:checked ~ .zapf-steuerung .btn-2 { display: inline-block; }

/* Schritt 2: Halb voll */
#schluck2:checked ~ .glas-koerper .bier-inhalt { height: 60%; }
#schluck2:checked ~ .zapf-steuerung .btn-3 { display: inline-block; }

/* Schritt 3: Rand voll */
#schluck3:checked ~ .glas-koerper .bier-inhalt { height: 85%; }
#schluck3:checked ~ .zapf-steuerung .btn-4 { display: inline-block; }

/* Schritt 4: Fertig gezapft mit Schaum! */
#schluck4:checked ~ .glas-koerper .bier-inhalt { height: 85%; }
#schluck4:checked ~ .glas-koerper .schaum-krone { opacity: 1; transform: translateY(-135px); }
#schluck4:checked ~ .zapf-steuerung .btn-reset { display: inline-block; background: #5cb85c !important; color: #ffffff !important; box-shadow: 0 4px 0 #4cae4c; }
#schluck4:checked ~ .erfolgs-text { display: block; animation: seitenEinflug 0.5s both; }

/* Text standardmäßig verstecken */
.erfolgs-text {
    display: none;
    color: #ffffff;
    font-weight: bold;
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.4;
}
/* --- FINALE LOGO-GRÖSSE FÜR ECHTE SMARTPHONES --- */
@media (max-width: 991px) {
    .logo-main {
        font-size: 42px !important; /* Macht den Namen "IM STRESS" auf dem Handy richtig groß, fett und lesbar */
        letter-spacing: 0px !important;
        line-height: 1.1 !important;
    }
    .logo-sub {
        font-size: 16px !important; /* Macht die Unterzeile auf dem Handy perfekt lesbar */
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
    }
}
