/* ===== CASHOUT BUTTON - Dark Modern Design ===== */
.cashout-container {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 50;
    pointer-events: all;
    display: flex;
    gap: 10px;
}

.cashout-container.is-hidden {
    display: none;
}

.cashout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 1px solid rgba(0, 255, 163, 0.3);
    background: linear-gradient(135deg, rgba(0, 100, 70, 0.95) 0%, rgba(0, 80, 60, 0.97) 100%);
    color: #ffffff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 255, 163, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(20px) saturate(150%);
    position: relative;
    overflow: hidden;
}

.cashout-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 163, 0.2), transparent);
    transition: left 0.4s;
}

.cashout-btn:hover:not(:disabled)::before {
    left: 100%;
}

.cashout-btn:hover:not(:disabled) {
    border-color: rgba(0, 255, 163, 0.5);
    background: linear-gradient(135deg, rgba(0, 120, 85, 0.97) 0%, rgba(0, 100, 70, 0.98) 100%);
    box-shadow: 
        0 6px 20px rgba(0, 255, 163, 0.3),
        0 0 0 1px rgba(0, 255, 163, 0.3);
    transform: translateY(-2px);
}

.cashout-btn:active:not(:disabled) {
    transform: translateY(0);
}

.cashout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: rgba(0, 255, 163, 0.15);
    color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 80, 60, 0.7) 0%, rgba(0, 60, 45, 0.75) 100%);
}

/* ===== CASHOUT OVERLAY ===== */
.cashout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
    pointer-events: auto;
    cursor: pointer;
}

.cashout-overlay.is-hidden {
    display: none;
    pointer-events: none;
}

.cashout-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    pointer-events: none;
}

.cashout-timer-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    color: #00ffa3;
    text-shadow: 0 0 30px rgba(0, 255, 163, 0.6);
}

.cashout-countdown {
    font-size: 120px;
    min-width: 150px;
    text-align: center;
}

.cashout-seconds {
    font-size: 60px;
    opacity: 0.8;
}

.cashout-status {
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin: 0;
    letter-spacing: 0.02em;
    font-weight: 600;
}

.cashout-hint {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
    letter-spacing: 0.05em;
}

.cashout-cancel-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cashout-cancel-btn:active {
    transform: translateY(0);
}

