.tbg-game-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.tbg-boxes {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.tbg-box {
    width: 100px;
    height: 100px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.tbg-box:hover {
    transform: translateY(-10px);
}

.tbg-box-lid {
    font-size: 50px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd700;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.tbg-result {
    min-height: 30px;
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
}

.tbg-result.info {
    color: #0056b3;
    background-color: #e7f1ff;
    border: 1px solid #b8d4ff;
}