:root {
    --poker-green: radial-gradient(circle, #2e7d32 0%, #1b5e20 100%);
    --gold: #d4af37;
}

body { background: #000; margin: 0; font-family: sans-serif; overflow: hidden; color: white; }

/* LOBBY */
#lobby { display: flex; flex-direction: column; align-items: center; padding: 40px 20px; height: 100vh; }
.user-info-bar { background: #222; padding: 10px 20px; border-radius: 20px; margin: 20px 0; border: 1px solid #444; }
.table-list { width: 100%; max-width: 400px; }
.table-item { background: #111; margin-bottom: 15px; padding: 20px; border-radius: 15px; border: 1px solid var(--gold); display: flex; justify-content: space-between; align-items: center; }
.table-item button { background: var(--gold); border: none; padding: 10px 20px; border-radius: 10px; font-weight: bold; }

/* MESA */
#game-screen { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }
#poker-table {
    width: 90vw; height: 45vh; background: var(--poker-green);
    border: 10px solid #3e2723; border-radius: 150px;
    position: relative; box-shadow: inset 0 0 50px #000;
}

.community-container { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; gap: 5px; }

.cards-container { display: flex; gap: 5px; }
.card { 
    width: 35px; height: 52px; background: white; border-radius: 4px; color: black; 
    display: flex; flex-direction: column; align-items: center; justify-content: center; 
    font-weight: bold; font-size: 14px; box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.card.red { color: red; }
.card.shadow { background: #2c3e50; color: #2c3e50; border: 1px solid white; }

.player-slot { position: absolute; display: flex; flex-direction: column; align-items: center; width: 100px; }
.pos-bottom { bottom: -60px; left: 50%; transform: translateX(-50%); }
.pos-top    { top: -60px; left: 50%; transform: translateX(-50%); }

.name-tag { background: rgba(0,0,0,0.8); font-size: 12px; padding: 3px 10px; border-radius: 10px; margin: 5px 0; border: 1px solid var(--gold); }
.chips-label { background: var(--gold); color: black; font-weight: bold; padding: 2px 12px; border-radius: 10px; }
#main-pot { position: absolute; top: 25%; left: 50%; transform: translateX(-50%); color: var(--gold); font-weight: bold; }

.btn-back { position: absolute; top: 20px; left: 20px; background: #333; color: white; border: none; padding: 8px; border-radius: 5px; }
.btn-play { margin-top: 80px; background: #28a745; color: white; border: none; padding: 15px 40px; border-radius: 30px; font-weight: bold; font-size: 18px; }
