.review-preview {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
    align-items: stretch;
}

.review-list {
    display: grid;
    gap: 10px;
}

.review-hand {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px;
}

.review-hand.active {
    border-color: rgba(0, 200, 83, 0.55);
    background: rgba(0, 200, 83, 0.06);
}

.review-hand strong {
    display: block;
    font-size: 15px;
}

.review-hand span {
    color: var(--text-muted);
    font-size: 12px;
}

.review-tag {
    border: 1px solid rgba(0, 200, 83, 0.35);
    border-radius: 100px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 9px;
    white-space: nowrap;
}

.table-preview {
    background: linear-gradient(180deg, #121417 0%, #09090b 100%);
    border: 1px solid rgba(0, 200, 83, 0.22);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.table-felt {
    position: relative;
    min-height: 300px;
    border: 10px solid #342416;
    border-radius: 999px;
    background:
        radial-gradient(circle at 50% 48%, rgba(42, 229, 132, 0.34), rgba(0, 132, 67, 0.12) 36%, transparent 62%),
        repeating-radial-gradient(ellipse at center, rgba(255,255,255,0.035) 0 1px, transparent 1px 11px),
        linear-gradient(135deg, #0f7a43 0%, #075531 46%, #04371f 100%);
    display: grid;
    place-items: center;
    padding: 32px 54px;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 2px rgba(255, 255, 255, 0.08),
        inset 0 22px 70px rgba(255, 255, 255, 0.08),
        inset 0 -30px 80px rgba(0, 0, 0, 0.32),
        0 20px 36px rgba(0, 0, 0, 0.35);
}

.table-rail {
    position: absolute;
    inset: 10px;
    border: 2px solid rgba(235, 255, 243, 0.15);
    border-radius: inherit;
    pointer-events: none;
}

.table-center {
    position: relative;
    z-index: 1;
    text-align: center;
}

.seat {
    position: absolute;
    min-width: 48px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    background: rgba(6, 16, 12, 0.78);
    color: rgba(250, 250, 250, 0.82);
    padding: 7px 11px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.seat-top {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
}

.seat-left {
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
}

.seat-right {
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

.board-row,
.hero-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 12px 0;
}

.card-face {
    width: 48px;
    height: 66px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(150deg, rgba(255,255,255,0.95), rgba(226,232,240,0.96)),
        #f8fafc;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 14px 24px rgba(0,0,0,0.32);
}

.card-face.red { color: #dc2626; }

.hero-label {
    color: rgba(250, 250, 250, 0.78);
    font-size: 12px;
    font-weight: 700;
}

.pot-stack {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(250, 250, 250, 0.82);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.chip {
    width: 18px;
    height: 18px;
    border: 3px dashed rgba(255,255,255,0.65);
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.26);
}

.chip-red { background: #ef4444; }
.chip-green { background: #22c55e; }
.chip-dark { background: #111827; }

.dealer-button {
    position: absolute;
    right: 25%;
    bottom: 28%;
    z-index: 2;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f8fafc;
    color: #111827;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(0,0,0,0.28);
}

.review-controls {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.street-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.street-tabs span,
.action-line {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    padding: 10px;
    text-align: center;
}

.street-tabs .active {
    border-color: rgba(0, 200, 83, 0.45);
    color: var(--accent);
    background: rgba(0, 200, 83, 0.07);
}

.action-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.action-line strong {
    color: var(--text);
}

@media (max-width: 640px) {
    .review-preview {
        grid-template-columns: 1fr;
    }

    .table-preview {
        padding: 14px;
    }

    .table-felt {
        min-height: 260px;
        padding: 28px 20px;
    }

    .card-face {
        width: 39px;
        height: 54px;
        font-size: 13px;
    }

    .seat-left {
        left: 10px;
    }

    .seat-right {
        right: 10px;
    }

    .street-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
