.tp-player {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: background-color 0.3s;
}

.tp-player:hover {
    background-color: #e9e9e9;
}

.tp-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tp-row {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.tp-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.tp-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 5px;
}

.tp-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.tp-modal-close:hover,
.tp-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.tp-whatsapp-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #25D366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.tp-whatsapp-button:hover {
    background-color: #128C7E;
}