.multi-state-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin: 10px;
    transition: all 0.3s ease;
    outline: none;
    position: relative;
    overflow: hidden;
}

.multi-state-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.4);
}

.multi-state-button:focus {
    box-shadow: 0 0 0 4px rgba(102,126,234,0.5);
}

.multi-state-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(102,126,234,0.3);
}

.multi-state-button:hover:focus {
    box-shadow: 0 8px 25px rgba(102,126,234,0.4), 0 0 0 4px rgba(102,126,234,0.5);
}