* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #1b5e20;
    margin: 0;
    padding: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.mesa {
    background: #2e7d32;
    border-radius: 20px;
    padding: 20px;
    width: 95%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
}

.titulo {
    font-size: 22px;
    margin-bottom: 10px;
}

.info {
    margin: 10px 0;
    font-weight: bold;
}

.cartas {
    margin-top: 15px;
}

.carta {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    width: 70px;
    height: 100px;
    margin: 5px;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .4);
}

.carta:hover {
    transform: scale(1.05);
}

.mesa-cartas {
    background: rgba(0, 0, 0, .2);
    padding: 15px;
    border-radius: 10px;
    min-height: 60px;
    margin: 10px 0;
}

.truco {
    background: #c62828;
    border: none;
    color: #fff;
    padding: 12px;
    width: 100%;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
}

.truco:hover {
    background: #b71c1c;
}