#tbg-launcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    background: #000;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 10px 15px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    transition: transform 0.2s, background 0.2s;
    text-transform: uppercase;
}

#tbg-launcher:hover {
    transform: scale(1.05);
    background: #111;
}

#tbg-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

#tbg-overlay.active {
    display: flex;
}

#tbg-canvas {
    border: 4px solid #d4af37;
    background: #000;
    max-height: 80vh;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

#tbg-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #d4af37;
    cursor: pointer;
    background: none;
    border: none;
}

#tbg-score {
    font-size: 24px;
    margin-bottom: 10px;
    color: #d4af37;
}

#tbg-controls-hint {
    margin-top: 10px;
    font-size: 14px;
    color: #888;
}

#tbg-game-over {
    display: none;
    position: absolute;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border: 2px solid #d4af37;
    text-align: center;
}

#tbg-game-over.active {
    display: block;
}

#tbg-restart-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    cursor: pointer;
    font-weight: bold;
}
