/* Estilos Específicos para Pagos Exactos (Cálculo Funcional) */

.pagos-game-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

/* PASO 1: MONTO REQUERIDO */
.price-tag-box {
    width: 100%;
    max-width: 650px;
    background: linear-gradient(135deg, hsl(40, 45%, 16%), hsl(40, 30%, 12%));
    border: 3px solid var(--accent-amber);
    border-radius: var(--radius-md);
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 0 35px rgba(241, 196, 15, 0.35);
    text-align: center;
    box-sizing: border-box;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent-amber);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(241, 196, 15, 0.9);
}

/* PASO 2: CAJÓN DE BILLETES DE ARGENTINA */
.cash-drawer-box {
    width: 100%;
    max-width: 650px;
    background-color: var(--bg-surface);
    border: 3px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
}

.cash-drawer {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.money-bill {
    padding: 0.8rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: var(--radius-md);
    border: 2px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.money-bill:hover {
    transform: translateY(-4px) scale(1.06);
    filter: brightness(1.15);
}

/* ESTILOS Y COLORES DE BILLETES DE ARGENTINA */
.bill-100   { background: linear-gradient(135deg, hsl(270, 75%, 55%), hsl(270, 75%, 40%)); }
.bill-200   { background: linear-gradient(135deg, hsl(190, 85%, 50%), hsl(190, 85%, 35%)); }
.bill-500   { background: linear-gradient(135deg, hsl(145, 75%, 45%), hsl(145, 75%, 30%)); }
.bill-1000  { background: linear-gradient(135deg, hsl(35, 90%, 55%), hsl(30, 85%, 40%)); }
.bill-2000  { background: linear-gradient(135deg, hsl(355, 85%, 55%), hsl(355, 75%, 40%)); }
.bill-10000 { background: linear-gradient(135deg, hsl(175, 85%, 45%), hsl(175, 85%, 30%)); }
.bill-20000 { background: linear-gradient(135deg, hsl(310, 80%, 55%), hsl(310, 80%, 40%)); }

/* PASO 3: BILLETERA ENTREGADA */
.payment-counter-box {
    width: 100%;
    max-width: 650px;
    background-color: var(--bg-surface);
    border: 3px solid var(--accent-green);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 0 25px rgba(46, 204, 113, 0.25);
    box-sizing: border-box;
}

.wallet-display {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    min-height: 55px;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-card);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px dashed var(--accent-green);
}

.wallet-chip {
    background-color: var(--accent-green);
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
