/* Bottle spinner specific styles */
.bottle-container {
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    position: relative;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
}

.bottle {
    font-size: 4rem;
    transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 2;
}

.bottle-center {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 50%;
    z-index: 1;
}

.spin-btn {
    margin: 1rem 0;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.spin-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 480px) {
    .bottle-container {
        width: 250px;
        height: 250px;
    }
    
    .bottle {
        font-size: 3rem;
    }
}