/* Button styles */

button {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.back-btn {
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 15px 5px 0;
    transition: transform 0.2s ease;
}

.back-btn:hover {
    transform: translateX(-3px);
}

.shuffle-btn {
    background: linear-gradient(135deg, #9c27b0, #e91e63);
    color: white;
    box-shadow: 0 5px 20px rgba(156, 39, 176, 0.4);
}

.shuffle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.6);
}

.draw-btn {
    background: linear-gradient(135deg, #ffd700, #ff9800);
    color: #4a1942;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.draw-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.next-btn {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.4);
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.6);
}

.start-game-btn {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border: none;
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.start-game-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.5);
}

.start-game-btn:active {
    transform: scale(0.98);
}

.package-btn {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.package-btn-primary {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
}

.package-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.package-btn:hover {
    transform: translateY(-2px);
}

.package-btn:active {
    transform: scale(0.98);
}

/* Controls container */
.controls {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}
