        :root {
            --glass-bg: rgba(15, 15, 15, 0.75);
            --glass-border: rgba(255, 255, 255, 0.12);
            --accent-color: #ff9f43;
            --accent-glow: rgba(255, 159, 67, 0.4);
            --danger-color: #ff6b6b;
            --success-color: #51cf66;
            --die-bg: #ffffff;
            --cup-color: #2d3436;
        }

```
    * { 
        box-sizing: border-box; 
        margin: 0; 
        padding: 0; 
        font-family: 'Inter', sans-serif; 
        -webkit-tap-highlight-color: transparent; 
        user-select: none; 
    }

    body {
        background: url('hintergrund.jpg') no-repeat center center fixed;
        background-size: cover;
        min-height: 100vh;
        display: flex; 
        justify-content: center; 
        align-items: center;
        color: white; 
        overflow-x: hidden;
        background-color: #111;
        padding: 20px 0;
    }

    .help-btn {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        background: rgba(255, 255, 255, 0.95);
        color: #000;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 800;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transition: transform 0.2s;
        border: 2px solid rgba(255,255,255,0.1);
    }
    .help-btn:active { transform: scale(0.9); }

    .overview-btn {
        position: fixed;
        top: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
        background: rgba(255, 159, 67, 0.95);
        color: #fff;
        border-radius: 50%;
        display: none;
        justify-content: center;
        align-items: center;
        font-weight: 800;
        font-size: 1.3rem;
        cursor: pointer;
        z-index: 100;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        transition: transform 0.2s;
        border: 2px solid rgba(255,159,67,0.3);
    }
    .overview-btn:active { transform: scale(0.9); }
    .overview-btn.show { display: flex; }

    .app-container {
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid var(--glass-border);
        border-radius: 35px;
        padding: 2.5rem 1.8rem;
        width: 92%;
        max-width: 400px;
        box-shadow: 0 25px 50px rgba(0,0,0,0.7), inset 0 0 20px rgba(255,255,255,0.05);
        position: relative;
        z-index: 10;
    }

    .start-screen { text-align: center; }
    .start-screen h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 2rem; letter-spacing: -1px; }
    
    .input-group { margin-bottom: 1.2rem; }
    .input-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; opacity: 0.7; }
    input[type="text"] {
        width: 100%;
        padding: 1rem;
        border-radius: 18px;
        border: 1px solid var(--glass-border);
        background: rgba(0,0,0,0.5);
        color: white;
        font-size: 1rem;
        text-align: center;
        outline: none;
        transition: all 0.3s;
        box-sizing: border-box;
    }
    input[type="text"]:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 15px var(--accent-glow);
    }
    input[type="text"]::placeholder {
        color: rgba(255,255,255,0.4);
    }

    button {
        background: var(--accent-color);
        border: none;
        padding: 1.1rem;
        border-radius: 18px;
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        width: 100%;
        transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    button:active { transform: scale(0.97); opacity: 0.9; }
    button:disabled { opacity: 0.3; cursor: not-allowed; }
    .btn-secondary { 
        background: rgba(255, 255, 255, 0.12); 
        box-shadow: none; 
        border: 1px solid var(--glass-border);
    }
    .btn-danger { 
        background: rgba(255, 107, 107, 0.1); 
        color: var(--danger-color); 
        border: 1px solid rgba(255, 107, 107, 0.2); 
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    .btn-success {
        background: rgba(81, 207, 102, 0.2);
        color: var(--success-color);
        border: 1px solid rgba(81, 207, 102, 0.3);
    }

    .mode-selection {
        display: flex;
        gap: 12px;
        margin-bottom: 1.5rem;
    }
    .mode-btn {
        flex: 1;
        padding: 1rem;
        border-radius: 18px;
        border: 2px solid var(--glass-border);
        background: rgba(0,0,0,0.3);
        cursor: pointer;
        transition: all 0.3s;
    }
    .mode-btn.active {
        border-color: var(--accent-color);
        background: rgba(255, 159, 67, 0.1);
    }

    .dice-container { display: flex; justify-content: center; gap: 12px; margin: 1.5rem 0; }
    .die {
        width: 90px; height: 90px;
        background: var(--die-bg);
        border-radius: 22px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        padding: 12px;
        position: relative;
        cursor: pointer;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }

    .cup-overlay {
        position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: var(--cup-color); border-radius: 22px;
        display: flex; justify-content: center; align-items: center;
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
        z-index: 5;
        box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    }
    .cup-overlay svg { width: 45px; height: 45px; fill: rgba(255,255,255,0.2); }

    .die.revealed .cup-overlay { transform: translateY(-110px) rotate(-10deg); opacity: 0; pointer-events: none; }
    .die.locked { transform: translateY(18px); opacity: 0.5; filter: grayscale(0.3); box-shadow: 0 0 0 4px var(--accent-color); }

    .dot { width: 14px; height: 14px; border-radius: 50%; background-color: #2d3436; justify-self: center; align-self: center; }
    .die[data-value="1"] .dot { background-color: #d63031; width: 20px; height: 20px; }

    .shaking { animation: shake 0.3s infinite; }
    @keyframes shake { 0% { transform: rotate(0); } 25% { transform: rotate(6deg); } 75% { transform: rotate(-6deg); } }

    .stats-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; padding-top: 0.5rem; }
    
    .game-status {
        background: rgba(0,0,0,0.4);
        border-radius: 18px;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid var(--glass-border);
        text-align: center;
    }
    .game-status h3 { font-size: 0.85rem; opacity: 0.6; margin-bottom: 0.3rem; }
    .game-status .value { font-size: 1.3rem; font-weight: 800; color: var(--accent-color); }

    .players-list {
        background: rgba(0,0,0,0.4);
        border-radius: 18px;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid var(--glass-border);
    }
    .player-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        margin-bottom: 0.5rem;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
    }
    .player-item.current { border: 2px solid var(--accent-color); }
    .player-item.eliminated { opacity: 0.4; }
    .player-name { font-weight: 600; }
    .player-chips { 
        display: flex; 
        gap: 8px; 
        align-items: center;
        font-size: 1.2rem;
        font-weight: 800;
    }

    .penalty-area { 
        background: rgba(0,0,0,0.4); 
        border-radius: 22px; 
        padding: 1rem 1.2rem; 
        display: flex; 
        align-items: center; 
        justify-content: space-between;
        border: 1px solid var(--glass-border);
    }
    .chip-display { font-size: 2.2rem; font-weight: 800; display: flex; align-items: center; gap: 8px; }

    .modal {
        display: none; 
        position: fixed; 
        top: 0; left: 0; 
        width: 100vw; height: 100vh;
        background: rgba(0,0,0,0.9); 
        backdrop-filter: blur(15px);
        z-index: 9999;
        align-items: center; 
        justify-content: center;
        overflow-y: auto;
    }
    .modal-content {
        background: #1a1a1a;
        padding: 2rem;
        border-radius: 30px;
        width: 85%;
        max-width: 350px;
        border: 1px solid #333;
        margin: 20px;
    }
    .modal-content h2 { color: var(--accent-color); margin-bottom: 1.2rem; font-size: 1.4rem; text-align: center;}
    .modal-content ol { color: #ccc; padding-left: 1.2rem; font-size: 0.95rem; }
    .modal-content li { margin-bottom: 0.8rem; padding-bottom: 0.4rem; border-bottom: 1px solid #222; }

    .chips-overview {
        background: rgba(0,0,0,0.4);
        border-radius: 18px;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid var(--glass-border);
    }
    .chips-overview h3 {
        font-size: 0.85rem;
        opacity: 0.6;
        margin-bottom: 0.8rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .chip-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.7rem;
        margin-bottom: 0.5rem;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
    }
    .chip-row.pool {
        background: rgba(81,207,102,0.1);
        border: 1px solid rgba(81,207,102,0.2);
    }
    .chip-row.lost-half {
        background: rgba(255,107,107,0.1);
        border: 1px solid rgba(255,107,107,0.2);
        opacity: 0.7;
    }
    .chip-count {
        font-weight: 800;
        font-size: 1.3rem;
        color: var(--accent-color);
    }

    .notification {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0,0,0,0.95);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: 18px;
        z-index: 10000;
        display: none;
        border: 1px solid var(--glass-border);
    }
    .notification.show { display: block; animation: slideDown 0.3s; }
    @keyframes slideDown { from { opacity: 0; transform: translateX(-50%) translateY(-20px); } }

    .turn-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
        z-index: 10001;
        display: none;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.3s;
    }
    .turn-overlay.show { display: flex; }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    
    .turn-content {
        text-align: center;
        padding: 3rem;
        background: rgba(255,159,67,0.1);
        border: 2px solid var(--accent-color);
        border-radius: 30px;
        animation: scaleIn 0.3s;
    }
    @keyframes scaleIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    
    .turn-content h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--accent-color);
        margin-bottom: 0.5rem;
    }
    .turn-content p {
        font-size: 1.2rem;
        opacity: 0.8;
    }

    .round-result-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(15px);
        z-index: 10002;
        display: none;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
    }
    .round-result-overlay.show { display: flex; }
    
    .round-result-content {
        max-width: 500px;
        width: 90%;
        background: var(--glass-bg);
        border: 2px solid var(--glass-border);
        border-radius: 30px;
        padding: 2rem;
        animation: scaleIn 0.4s;
    }
    
    .round-result-content h2 {
        text-align: center;
        color: var(--accent-color);
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .result-item {
        background: rgba(0,0,0,0.4);
        border-radius: 15px;
        padding: 1rem;
        margin-bottom: 0.8rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .result-item.loser {
        background: rgba(255,107,107,0.15);
        border: 2px solid var(--danger-color);
    }
    
    .result-dice {
        display: flex;
        gap: 0.5rem;
    }
    
    .result-die {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.9);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        color: #000;
        font-size: 1.2rem;
    }
    
    .chips-info {
        background: rgba(255,159,67,0.2);
        border: 1px solid var(--accent-color);
        border-radius: 15px;
        padding: 1.2rem;
        margin: 1.5rem 0;
        text-align: center;
    }
    
    .chips-info h3 {
        color: var(--accent-color);
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .session-list {
        background: rgba(0,0,0,0.4);
        border-radius: 18px;
        padding: 1rem;
        margin-bottom: 1rem;
        border: 1px solid var(--glass-border);
        max-height: 200px;
        overflow-y: auto;
    }
    .session-list h3 {
        font-size: 0.85rem;
        opacity: 0.6;
        margin-bottom: 0.8rem;
        text-align: center;
    }
    .session-item {
        background: rgba(255,255,255,0.05);
        padding: 0.8rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .session-item:hover {
        background: rgba(255,159,67,0.2);
        border: 1px solid var(--accent-color);
    }
    .session-item:active {
        transform: scale(0.98);
    }
    .session-info {
        flex: 1;
    }
    .session-name {
        font-weight: 600;
        margin-bottom: 0.2rem;
    }
    .session-meta {
        font-size: 0.75rem;
        opacity: 0.6;
    }

    .lobby-screen {
        text-align: center;
    }
    .lobby-players {
        background: rgba(0,0,0,0.4);
        border-radius: 18px;
        padding: 1rem;
        margin: 1.5rem 0;
        border: 1px solid var(--glass-border);
    }
    .lobby-player {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        margin-bottom: 0.5rem;
        background: rgba(255,255,255,0.05);
        border-radius: 12px;
    }
    .lobby-player.ready {
        background: rgba(81,207,102,0.2);
        border: 1px solid var(--success-color);
    }
    .lobby-player.me {
        border: 2px solid var(--accent-color);
    }
    .ready-indicator {
        font-size: 1.2rem;
    }
    .divider {
        text-align: center;
        margin: 1rem 0;
        position: relative;
    }
    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: var(--glass-border);
    }
    .divider span {
        background: var(--glass-bg);
        padding: 0 1rem;
        position: relative;
        font-size: 0.85rem;
        opacity: 0.6;
    }