/* Clicker Game Styles */

/* Floating text animation */
@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

/* Floating text class */
.floating-text {
    position: absolute;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 1000;
    animation: floatUp 1s ease-out forwards;
}

/* Button pulse effect */


/* Plinko Game Styles - Canvas Based */
.plinko-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#plinko-canvas {
    display: block;
    cursor: pointer;
}
/* Balls stock display styles */
.clicker-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.balls-stock-display {
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid #28a745;
    border-radius: 10px;
    padding: 8px 16px;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.balls-stock-display:hover {
    background: rgba(40, 167, 69, 0.1);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

