/* Buttons */
.home-button,
.info-button {
    position: fixed;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(5px);
    text-decoration: none;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.home-button {
    top: 20px;
    left: 20px;
}

.info-button {
    top: 20px;
    right: 20px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--on-bg-color);
    transition: transform 0.2s ease;
}

.info-button:hover .info-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.home-button:hover,
.info-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.home-button:active,
.info-button:active {
    transform: translateY(0);
}

/* Bet buttons */
.bet-btn {
    
    animation: float 1s ease-in-out infinite alternate;
    transform: translateY(0);
}

/* Staggered floating animations for bet buttons */
.bet-btn[data-amount="1"] {
    animation-duration: 1s;
    animation-delay: 0s;
}

.bet-btn[data-amount="5"] {
    animation-duration: 1.1s;
    animation-delay: 0.1s;
}

.bet-btn[data-amount="10"] {
    animation-duration: 1.2s;
    animation-delay: 0.2s;
}

.bet-btn[data-amount="50"] {
    animation-duration: 1.3s;
    animation-delay: 0.3s;
}

.bet-btn[data-amount="100"] {
    animation-duration: 1.4s;
    animation-delay: 0.4s;
}

.bet-btn[data-amount="500"] {
    animation-duration: 1.5s;
    animation-delay: 0.5s;
}

@keyframes float {
    from {
        transform: translateY(0);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    to {
        transform: translateY(-2px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    }
}

.bet-btn:hover {
    transform: translateY(0px) !important;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 1) !important;
    animation-play-state: paused;
}
